/* CSS: Styling and Layout */
:root {
    --bg-color: #18181b; 
    --text-color: #f4f4f5;
    --accent-color: #00e5ff; 
    --accent-hover: #00b8cc; 
    --panel-bg: rgba(39, 39, 42, 0.65); 
    --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; 
    transition: opacity 0.5s ease-in-out;
    z-index: -1; 
}

.bg-image.show {
    opacity: 0.5;
}

.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;
}

/* Floating Logo */
.floating-logo-link {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 2000;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.floating-logo {
    width: 80px; 
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
    transition: all 0.3s ease;
}

.floating-logo-link:hover .floating-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--accent-color));
}

/* --- NEW: Floating Social Media Sidebar --- */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--panel-bg);
    color: var(--text-color);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-color);
    transform: scale(1.1) translateX(-5px); /* Pops out slightly to the left */
}

/* Navigation */
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-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

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

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

.menu-toggle {
    display: none;
    color: var(--accent-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh; 
    width: 100%;
    overflow: hidden;
    margin-top: 60px; 
}

.landing-img {
    position: absolute;
    bottom: 0;
    left: 0;           
    margin: 0;         
    padding: 0;        
    max-height: 90%;
    width: auto;
    z-index: 10; 
    pointer-events: none; 
}

.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: flex-end; 
    align-items: center;
    padding-right: 10%;
}

.slide-1 {
    background-image: url('https://via.placeholder.com/1920x1080/1a1a1a/00e5ff?text=Deon+Groot+Live');
}

.slide-2 {
    background-image: url('https://via.placeholder.com/1920x1080/2a2a2a/00e5ff?text=Toekennings');
}

.slide-3 {
    background-image: url('https://via.placeholder.com/1920x1080/0a0a0a/00e5ff?text=Nuwe+Album');
}

.slide-4 {
    background-image: url('https://via.placeholder.com/1920x1080/18181b/00e5ff?text=Bespreek+Deon');
}

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

.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: 10; 
    max-width: 50%;
    text-align: left;
    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: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
    color: var(--text-color);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #d1d5db;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    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);
}

/* Accolades Section */
.accolades-section {
    padding: 60px 20px 20px 20px; 
    position: relative;
    z-index: 5;
}

.accolades-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(39, 39, 42, 0.95), rgba(24, 24, 27, 0.95));
    border: 1px solid #E5E4E2; 
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(229, 228, 226, 0.15); 
    display: flex;
    align-items: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.streams-badge {
    background: #E5E4E2; 
    color: #18181b;      
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    z-index: 2;
}

.streams-badge i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.streams-badge .count {
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.streams-badge .label {
    font-size: 1rem;
    letter-spacing: 4px;
    opacity: 0.8;
}

.hits-marquee {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 0 20px;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content span {
    margin: 0 15px;
    color: #d1d5db;
}

.marquee-content span:nth-child(even) {
    color: #E5E4E2; 
    font-style: italic;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* General 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(6px); 
}

/* Specific styling JUST for the About Section */
#about .section-container {
    background: rgba(39, 39, 42, 0.1); 
    backdrop-filter: blur(0px); 
}

#about h3, 
#about .about-content p {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

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-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #ccc;
}

.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;
}

/* Playlists Section */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    margin-top: 30px;
}

.playlist-card {
    background: #27272a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3f3f46;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    height: 380px; 
}

.playlist-card iframe {
    width: 100%;
    height: 100%; 
    border: none;
    display: block;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.2);
    border-color: var(--accent-color);
}

/* Music Platforms */
.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;
}

/* Videos */
.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);
}

/* Custom Featured Video Section */
.custom-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3f3f46;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    aspect-ratio: 16 / 9;
}

.custom-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mute-btn {
    display: none !important;
}

/* Gallery */
.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);
}

/* Sponsors Section */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 150px;
    background: rgba(39, 39, 42, 0.6);
    border: 1px solid #3f3f46;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s ease;
    text-align: center;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.sponsor-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d1d5db;
    transition: color 0.4s ease, transform 0.4s ease;
}

.sponsor-card span {
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.sponsor-card:hover {
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-5px);
}

.sponsor-card:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Bookings */
.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;
}

/* Forms */
.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;
}

.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;
}

/* --- TABLET RESPONSIVENESS (Below 1100px) --- */
@media (max-width: 1100px) {
    .slide-content {
        max-width: 60%;    
    }

    .slide-content h2 {
        font-size: 2.8rem; 
    }
}

/* --- MOBILE RESPONSIVENESS (Below 900px) --- */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        gap: 0;
        border-top: 1px solid rgba(0, 229, 255, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-menu.active {
        max-height: 400px;
        border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .floating-logo-link {
        bottom: 1rem;
        left: 1rem;
    }
    
    .floating-logo {
        width: 60px;
        max-height: 60px;
    }

    /* Shrinks the social sidebar slightly on mobile so it doesn't block text */
    .social-sidebar {
        right: 0.5rem;
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .landing-img {
        left: 0;
        bottom: 0;
        max-height: 100%;   
        max-width: 90%;     
        width: auto;
        opacity: 1;         
        z-index: 0;         
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(24, 24, 27, 0.65); 
        z-index: 1;         
    }

    .slide {
        justify-content: center; 
        padding-right: 0;
        z-index: 2;         
    }

    .slide::after {
        display: none;
    }

    .slide-content {
        max-width: 90%;    
        text-align: center; 
        z-index: 2;         
    }

    .slide-content h2 {
        font-size: 2.2rem; 
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .accolades-section {
        padding: 40px 20px 0 20px; 
    }

    .accolades-container {
        flex-direction: column;
    }

    .streams-badge {
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    .hits-marquee {
        padding: 20px 0;
        width: 100%;
    }

    .playlist-grid {
        grid-template-columns: 1fr; 
    }

    .bookings-wrapper {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 30px 20px;
    }
}

/* --- PHONE RESPONSIVENESS (Extra Small) --- */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .slide-content h2 {
        font-size: 1.8rem;   
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .marquee-content {
        font-size: 1.2rem; 
    }
}