/* ============================================
   FOLLY GETAWAY — Custom Styles
   Vibrant Modern | Plum + Amber Palette
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #2D1226;
    color: #FDF2F8;
}

::selection {
    background: #F59E0B;
    color: #2D1226;
}

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

.shape-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #D97706 0%, transparent 70%);
    top: -100px;
    right: -150px;
    animation: floatSlow 20s ease-in-out infinite;
}

.shape-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #BE185D 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.shape-circle-3 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, #FBBF24 0%, transparent 70%);
    top: 40%;
    right: 10%;
    animation: floatSlow 12s ease-in-out infinite;
}

.shape-rect-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #D97706 0%, #BE185D 100%);
    top: 20%;
    left: 5%;
    transform: rotate(45deg);
    opacity: 0.06;
    animation: spinSlow 30s linear infinite;
}

.shape-triangle-1 {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid #F59E0B;
    opacity: 0.05;
    top: 60%;
    right: 5%;
    animation: floatSlow 18s ease-in-out infinite;
}

.shape-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #FBBF24 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
    bottom: 20%;
    left: 15%;
    animation: floatSlow 25s ease-in-out infinite;
}

/* --- Animations --- */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes spinSlow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* --- Room Cards --- */
.room-card {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
}

/* --- Feature Cards --- */
.feature-card {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

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

/* --- Navbar --- */
#navbar {
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
    background: rgba(45, 18, 38, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* --- Mobile Menu --- */
#mobileMenu {
    box-shadow: none;
}

#mobileMenu.open {
    transform: translateX(0);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Form Styling --- */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(5) hue-rotate(10deg);
    cursor: pointer;
}

select option {
    background: #4A1D3F;
    color: #FDF2F8;
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .shape-circle-1 {
        width: 300px;
        height: 300px;
    }
    .shape-circle-2 {
        width: 200px;
        height: 200px;
    }
    .shape-rect-1 {
        width: 150px;
        height: 150px;
    }
    .shape-triangle-1 {
        border-left-width: 60px;
        border-right-width: 60px;
        border-bottom-width: 100px;
    }
}
