/* /assets/css/styles.css */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #0dcaf0;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-bg: #121212;
    --font-family: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: #ffffff;
    overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass-navbar {
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
}

.search-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.result-glass-card {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    border-radius: 1.5rem;
    width: 350px;
    top: 100px;
    left: 20px;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.glass-modal .modal-content {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.glass-modal input.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.glass-modal input.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
    color: #fff;
}

/* Typography & Gradients */
.text-gradient {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
.btn-primary-gradient:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
    color: #fff;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    padding-top: 80px; /* Offset for navbar */
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a2e 0%, #121212 100%);
}

.z-index-1 {
    z-index: 1;
}

/* Background Blobs for Hero */
.bg-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}
.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite alternate;
}
.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #6f42c1;
    border-radius: 50%;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

/* Map Section */
.map-section {
    height: 100vh;
    width: 100%;
}

/* Form Controls */
#address-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem 0 0 2rem;
}
#search-btn {
    border-radius: 0 2rem 2rem 0;
    font-weight: 600;
}

/* Status Indicators */
.status-badge {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.status-available {
    background-color: rgba(25, 135, 84, 0.2);
    color: #28a745;
    border: 1px solid #198754;
}
.status-coming-soon {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}
.status-unavailable {
    background-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.animate-up {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Map Layout */
@media (max-width: 768px) {
    .result-glass-card {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px 0;
    }
}
