:root {
    --primary: #1a2f23;
    /* Forest Green */
    --accent: #d4b18c;
    /* Warm Wood */
    --bg: #f9f7f2;
    /* Off-white */
    --text: #2d2d2d;
    /* Charcoal */
    --light-text: #666;
    --white: #ffffff;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .logo {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

header.scrolled .nav-links a {
    color: var(--text);
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('media/chalet-valbois-charlevoix-vue-exterieure.webp') no-repeat center center/cover;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

#hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

#hero h1 span {
    font-style: italic;
    font-weight: 400;
}

#hero p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.social-proof {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof .rating {
    color: var(--accent);
    font-weight: 700;
}

.social-proof .platform {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -2rem auto 4rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

/* Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text);
}

.occupancy-info {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(212, 177, 140, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.occupancy-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.occupancy-info .rules {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 30px 30px 0 var(--accent);
}

/* Experience */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.exp-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.exp-img {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.exp-card:hover .exp-img img {
    transform: scale(1.1);
}

.exp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Amenities */
.amenities-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 4rem;
    overflow: hidden;
}

.amenities-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.amenities-lists-container {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.amenities-list {
    list-style: none;
    flex: 1;
}

.amenities-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.amenities-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    top: -0.2rem;
}

.amenities-list span {
    font-weight: 600;
    display: block;
    color: var(--accent);
}

.amenities-visual img {
    width: 100%;
    border-radius: 20px;
}

/* Activities Tabs */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.fav-category h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.fav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fav-list li a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fav-list li a:hover {
    color: var(--primary);
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 177, 140, 0.3);
    border-color: transparent;
}

.fav-list .material-symbols-outlined {
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}

.fav-list li a:hover .material-symbols-outlined {
    color: var(--primary);
}

@media (max-width: 992px) {
    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .fav-category {
        text-align: center;
    }

    .fav-list li a {
        justify-content: center;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid img:hover {
    filter: brightness(0.8);
}

/* Contact */
.contact-box {
    background: var(--accent);
    padding: 6rem 2rem;
    border-radius: 30px;
    text-align: center;
    color: var(--primary);
    position: relative;
}

.airbnb-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    display: inline-block;
    margin-top: 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-large:hover {
    background: var(--text);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #222;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.management {
    margin-top: 2rem;
}

.mgmt-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #555;
}

.mgmt-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: grayscale(1) brightness(2);
    transition: var(--transition);
}

.mgmt-logo:hover {
    filter: none;
}

/* FAQ Section */
#faq {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text);
    line-height: 1.6;
}

.mgmt-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mgmt-contact a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mgmt-contact a:hover {
    color: var(--white);
}

.footer-details p {
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
    border-bottom-color: var(--accent);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 2px;
        background: var(--white);
        transition: var(--transition);
    }

    header.scrolled .menu-toggle .bar {
        background: var(--primary);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text);
        text-shadow: none;
    }

    .intro-image img {
        box-shadow: 15px 15px 0 var(--accent);
    }

    #hero h1 {
        font-size: 3.5rem;
    }
}

/* Airbnb Widget Tweaks */
.airbnb-embed-frame iframe {
    border: none !important;
    overflow: hidden !important;
}