:root {
    --color-earth: #8B7355;
    --color-earth-dark: #5D4E3A;
    --color-earth-light: #A69076;
    --color-cream: #F5F0E8;
    --color-cream-dark: #E8E0D4;
    --color-forest: #4A5D4A;
    --color-forest-light: #6B7D6B;
    --color-text: #3D3529;
    --color-text-light: #6B6358;
    --color-white: #FDFCFA;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 1rem 3rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.4s ease;
}

nav.scrolled .logo {
    color: var(--color-earth-dark);
}

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

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

nav.scrolled .mobile-menu span {
    background: var(--color-earth-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(61, 53, 41, 0.3) 0%,
        rgba(61, 53, 41, 0.4) 50%,
        rgba(61, 53, 41, 0.6) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-white);
    opacity: 0.7;
}

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

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-earth-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.about-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.about-slider img.active {
    opacity: 1;
}

.about-slider-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.about-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-slider-dot.active,
.about-slider-dot:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.2);
}

.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.about-slider-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.about-slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.about-slider-prev {
    left: 1rem;
}

.about-slider-next {
    right: 1rem;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-earth-light);
    border-radius: 4px;
    z-index: -1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--color-earth-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-forest);
    flex-shrink: 0;
}

/* Amenities Section */
.amenities {
    background: var(--color-cream);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-earth-light);
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
}

.amenity-card svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-earth);
    margin-bottom: 1.5rem;
}

.amenity-card h4 {
    font-size: 1.3rem;
    color: var(--color-earth-dark);
    margin-bottom: 0.75rem;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Rules Section */
.rules {
    background: var(--color-white);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 4rem;
}

.rule-item {
    display: flex;
    gap: 1.25rem;
}

.rule-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rule-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-earth);
}

.rule-content h4 {
    font-size: 1.2rem;
    color: var(--color-earth-dark);
    margin-bottom: 0.5rem;
}

.rule-content p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: var(--color-white);
    padding: 8rem 0;
}

.gallery .container {
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
}

.gallery-item:nth-child(13) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(61, 53, 41, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(61, 53, 41, 0.1);
}

/* Location Section */
.location {
    background: var(--color-earth-dark);
    color: var(--color-white);
}

.location .section-title {
    color: var(--color-white);
}

.location .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.location-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.location-item .time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--color-earth-light);
    margin-bottom: 0.5rem;
}

/* Booking Section */
.booking {
    background: var(--color-cream);
    text-align: center;
}

.booking-widget {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 60px rgba(139, 115, 85, 0.15);
}

.booking-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-field {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-cream-dark);
    border-radius: 8px;
    background: var(--color-white);
    transition: border-color 0.3s ease;
}

.booking-field:focus-within {
    border-color: var(--color-earth);
}

.booking-field svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-earth-light);
    flex-shrink: 0;
}

.booking-field input,
.booking-field select {
    border: none;
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--color-text);
    outline: none;
    min-width: 100px;
}

.booking-field input::placeholder {
    color: var(--color-text-light);
}

.booking-field select {
    cursor: pointer;
    min-width: 130px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6358' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right center;
    padding-right: 20px;
}

.booking-separator {
    color: var(--color-text-light);
    font-size: 1.2rem;
    padding: 0 0.25rem;
}

.booking-btn {
    background: #E9B949;
    color: var(--color-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.booking-btn:hover {
    background: #D4A63D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 185, 73, 0.4);
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    background: var(--color-white);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-cream-dark);
}

.booking-modal-header h3 {
    font-size: 1.5rem;
    color: var(--color-earth-dark);
}

.booking-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-cream);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: var(--color-cream-dark);
}

.booking-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text);
}

.booking-modal-body {
    height: 70vh;
}

.booking-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact {
    background: var(--color-white);
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-earth);
}

.contact-item a {
    color: var(--color-earth-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-forest);
}

.contact-item span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
footer {
    background: var(--color-earth-dark);
    color: var(--color-white);
    text-align: center;
    padding: 3rem 2rem;
}

footer .logo {
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 1rem;
}

footer p {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    stroke: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(8),
    .gallery-item:nth-child(13) {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .booking-widget {
        border-radius: 20px;
        padding: 1.5rem;
    }

    .booking-form {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-field {
        width: 100%;
        justify-content: flex-start;
    }

    .booking-field input,
    .booking-field select {
        width: 100%;
    }

    .booking-separator {
        display: none;
    }

    .booking-btn {
        width: 100%;
        padding: 1.25rem 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

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

    .mobile-menu {
        display: flex;
    }

    section {
        padding: 5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image::before {
        display: none;
    }

    .about-slider {
        height: 300px;
    }

    .about-slider-arrow {
        width: 36px;
        height: 36px;
    }

    .about-slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item {
        height: auto;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 250px;
    }

    .gallery-item:nth-child(8),
    .gallery-item:nth-child(13) {
        grid-column: span 1;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .booking-modal {
        padding: 1rem;
    }

    .booking-modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }

    .booking-modal-header {
        padding: 1rem 1.5rem;
    }

    .booking-modal-body {
        height: 75vh;
    }
}
