/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f8f9fa; 
    color: #212529; 
}

/* Custom Tixli Yellow Overrides for Bootstrap 'warning' */
.text-warning { color: #fbbf24 !important; }
.bg-warning { background-color: #fbbf24 !important; }
.btn-warning { background-color: #fbbf24; border-color: #fbbf24; color: #212529; font-weight: 700; }
.btn-warning:hover { background-color: #f59e0b; border-color: #f59e0b; }

/* Animation */
.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Hero Section */
.hero-bg {
    background-color: #212529; 
    background-image: linear-gradient(rgba(33, 37, 41, 0.7), rgba(33, 37, 41, 0.8)), url('images/hero-concert.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 600px;
    position: relative;
}

/* Card Zoom Effect */
.card-zoom { overflow: hidden; border-radius: 1rem; position: relative; height: 250px; cursor: pointer; }
.card-zoom .bg-image {
    background-size: cover; background-position: center; width: 100%; height: 100%;
    transition: transform 0.7s ease;
}
.card-zoom:hover .bg-image { transform: scale(1.1); }
.card-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}

/* Utilities */
.rounded-4 { border-radius: 1rem !important; }
.icon-box { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }

/* Wave Rotation */
.wave-bottom {
    position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0;
    transform: rotate(180deg);
}

/* Navbar Blur */
.navbar-blur { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); }

/* Form Controls */
.form-control-lg, .form-select-lg { padding: 0.75rem 1rem; font-size: 1rem; }
.form-control:focus, .form-select:focus { border-color: #fbbf24; box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25); }

/* Tab Buttons */
.tab-btn {
    border: none; background: none; padding: 1.25rem; font-weight: 700; color: #6c757d;
    border-bottom: 4px solid transparent; width: 50%; transition: all 0.2s;
}
.tab-btn:hover { color: #343a40; background-color: rgba(0,0,0,0.02); }
.tab-btn.active { color: #212529; border-bottom-color: #fbbf24; background-color: white; }

/* Blob Background */
.blob-bg {
    position: absolute; top: 0; right: 0; width: 40%; height: 100%;
    background: rgba(251, 191, 36, 0.05); transform: skewX(12deg); transform-origin: top;
    pointer-events: none; z-index: 0;
}