/* --- Brand Logo --- */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    /* Increased from 40px */
    /* Adjust based on actual logo ratio */
    width: auto;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    /* Static image with overlay for readability */
    background: url('../../assets/img/téléchargement.jpg') no-repeat center center/cover;
    margin-top: var(--header-height);
    /* 
       Total viewport height (100vh)
       - Header (var(--header-height)) 
       - Shop Banner (approx 150px)
       = Remaining space for Hero
    */
    min-height: calc(100vh - var(--header-height) - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    /* Restore generous padding */
}

/* Dark overlay to make text pop on the image */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(38, 50, 56, 0.8) 0%, rgba(55, 71, 79, 0.6) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

/* Tagline above H1 */
.hero-tagline {
    display: inline-block;
    color: white;
    /* Changed to white for dark overlay */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    background: var(--color-primary);
    /* Green tag */
    padding: 6px 16px;
    border-radius: 50px;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    /* White text on dark bg */
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* --- Actions --- */
.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--color-secondary);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 var(--spacing-md);
    }
}