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

:root {
    --primary-green: #0B3D2E;
    --secondary-green: #165A43;
    --gold-accent: #C9A227;
    --soft-gold-beige: #F3E9C9;
    --light-background: #FAF7F0;
    --primary-text: #0A1A14;
    --secondary-text: #2F4F3F;
    --light-text: #F8F8F2;
    --shadow: rgba(0, 0, 0, 0.25);
    
    /* Legacy variables for compatibility */
    --ivory: #FAF7F0;
    --warm-white: #FAF7F0;
    --soft-beige: #F3E9C9;
    --text-dark: #0A1A14;
    --text-light: #2F4F3F;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.7;
    color: var(--primary-text);
    background: var(--light-background);
    overflow-x: hidden;
}

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

/* Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--light-background);
    box-shadow: 0 2px 10px var(--shadow);
}

.navbar {
    padding: 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

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

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

.book-nav {
    background: var(--gold-accent);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.book-nav::after {
    display: none;
}

.book-nav:hover {
    background: #A88A20;
    color: var(--light-background);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('House (5).jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--warm-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 61, 46, 0.7), rgba(22, 90, 67, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-welcome {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--light-text);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    color: var(--light-text);
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: var(--gold-accent);
    color: var(--primary-green);
    box-shadow: 0 4px 15px var(--shadow);
}

.cta-button.primary:hover {
    background: #A88A20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.cta-button.secondary:hover {
    background: var(--light-text);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gold-accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--soft-gold-beige);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--primary-text);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-background);
}

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

.feature-card {
    background: var(--light-background);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gold-accent);
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    margin: 0 auto 1rem;
    color: var(--gold-accent);
    transition: transform 0.25s ease, color 0.2s ease;
}

.feature-icon svg {
    width: 72px;
    height: 72px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}

.feature-icon img.feature-icon-img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.amenity-icon img.amenity-icon-img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px);
}

/* Optional dark variant (use class .feature-icon.dark to switch to dark/black icons) */
.feature-icon.dark {
    color: var(--primary-text);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Location Distances */
.location-distances {
    padding: 80px 0;
    background: var(--soft-gold-beige);
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-background);
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
}

.distance-icon {
    font-size: 2rem;
}

.distance-info h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.distance {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-accent);
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--light-background);
}

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

.amenity-card {
    background: var(--soft-gold-beige);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #E8DDB5;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--gold-accent);
}

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

.amenity-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amenity-card p {
    color: var(--secondary-text);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--soft-gold-beige);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px var(--shadow);
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Places to Visit Section */
.places {
    padding: 100px 0;
    background: var(--light-background);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.place-card {
    background: var(--soft-gold-beige);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-accent);
}

.place-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.place-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.place-card p {
    color: var(--secondary-text);
    line-height: 1.7;
}

.place-image {
    grid-column: span 1;
}

.place-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--soft-gold-beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h3,
.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    background: var(--light-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E8DDB5;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-background);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.submit-button {
    width: 100%;
    background: var(--gold-accent);
    color: var(--primary-green);
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #A88A20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-card {
    background: var(--light-background);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
}

.contact-item h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--secondary-text);
    margin: 0;
}

.book-button {
    display: block;
    width: 100%;
    background: var(--gold-accent);
    color: var(--primary-green);
    padding: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.book-button:hover {
    background: #A88A20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--light-background);
}

.map-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-green);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--light-text);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--soft-gold-beige);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: var(--soft-gold-beige);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--soft-gold-beige);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-accent);
    color: var(--primary-green);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: #A88A20;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow);
}

.back-to-top.show {
    display: flex;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-caption {
    color: var(--light-text);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--light-background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-welcome {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
body.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}
