@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Hegarty&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bartle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "BBH Sans Hegarty", sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    padding: 12px 40px;
    z-index: 100;
    border-bottom: 2px solid #222;
}

.glow-logo {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 10px #ff3c00;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.nav-links a:hover { opacity: 0.7; }

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    cursor: pointer;
}

.burger div {
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.toggle .line1 { transform: rotate(45deg) translate(5px,5px); }
.burger.toggle .line2 { opacity: 0; }
.burger.toggle .line3 { transform: rotate(-45deg) translate(5px,-5px); }

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12vh 5%;
    min-height: 100vh;
    background-image: url('MAINCOVER_desktop.jpg');
    background-size: cover;
    background-position: center;
}

.left { flex: 1; max-width: 600px; color: white; text-align: left; }
.left h1 { font-size: clamp(28px, 8vw, 60px); font-weight: 900; }
.btn { display: inline-block; margin-top: 1.5rem; padding: 10px 35px; background: #b8481e; color: white; border-radius: 40px; text-decoration: none; font-weight: bold; }
.right { flex: 1; display: flex; justify-content: flex-end; }
.right img { width: clamp(150px, 40vw, 300px); filter: drop-shadow(0 0 18px #ff3c00); }

.about, .djs-section, .cta { padding: 80px 20px; text-align: center; }
.about { background: #111; color: white; }
.djs-section { background: #1a1a1a; color: white; }
.dj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 25px; max-width: 1100px; margin: auto; }

.dj-card { 
    background: #222; 
    padding: 30px; 
    border-radius: 20px; 
    opacity: 0; 
    transform: translateY(20px); 
    transition: 0.5s, box-shadow 0.3s ease-in-out; 
    font-family: "BBH Sans Bogle", sans-serif;
}

.dj-card.visible { 
    opacity: 1; 
    transform: translateY(0); 
    color: white; 
}

.dj-card:hover {
    box-shadow: 0 0 15px 5px rgba(255, 0, 0, 0.7); /* red glow */
    transform: translateY(-5px) scale(1.03);
}

.cta { background: #b8481e; color: white; }
footer { background: black; color: white; text-align: center; padding: 25px; }

@media (max-width:768px){
    .burger { display: flex; }
    .nav-links {
        position: fixed;
        right: 0; top: 0; height: 100%;
        flex-direction: column; background: black;
        transform: translateX(100%); transition: transform 0.3s;
        width: 70%; justify-content: center; align-items: center;
        gap: 30px;
    }
    .nav-links.nav-active { transform: translateX(0); }
    .hero { flex-direction: column; text-align: center; }
    .left { text-align: center; }
    .right { justify-content: center; margin-top: 2rem; }
    .btn { padding: 8px 25px; }
}





 

  



 


    
 

