/* ===== GEOMETRIC DECORATIONS ===== */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}
.geo-circle-1 {
    width: 500px; height: 500px;
    background: #F5A623;
    top: -100px; right: -100px;
    animation: float 8s ease-in-out infinite;
}
.geo-circle-2 {
    width: 300px; height: 300px;
    background: #B899C8;
    bottom: 10%; left: -60px;
    animation: float 10s ease-in-out infinite reverse;
}
.geo-circle-3 {
    width: 180px; height: 180px;
    background: #F5A623;
    top: 40%; right: 8%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}
.geo-circle-4 {
    width: 400px; height: 400px;
    background: #F5A623;
    bottom: -150px; right: -80px;
    opacity: 0.07;
    animation: float 12s ease-in-out infinite;
}
.geo-circle-5 {
    width: 350px; height: 350px;
    background: #F5A623;
    top: -80px; left: -80px;
    opacity: 0.15;
    animation: float 9s ease-in-out infinite reverse;
}
.geo-circle-6 {
    width: 600px; height: 600px;
    background: #7B4F8E;
    bottom: -200px; right: -150px;
    opacity: 0.15;
    animation: float 14s ease-in-out infinite;
}

.geo-triangle {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}
.geo-triangle-1 {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #F5A623;
    top: 20%; left: 5%;
    animation: spin 20s linear infinite;
}
.geo-triangle-2 {
    width: 0; height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 78px solid #B899C8;
    bottom: 25%; right: 10%;
    animation: spin 15s linear infinite reverse;
}

.geo-square {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}
.geo-square-1 {
    width: 80px; height: 80px;
    background: #F5A623;
    top: 30%; right: 15%;
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}
.geo-square-2 {
    width: 120px; height: 120px;
    background: #5D3A6E;
    bottom: 20%; left: 8%;
    transform: rotate(20deg);
    animation: spin 25s linear infinite;
}

.geo-diamond {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}
.geo-diamond-1 {
    width: 70px; height: 70px;
    background: #F5A623;
    top: 15%; left: 10%;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite reverse;
}

.geo-dots {
    position: absolute;
    width: 120px; height: 120px;
    background-image: radial-gradient(circle, rgba(245,166,35,0.4) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.5;
    pointer-events: none;
}
.geo-dots::after {
    content: '';
    position: absolute;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, rgba(184,153,200,0.5) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    top: 40px; left: -30px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
#navbar {
    background: transparent;
}
#navbar.scrolled {
    background: rgba(45, 27, 54, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== AMENITY CARDS ===== */
.amenity-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.amenity-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-4px);
}

/* ===== MOBILE MENU ===== */
#mobileMenu {
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-link {
    display: block;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .geo-circle-1 { width: 250px; height: 250px; }
    .geo-circle-2 { width: 150px; height: 150px; }
}
