:root {
    --primary-color: #A7641F;   /* Light Brown / Copper / Gold */
    --primary-hover: #863E00;   /* Dark Brown / Bronze */
    --bg-dark: #212322;         /* Charcoal Black */
    --bg-card: rgba(33, 35, 34, 0.85);
    --text-light: #F4F4F4;
    --text-muted: #B3B3B3;
    --font-main: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ==========================================================================
   HERO SECTION (La Houblonnière Caravan Background + Parallax)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/la-houblonniere.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(33, 35, 34, 0.4) 0%, rgba(33, 35, 34, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInDown 1.2s ease-out;
}

.logo {
    width: 320px;
    max-width: 85vw;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.seo-title {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-top: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 650px;
}

.scroll-down-indicator {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.scroll-down-indicator:hover {
    color: var(--primary-color);
}

.scroll-down-indicator i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-tag {
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   PARALLAX FEATURE BANNER (Beer Glasses Image)
   ========================================================================== */
.parallax-banner {
    position: relative;
    padding: 8rem 2rem;
    background-image: url('assets/houblonniere-home-houblonniere-verres-1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(33, 35, 34, 0.7) 50%, var(--bg-dark) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(167, 100, 31, 0.4);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: rgba(167, 100, 31, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-svg {
    width: 28px;
    height: auto;
    display: block;
}

.glass-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.card-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   LAUNCH & NEWSLETTER SECTION
   ========================================================================== */
.launch-section {
    background-color: var(--bg-dark);
    padding: 6rem 2rem;
    position: relative;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.countdown-section {
    margin-bottom: 5rem;
}

.countdown-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.launch-date {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.launch-date i {
    margin-right: 0.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 100, 31, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.time-box span:first-child {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.8rem;
}

/* Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.newsletter-section h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    max-width: 550px;
    margin: 0 auto;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 1.1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    background: rgba(15, 15, 15, 0.8);
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(167, 100, 31, 0.3);
}

.btn-subscribe {
    padding: 1.1rem 2.2rem;
    border: none;
    border-radius: 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(134, 62, 0, 0.5);
}

.form-message {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    min-height: 24px;
}

.form-message.success { color: #4EBE6A; }
.form-message.error { color: #E74C3C; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #171818;
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: rgba(167, 100, 31, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-badge i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-badge:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(167, 100, 31, 0.4);
}

.social-badge:hover i {
    color: #ffffff;
}

.copyright {
    font-size: 0.85rem !important;
    color: #666666 !important;
    margin-bottom: 0 !important;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile & Touch Adjustments */
@media (max-width: 768px) {
    /* Fallback for background-attachment fixed on mobile browsers */
    .hero-section, .parallax-banner {
        background-attachment: scroll;
    }
    
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .btn-subscribe {
        width: 100%;
    }
    
    .time-box {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .time-box span:first-child {
        font-size: 2.2rem;
    }
}
