/* ======================================= */
/* CLEAN, STRAKKE, FIJNE STYLING VOOR GIGS PAGE */
/* ======================================= */

/* GLOBAL */
html, body {
    height: 100%;
    margin: 0;
    padding-top: 60px;
    overflow: hidden; /* disables scrolling */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e2e2e2;
    /* De achtergrond van de body kan behouden blijven voor de rest van de pagina */
    background: linear-gradient(90deg, #c79494, #7c8655);
}

/* ======================================= */
/* 2. NAVIGATION (NAVBAR)                  */
/* ======================================= */

.navbar {
    /* **BELANGRIJK:** Maakt de achtergrond transparant met een lichte overlay */
    background: rgba(0, 0, 0, 0.75) !important; 
    padding-top: 0px;
    width: 100%; /* Zorg dat de navbar de volle breedte inneemt */
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #e2e2e2 !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
    color: #daa0a0 !important;
}

.navbar .nav-link.d-inline {
    padding: 0 12px;
}

/* Remove border from last element (geen border gedefinieerd, maar goed voor de zekerheid) */
.navbar div > .nav-link.d-inline:last-child {
    border-right: none;
}

/* MAIN WRAPPER */
.main-content-wrapper {
    padding-top: 20px;
    padding-bottom: 60px;
}

/* TITLE */
h1 {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    margin-bottom: 25px;
}

/* GIGS LIST */
.list-group-item {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f4f4f4;
    padding: 1rem;
    font-size: 1.05rem;
    border-radius: 10px;
    margin-bottom: 12px;
    backdrop-filter: blur(3px);
    transition: 0.25s ease;
}

.list-group-item strong {
    color: #ffe3e3;
    font-size: 1.15rem;
}

/* DIVIDER */
hr {
    border-color: #ffffff40 !important;
}

/* LINK BELOW */
.main-content-wrapper a {
    color: #ffdcdc;
    text-decoration: underline;
    transition: 0.3s ease;
}

.main-content-wrapper a:hover {
    color: #ffffff;
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.75) !important;
    color: #e2e2e2;
    padding: 18px 0;
    font-size: 1rem;
    margin: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.footer .btn {
    border-radius: 6px;
    transition: 0.3s ease;
}

.footer .btn:hover {
    background: #ffffff;
    color: #000000 !important;
}

/* Hide mobile gigs by default on desktop */
.mobile-gigs-wrapper {
    display: none;
}

@media (max-width: 768px) {
    /* Hide desktop elements */
    .main-content-wrapper,
    #navbar-container,
    #footer-container {
        display: none !important;
    }
    
    html, body {
        overflow-y: auto !important; /* Enable scrolling on gigs page */
        height: auto !important;
        margin: 0;
        padding: 0;
    }
    
    .mobile-gigs-wrapper {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        width: 100%;
        background: linear-gradient(90deg, #c79494, #7c8655);
        color: #e2e2e2;
        box-sizing: border-box;
    }
    
    .mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-logo {
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
        font-size: 1.2rem;
        letter-spacing: 0.03em;
    }
    
    .mobile-nav-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1.5px solid #ffffff;
        color: #ffffff !important;
        padding: 6px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-btn:hover {
        background: #ffffff;
        color: #000000 !important;
    }
    
    .mobile-gigs-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .mobile-gigs-content h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #ffffff;
        margin-top: 10px;
        margin-bottom: 30px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .mobile-gig-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        width: 100%;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mobile-gig-card {
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }
    
    .mobile-gig-date {
        color: #ffe3e3;
        font-weight: 700;
        font-size: 1.3rem;
    }
    
    .mobile-gig-venue {
        font-size: 1.1rem;
        color: #f2f2f2;
    }
    
    .mobile-gigs-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #f2f2f2;
        margin-bottom: 20px;
    }
    
    .mobile-contact-link {
        color: #ffdcdc;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .mobile-footer {
        text-align: center;
        padding: 20px;
        background: rgba(0, 0, 0, 0.85);
        font-size: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}