:root {
    --forest-green: #2D5A3D;
    --forest-green-light: #3A7D54;
    --forest-green-dark: #1E3D2A;
    --off-white: #F5F1EB;
    --off-white-light: #FAF8F5;
    --amber-accent: #E8B94A;
    --amber-light: #F5D78A;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white-light);
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
#navbar {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
    position: relative;
}

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

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

/* Mobile Menu */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

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

.mobile-nav-link {
    border-radius: 8px;
    padding: 8px 12px;
    transition: background 0.2s ease;
}

.mobile-nav-link:hover {
    background: var(--off-white);
}

/* Buttons */
.btn-primary {
    background: var(--forest-green);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--forest-green-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hero Section */
#hero {
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 40%, var(--forest-green-light) 100%);
    z-index: 0;
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 61, 42, 0.85) 0%,
        rgba(45, 90, 61, 0.7) 50%,
        rgba(58, 125, 84, 0.6) 100%
    );
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

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

.hero-badge {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero h1 {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.hero p {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.hero .flex {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.1s;
    opacity: 0;
}

/* Geometric Shapes */
.geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 185, 74, 0.12);
    top: -100px;
    right: -100px;
}

.geo-circle-2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: 10%;
    left: 5%;
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(232, 185, 74, 0.15);
    top: 30%;
    left: -50px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(255, 255, 255, 0.05);
    top: 20%;
    right: 10%;
    transform: rotate(15deg);
}

.geo-square {
    width: 100px;
    height: 100px;
    background: rgba(232, 185, 74, 0.1);
    bottom: 20%;
    right: 15%;
    transform: rotate(45deg);
}

.geo-arc {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    bottom: -50px;
    left: 20%;
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--forest-green) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
}

.geo-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), transparent);
    border-radius: 2px;
    opacity: 0.2;
}

.geo-circle-experience {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -200px;
    right: -150px;
}

.geo-square-experience {
    width: 150px;
    height: 150px;
    background: rgba(232, 185, 74, 0.1);
    bottom: -30px;
    left: 5%;
    transform: rotate(30deg);
}

.geo-circle-about {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.06);
}

.geo-triangle-about {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid rgba(45, 90, 61, 0.05);
    transform: rotate(-20deg);
}

.geo-circle-contact {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.05);
}

.geo-square-contact {
    width: 120px;
    height: 120px;
    background: rgba(232, 185, 74, 0.08);
    transform: rotate(45deg);
}

.geo-footer-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.geo-footer-square {
    width: 100px;
    height: 100px;
    background: rgba(232, 185, 74, 0.08);
    transform: rotate(45deg);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

/* Room Cards */
.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image-wrapper img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--forest-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.room-badge-secondary {
    background: var(--amber-accent);
    color: var(--text-dark);
}

.room-content {
    padding: 24px;
}

.room-amenity {
    background: var(--off-white);
    color: var(--text-gray);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Experience Cards */
.experience-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.experience-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(232, 185, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* About Section */
.about-image-grid {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--off-white);
}

.about-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--amber-accent);
    border-radius: 20px;
    z-index: -1;
}

/* Location */
.location-item {
    padding: 16px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.location-item:hover {
    background: var(--off-white);
}

.map-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Contact Form */
#contact-form input,
#contact-form select,
#contact-form textarea {
    font-family: 'Inter', sans-serif;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.1);
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .geo-circle-1 {
        width: 200px;
        height: 200px;
    }

    .geo-circle-2 {
        width: 120px;
        height: 120px;
    }

    .geo-triangle {
        border-left-width: 40px;
        border-right-width: 40px;
        border-bottom-width: 70px;
    }

    .about-image-grid {
        height: 400px;
    }

    .geo-circle-experience {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .font-playfair.text-4xl {
        font-size: 2rem;
    }
}
