/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-cream: #f5f1eb;
    --color-sage: #a8b5a0;
    --color-terracotta: #c97d60;
    --color-charcoal: #3d3d3d;
    --color-sand: #e8e3db;
    --color-stone: #d4c5b9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-charcoal);
    letter-spacing: 1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-charcoal);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-terracotta);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-terracotta);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Sections */
.section {
    min-height: 100vh;
    padding: 120px 0 80px;
}





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

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

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

/* Buttons */
.btn {
    padding: 14px 32px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-terracotta);
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-charcoal);
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: var(--color-sand);
}

.experience-section .section-title {
    margin-bottom: 4rem;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 2rem;
    -webkit-overflow-scrolling: touch;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: var(--color-stone);
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--color-sage);
    border-radius: 4px;
}

.scroll-panel {
    min-width: 400px;
    height: 500px;
    scroll-snap-align: start;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.panel-image {
    height: 60%;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.panel-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.panel-content p {
    color: var(--color-charcoal);
    line-height: 1.6;
}

.cta-panel {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-terracotta) 100%);
    color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-panel h3,
.cta-panel p {
    color: white;
}

.cta-panel .btn-primary {
    margin-top: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 240px 2rem 80px;
    text-align: center;
    background-color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 1px solid var(--color-stone);
    background-color: white;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-sage);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.about-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Spa & Stay Section */
.spa-stay-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.stay-section,
.spa-section {
    text-align: center;
}

.stay-section h3,
.spa-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.stay-section p,
.spa-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-charcoal);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Reservation Section */
#reservation {
    position: relative;
    overflow: hidden;
}

.reservation-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--color-charcoal);
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-charcoal);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-stone);
    background-color: white;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--color-charcoal);
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sage);
}

.form-group textarea {
    resize: vertical;
}

.reservation-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Section */
.contact-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--color-charcoal);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .btn-primary {
    width: 100%;
}

/* 3D Model Background */
.fixed-3d {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30vw;
    height: 80vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Content over 3D model */
.newsletter-section .section-title,
.newsletter-section .newsletter-description,
.newsletter-section .newsletter-form,
.newsletter-section .form-message,
#reservation .container {
    position: relative;
    z-index: 1;
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background-color: #a5b19b;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(245, 241, 235, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .scroll-panel {
        min-width: 300px;
        height: 450px;
    }

    .horizontal-scroll {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }
}

