/* CSS: Styling and Layout */
:root {
    --bg-color: #18181b; 
    --text-color: #f4f4f5;
    --accent-color: #00e5ff; 
    --accent-hover: #00b8cc;
    --panel-bg: rgba(39, 39, 42, 0.85); 
    --nav-bg: rgba(24, 24, 27, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-image {
    position: fixed;
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 50vw; 
    height: 50vh; 
    background: url('images/bg.png') no-repeat bottom center; 
    background-size: contain; 
    opacity: 0.5; 
    z-index: -1; 
}

.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #10b981; 
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 2000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: top 0.5s ease-in-out;
}

.notification.show { top: 20px; }
.notification.error { background-color: #ef4444; }

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

nav h1 {
    color: var(--text-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav h1 span { color: var(--accent-color); }

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a:hover { color: var(--accent-color); }

/* --- UPDATED HERO SLIDER --- */
.hero {
    position: relative;
    height: 80vh; /* Changed to 80vh */
    width: 100%;
    overflow: hidden;
    margin-top: 60px; /* Offset for the fixed nav bar */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide.active { opacity: 1; z-index: 2; }

/* Dark gradient over slider for text readability */
.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(24,24,27,0.4), rgba(24,24,27,0.9));
    z-index: 3;
}

.slide-content {
    position: relative;
    z-index: 4;
    padding: 0 20px;
    transform: translateY(20px);
    transition: transform 1s ease, opacity 1s ease;
    opacity: 0;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
}

/* Slider Dots */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    cursor: pointer;
}

.cta-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
    transform: translateY(-3px);
}

/* --- REST OF SECTIONS --- */
section { padding: 80px 20px; }

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--panel-bg);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

h3 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-divider {
    height: 3px;
    max-width: 800px;
    margin: 20px auto;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #e5e7eb;
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.music-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s ease;
}

.music-card i { font-size: 3.5rem; margin-bottom: 15px; transition: color 0.4s; }
.music-card span { font-weight: bold; font-size: 1.1rem; letter-spacing: 1px; }

.music-card.spotify:hover { border-color: #1DB954; box-shadow: 0 0 20px rgba(29, 185, 84, 0.4); transform: translateY(-5px); }
.music-card.spotify:hover i { color: #1DB954; }
.music-card.apple:hover { border-color: #fa243c; box-shadow: 0 0 20px rgba(250, 36, 60, 0.4); transform: translateY(-5px); }
.music-card.apple:hover i { color: #fa243c; }
.music-card.youtube:hover { border-color: #FF0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); transform: translateY(-5px); }
.music-card.youtube:hover i { color: #FF0000; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
}

.bookings-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.calendar-container, .form-container {
    background: #18181b;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #3f3f46;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.3s;
}

.calendar-header button:hover { background: var(--accent-color); color: var(--bg-color); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.day-name { font-weight: bold; color: #9ca3af; padding-bottom: 10px; }

.day {
    padding: 12px 0;
    background: #27272a;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.day:hover:not(.booked) {
    background: var(--accent-color);
    color: var(--bg-color);
    font-weight: bold;
    transform: scale(1.1);
}

.day.booked {
    background: #3f3f46;
    color: #71717a;
    cursor: not-allowed;
    text-decoration: line-through;
}

.day.empty { background: transparent; cursor: default; }

.form-container h4 { color: var(--text-color); margin-bottom: 20px; font-size: 1.5rem; }
.form-container form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.dates-row label { display: block; margin-bottom: 5px; color: #9ca3af; font-size: 0.9rem; }

.form-container input, .form-container textarea {
    width: 100%;
    padding: 15px;
    background: #27272a;
    border: 1px solid #3f3f46;
    color: var(--text-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-container input:focus, .form-container textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.active-input {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    background: #2d2d32 !important;
}
.date-picker { cursor: pointer; }

/* Form Submit Button Styling (Added from previous step) */
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    padding: 25px;
    background: #09090b;
    margin-top: 40px;
    border-top: 1px solid #27272a;
    color: #71717a;
}

@media (max-width: 900px) {
    nav ul { display: none; }
    .slide-content h2 { font-size: 2.5rem; }
    .bookings-wrapper { grid-template-columns: 1fr; }
    .section-container { padding: 30px 20px; }
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}