/* LocaLodgings Global Stylesheet - Aero-Pro Edition */

:root {
    --brand: #2563eb; 
    --glow-gold: #FFD700; 
    --glow-red: #FF4444; 
    --glow-green: #00FF88;
    --glass: rgba(255, 255, 255, 0.08); 
    --border: rgba(255, 255, 255, 0.2); 
    --max: 1120px;
}

body, html { 
    margin: 0; padding: 0; min-height: 100%; 
    font-family: 'Inter', sans-serif; 
    background: #000; color: #fff; 
    overflow-x: hidden; 
}

/* --- THE KINETIC ENGINE (Locked Viewport) --- */
#aqueous-stage { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    z-index: 0; filter: blur(50px) saturate(250%); 
    pointer-events: none; will-change: transform; 
}

.viewport-frost { 
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; 
    /* Static fallback for frostTint - can be adjusted */
    background: rgba(0,0,0,0.5); 
    backdrop-filter: blur(25px); 
    z-index: 1; pointer-events: none; 
}

.ui-shell { position: relative; z-index: 10; width: 100%; display: flex; flex-direction: column; align-items: center; }

header { width: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); border-bottom: 1.5px solid var(--border); }
.nav-container { max-width: var(--max); margin: 0 auto; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 26px; width: auto; }

main { max-width: var(--max); width: 92%; margin: 40px auto; }
.layout-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) { .layout-grid { grid-template-columns: 1fr 1.2fr; } }

/* --- THE UNIFORM PILLS --- */
.frosted-island { 
    background: var(--glass); border: 1.5px solid var(--border); 
    backdrop-filter: blur(40px) saturate(180%); 
    -webkit-backdrop-filter: blur(40px) saturate(180%); /* Mobile Support */
    border-radius: 40px;
    padding: 35px; margin-bottom: 20px; box-sizing: border-box;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
    overflow: hidden;
}
.active-focus { border-color: var(--glow-gold) !important; box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
.alert-mode { border-color: var(--glow-red) !important; box-shadow: 0 0 40px rgba(255, 68, 68, 0.3); }

.etched-crisp {
    font-weight: 800; text-transform: uppercase; letter-spacing: -1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    -webkit-background-clip: text; background-clip: text;
}

.data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 20px; }
.data-box { background: rgba(0,0,0,0.3); padding: 15px; border-radius: 20px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.data-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.5; margin-bottom: 5px; }
.data-val { font-size: 16px; font-weight: 800; color: var(--glow-gold); font-family: monospace; }

.search-field { background: rgba(0,0,0,0.5); border: 1.5px solid var(--border); border-radius: 20px; display: flex; padding: 8px; margin-top: 25px; align-items: center; }
.search-field input { background: transparent; border: none; color: #fff; padding-left: 15px; flex: 1; outline: none; font-size: 15px; }
.action-btn { background: var(--brand); color: #fff; border: none; border-radius: 14px; padding: 10px 20px; font-weight: 800; cursor: pointer; text-decoration: none; display: inline-block; text-align: center; }

#map { height: 350px; border-radius: 30px; border: 1.5px solid var(--border); margin-top: 20px; }
.powered-tag { font-size: 9px; font-weight: 800; opacity: 0.4; letter-spacing: 2px; margin-top: 15px; text-align: center; }
.event-card { background: rgba(255,255,255,0.06); padding: 12px; border-radius: 15px; margin-bottom: 10px; border-left: 3px solid var(--brand); }

/* --- DRAWER ADDITIONS --- */
.indicator-drawer { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.indicator-drawer.open { max-height: 800px; }
.ellipsis-btn { background: rgba(255,255,255,0.1); border:none; border-radius:50%; width:30px; height:30px; color:#fff; cursor:pointer; font-weight:800; }
