@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600&family=Crimson+Text:wght@400;600&display=swap');

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

:root {
    /* Rustic Luxury Color Palette - Deep, Warm, Premium */
    --primary-bg: #FFFEFA;
    /* Very bright, clean warm white */
    --secondary-bg: #FFFFFF;
    --cream: #FDFBF7;
    --warm-cream: #F0EBE0;

    --sage-green: #B5C99A;
    /* Brighter, fresher sage */
    --deep-green: #4A5D4A;
    /* More distinct, lighter mossy green */
    --forest-green: #2C3E33;
    /* Slightly lighter, softer dark green */

    --warm-brown: #B89E80;
    /* Warmer sand/wheat tone */
    --rich-brown: #7D634C;
    /* Lighter, richer brown */

    --gold-accent: #D6AD60;
    /* Brighter, more vibrant harvest gold */
    --gold-highlight: #E6C68D;

    --text-primary: #1A2621;
    --text-secondary: #4A524A;
    --text-light: #707A70;

    --border-color: #E6E0D4;
    --overlay-dark: rgba(44, 62, 51, 0.65);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --font-accent: 'Crimson Text', serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(26, 38, 33, 0.05);
    --shadow-md: 0 8px 16px rgba(26, 38, 33, 0.06);
    --shadow-lg: 0 16px 32px rgba(26, 38, 33, 0.08);
    --shadow-hover: 0 20px 40px rgba(26, 38, 33, 0.12);
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content h1 {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
}

.hero-content p {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
}

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    animation: fadeInUp 0.6s ease-out;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-text);
    line-height: 1.7;
}

a {
    color: var(--deep-green);
    transition: color 0.3s ease, text-decoration 0.2s ease;
}

a:hover {
    color: var(--gold-accent);
}

a:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: 2px;
}

/* Header & Navigation */
header {
    background-color: var(--secondary-bg);
    border-bottom: 2px solid var(--border-color);
    width: 100%;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px 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 {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    animation: slideInFromRight 0.6s ease-out both;
}

.nav-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links a:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-links a:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-links a:nth-child(4) {
    animation-delay: 0.25s;
}

.nav-links a:nth-child(5) {
    animation-delay: 0.3s;
}

.nav-links a:nth-child(6) {
    animation-delay: 0.35s;
}

.nav-links a:nth-child(7) {
    animation-delay: 0.4s;
}

.nav-links a:nth-child(8) {
    animation-delay: 0.45s;
}

.nav-links a:hover {
    color: var(--sage-green);
    transform: translateY(-2px);
}

.nav-links a.btn-book {
    background-color: var(--forest-green);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(31, 46, 40, 0.3);
    animation: slideInFromRight 0.6s ease-out 0.45s both;
}

.nav-links a.btn-book:hover {
    background-color: var(--deep-green);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 46, 40, 0.4);
}

.btn-book {
    position: relative;
}

.btn-book:focus {
    outline: 3px solid #FFFFFF;
    outline-offset: 2px;
}

/* Enhanced accessibility for all interactive elements */
button:focus-visible,
a:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--forest-green);
    outline-offset: 3px;
}

.nav-links a.btn-book:focus-visible {
    outline-color: #FFFFFF;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-bg);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #134e13;
    /* Darker Green for visibility */
    transition: 0.3s;
}

/* Footer */
footer {
    background-color: var(--forest-green);
    color: var(--cream);
    width: 100%;
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section h4 {
    color: var(--cream);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    animation: fadeInUp 0.6s ease-out both;
}

.footer-section p,
.footer-section a {
    color: var(--warm-cream);
    font-size: 0.9rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out both;
}

.footer-section a {
    display: block;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-section a:hover {
    color: var(--gold-accent);
    transform: translateX(4px);
}

.footer-section:nth-child(1) h4 {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) h4 {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) h4 {
    animation-delay: 0.3s;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 0.85rem;
}

.footer-bottom p {
    color: #FFFFFF;
    margin: 0.5rem 0;
}

.contact-info {
    margin-top: 0.5rem;
}

.contact-info a {
    color: var(--gold-accent);
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--forest-green);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 38, 33, 0.3), rgba(26, 38, 33, 0.5));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    max-width: 900px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    color: var(--cream);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-content p {
    color: var(--warm-cream);
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
}

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

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--cream);
    border-bottom: 2px solid var(--cream);
    transform: rotate(45deg);
    display: block;
    opacity: 0.8;
}

/* Hut Grid Styles */
.hut-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.hut-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hut-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hut-image-container {
    height: 320px;
    width: 100%;
    overflow: hidden;
}

.hut-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hut-card:hover .hut-image {
    transform: scale(1.08);
}

.hut-content {
    padding: 2.5rem;
}

.hut-content h3 {
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.hut-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Container */
.cta-container {
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    margin: 2rem 0;
    color: var(--warm-cream) !important;
    font-family: var(--font-accent);
}

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

.hero-buttons a {
    animation: scaleIn 0.6s ease-out both;
}

.hero-buttons a:first-child {
    animation-delay: 0.7s;
}

.hero-buttons a:last-child {
    animation-delay: 0.9s;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-block;
    animation: scaleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: 4px;
}

.btn-primary {
    background-color: var(--deep-green);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(47, 62, 51, 0.2);
    border-color: var(--deep-green);
}

.btn-primary:hover {
    background-color: var(--forest-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(47, 62, 51, 0.3);
    border-color: var(--forest-green);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-green);
    border-color: var(--deep-green);
}

.btn-secondary:hover {
    background-color: var(--deep-green);
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(47, 62, 51, 0.15);
}

/* Secondary button on dark backgrounds */
.section-dark .btn-secondary,
.hero .btn-secondary {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.section-dark .btn-secondary:hover,
.hero .btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--deep-green);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--cream);
}

