@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #ffeddc;
    color: white;
}

.hovered-element:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
>/* Primary color variables */
:root {
    --primary-color: #8b5a2b;
    --primary-hover: #6b4423;
    --primary-light: rgba(139, 90, 43, 0.1);
    --primary-dark: #3a2a1a;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Smooth animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hero section improvements */
video {
    opacity: 0.8;
    transition: all 1s ease;
}

video:hover {
    opacity: 1;
    transform: scale(1.05);
}
/* Form inputs */
input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
input:focus {
    outline: none;
    border-color: #8b5a2b;
box-shadow: 0 0 0 2px rgba(176, 149, 123, 0.2);
}
/* Info cards */
.bg-white\/10 {
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.05);
    color: white;
}

.bg-white\/10:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: white;
}

.text-white {
    color: white !important;
}
/* Modal transitions */
#scheduleModal {
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 90, 43, 0.5);
color: white;
border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.lightbox-nav:hover {
    background: rgba(139, 90, 43, 0.8);
}
.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-nav i {
    pointer-events: none;
}
.lightbox-view-more {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 90, 43, 0.7);
color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-view-more:hover {
    background: rgba(139, 90, 43, 0.9);
}
.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.lightbox-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.lightbox-thumbnail:hover, 
.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #b0957b;
}
.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(255, 255, 255, 0.2);
}
/* Scroll-driven reveal animations */
.reveal-section {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered child animations */
.reveal-section > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), 
                transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: opacity, transform;
}

.reveal-section.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-section.revealed > h2 { transition-delay: 0.1s; }
.reveal-section.revealed > p { transition-delay: 0.2s; }
.reveal-section.revealed > div { transition-delay: 0.3s; }
/* Parallax effect for media */
.parallax-media {
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Full-width video container */
.video-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Floor plan card hover effect */
.floor-plan-card {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.floor-plan-card:hover {
    background-color: rgba(176, 149, 123, 0.2);
    transform: translateY(-2px);
}
.floor-plan-card img {
    transition: transform 0.3s ease, border-color 0.3s ease;
    max-height: 400px;
}

.floor-plan-card:hover img {
    transform: scale(1.02);
    border-color: white/40;
}
/* Floor plan lightbox */
#floorPlanLightbox {
    transition: opacity 0.3s ease;
}

#floorPlanLightbox img {
    animation: fadeIn 0.4s ease-out;
}

#closeFloorPlan {
    transition: transform 0.2s ease;
}

#closeFloorPlan:hover {
    transform: scale(1.1);
}
