/* FRESH HERO SECTION - CLEAN START */

/* Hero Container - Fixed 50vh height */
.hero {
    display: flex;
    height: 50vh;
    width: 100%;
    background: #ece7e4;
}

/* Info Panel - Left Side - 25% width */
.hero-info-panel {
    width: 25%;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    color: white;
    padding: 2rem;
    overflow-y: auto;
    flex-shrink: 0;
}

/* Image Grid Container - Right Side - 75% width */
.hero-grid {
    width: 75%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: #ece7e4;
}

/* All grid items */
.hero-grid-item {
    overflow: hidden;
    position: relative;
    min-height: 0;
}

.hero-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid positions */
.hero-main {
    grid-column: 1;
    grid-row: 1 / 4;
}

.hero-secondary-1 {
    grid-column: 2;
    grid-row: 1;
}

.hero-secondary-2 {
    grid-column: 3;
    grid-row: 1;
}

.hero-tertiary-1 {
    grid-column: 2;
    grid-row: 2;
}

.hero-tertiary-2 {
    grid-column: 3;
    grid-row: 2;
}

.hero-tertiary-3 {
    grid-column: 2;
    grid-row: 3;
}

.hero-tertiary-4 {
    grid-column: 3;
    grid-row: 3;
}

/* Info Panel Content */
.hero-info-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-features {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.9rem;
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.hero-price .price-from {
    font-size: 0.8rem;
}

.hero-price .price-amount {
    font-size: 2rem;
    font-weight: 700;
}

.hero-price .price-period {
    font-size: 0.85rem;
}

.btn-hero {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: white;
    color: #b8860b;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

/* Responsive - Tablet and below */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-info-panel {
        width: 100%;
        order: 2;
    }

    .hero-grid {
        width: 100%;
        height: 400px;
        order: 1;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: auto;
    }

    .hero-grid-item {
        aspect-ratio: 4/3;
    }

    .hero-main {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-secondary-1 {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-secondary-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .hero-tertiary-1 {
        grid-column: 2;
        grid-row: 2;
    }

    .hero-tertiary-2 {
        grid-column: 1;
        grid-row: 3;
    }

    .hero-tertiary-3 {
        grid-column: 2;
        grid-row: 3;
    }

    .hero-tertiary-4 {
        display: none;
    }
}