.section-dark {
    background-color: var(--forest-green);
    color: var(--cream);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--cream);
}

.section-dark p,
.section-dark li {
    color: #F5F5F5;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--secondary-text);
}

.section-dark .section-header p {
    color: #F5F5F5;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.feature-grid .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-grid .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-grid .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-grid .feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-grid .feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-grid .feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-grid .feature-card:nth-child(7) {
    animation-delay: 0.1s;
}

.feature-grid .feature-card:nth-child(8) {
    animation-delay: 0.2s;
}

.feature-grid .feature-card:nth-child(9) {
    animation-delay: 0.3s;
}

.feature-card h3 {
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

/* Image Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    animation: scaleIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin: 4rem 0;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    animation: slideInFromRight 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition: transform 0.4s ease;
}

.two-column img:hover {
    transform: scale(1.02);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--secondary-bg);
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-hover);
}

.pricing-grid .pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-grid .pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-grid .pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-accent);
    font-family: var(--font-heading);
    margin: 1.5rem 0;
    transition: transform 0.3s ease;
}

.pricing-card:hover .price {
    animation: bounce 0.8s ease-in-out;
}

.price-prefix {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    font-family: var(--font-body);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: "✓";
    color: var(--gold-accent);
    margin-right: 0.8rem;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonial Card */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.testimonial-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--sage-green);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-grid .testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-grid .testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-grid .testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-grid .testimonial-card:nth-child(4) {
    animation-delay: 0.1s;
}

.testimonial-grid .testimonial-card:nth-child(5) {
    animation-delay: 0.2s;
}

.testimonial-grid .testimonial-card:nth-child(6) {
    animation-delay: 0.3s;
}

.testimonial-grid .testimonial-card:nth-child(7) {
    animation-delay: 0.1s;
}

.testimonial-grid .testimonial-card:nth-child(8) {
    animation-delay: 0.2s;
}

.testimonial-grid .testimonial-card:nth-child(9) {
    animation-delay: 0.3s;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-family: var(--font-accent);
}

.testimonial-card:hover .testimonial-text {
    color: var(--text-primary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-green);
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.rating {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

.section-header p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Enhance list item animations */
li {
    animation: fadeInUp 0.6s ease-out both;
}

ul li:nth-child(1) {
    animation-delay: 0.1s;
}

ul li:nth-child(2) {
    animation-delay: 0.15s;
}

ul li:nth-child(3) {
    animation-delay: 0.2s;
}

ul li:nth-child(4) {
    animation-delay: 0.25s;
}

ul li:nth-child(5) {
    animation-delay: 0.3s;
}

ul li:nth-child(6) {
    animation-delay: 0.35s;
}

ol li:nth-child(1) {
    animation-delay: 0.1s;
}

ol li:nth-child(2) {
    animation-delay: 0.15s;
}

ol li:nth-child(3) {
    animation-delay: 0.2s;
}

ol li:nth-child(4) {
    animation-delay: 0.25s;
}

ol li:nth-child(5) {
    animation-delay: 0.3s;
}

/* Contact Section */
.contact-card {
    background: var(--secondary-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    animation: slideInFromLeft 0.6s ease-out both;
    transition: transform 0.3s ease;
}

.contact-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.3s;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    display: none;
    /* Hide text labels */
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.3s ease-out;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.lightbox-close:focus {
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 3px solid var(--gold-accent);
    outline-offset: 2px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

/* Gallery item hover effect for clickable items */
.gallery-item {
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.gallery-item:hover::after,
.gallery-item:focus::after {
    opacity: 1;
}

.gallery-item:focus {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

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

    h2 {
        font-size: 2rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .page-container {
        padding: 3rem 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Lightbox mobile adjustments */
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2.5rem;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.1);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        bottom: 80px;
    }

    .lightbox-image {
        max-height: 70vh;
    }

    .gallery-item::after {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* Amenity Cards */
.amenity-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.amenity-icon-large {
    color: var(--gold-accent);
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.amenity-icon-large svg {
    width: 100%;
    height: 100%;
}

.amenity-card h4 {
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.amenity-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.amenity-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-list li:last-child {
    border-bottom: none;
}

.amenity-list li .svg-icon {
    margin-right: 1rem;
    color: var(--sage-green);
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.amenity-list li .svg-icon svg {
    width: 100%;
    height: 100%;
}

/* Text-based Amenity List (No SVGs) */
.amenity-list-text {
    list-style: none;
    padding: 0;
    text-align: left;
}

.amenity-list-text li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-list-text li::before {
    content: "→";
    color: var(--gold-accent);
    margin-right: 0.75rem;
    font-weight: bold;
    line-height: normal;
    /* Adjusted from 1.5 to normal to avoid vertical alignment issues */
}

/* Override for cards to align list items better if needed, but default left align is usually best for reading lists */
.amenity-card .amenity-list-text li {
    justify-content: flex-start;
    text-align: left;
}