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

:root {
    --sage-green: #7A9B8E;
    --sage-green-dark: #5a7a6e;
    --sage-green-light: #9db5a9;
    --cream: #F5F1E8;
    --warm-beige: #E8DCC8;
    --charcoal: #3A3A3A;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-medium: #666666;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-medium);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sage-green);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    color: var(--sage-green-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--sage-green);
}

.btn-book {
    background: var(--sage-green);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-book:hover {
    background: var(--sage-green-dark);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--sage-green);
    transition: var(--transition);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
    position: relative;
    padding-top: 80px;
}

.hero-content h1 {
    color: var(--sage-green);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    font-size: 1rem;
    color: var(--text-medium);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features span {
    white-space: nowrap;
}

.btn-primary {
    display: inline-block;
    background: var(--sage-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary:hover {
    background: var(--sage-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 155, 142, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--sage-green);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--sage-green);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--sage-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 155, 142, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--sage-green);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--sage-green);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--sage-green);
    margin-bottom: 20px;
}

.header-underline {
    width: 80px;
    height: 3px;
    background: var(--sage-green);
    margin: 0 auto;
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.about-stats {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Section */
#gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
}

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

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

/* Features Section */
#features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--sage-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.features-cta {
    text-align: center;
    padding: 40px;
    background: var(--cream);
    border-radius: 8px;
}

.features-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

/* Location Section */
#location {
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-text h3 {
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.location-text > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item h4 {
    color: var(--sage-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.highlight-item strong {
    color: var(--text-dark);
}

.location-map {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
#reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.review-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: var(--sage-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

/* CTA Section */
#cta {
    background: var(--sage-green);
    color: var(--white);
    text-align: center;
}

#cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

#cta .btn-primary {
    background: var(--white);
    color: var(--sage-green);
}

#cta .btn-primary:hover {
    background: var(--cream);
    color: var(--sage-green-dark);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--sage-green-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--sage-green-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scroll {
    0% {
        opacity: 0;
        top: 5px;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

    .location-map {
        position: relative;
        top: 0;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .hero-features {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        padding: 30px;
        gap: 20px;
    }

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

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }
}