.hamburger {
    display: none;
    position: absolute;
    top: 18px;
    right: 25px;
    width: 38px;
    height: 38px;
    z-index: 2001;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--text-light);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 992px) {
    body {
        height: auto;
        max-height: none;
        min-height: 100vh;
        overflow-y: auto;
    }
    .header .logo {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header {
        flex-direction: column;
        padding: 15px 10px;
    }
    .header .navbar {
        position: static;
        left: unset;
        transform: none;
        top: 0;
        margin-top: 15px;
        width: 100%;
        text-align: center;
        display: none;
        background: rgba(0,0,0,0.95);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        z-index: 2000;
    }
    .header .navbar.active {
        display: block;
        animation: fadeInMenu 0.2s;
    }
    .header .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px 0;
    }
    .main-content {
        height: auto;
        max-height: none;
        min-height: unset;
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 20px 0;
        width: 100vw;
        max-width: 100vw;
    }
    .left-section,
    .right-section,
    .reservation-section {
        width: 100%;
        margin: 0;
        padding: 0 5vw;
        align-items: center;
        text-align: center;
    }
    .left-section {
        margin-top: 7vh;
    }
    .right-section {
        margin-top: 0;
        margin-left: 0;
        padding-left: 0;
    }
    .dj-card img {
        width: 200px;
        height: 200px;
    }
    .footer {
        padding: 10px 0;
        margin-bottom: 2vh;
    }
}

@media (max-width: 576px) {
    .main-content {
        gap: 40px;
        padding: 10px 0;
    }
    .left-section h1 {
        font-size: 6em;
    }
    .left-section .neon-text {
        font-size: 2em;
        white-space: normal;
        word-break: break-word;
        margin-bottom: 5vh;
    }
    .right-section h2 {
        font-size: 1.6em;
    }
    .dj-card img {
        width: 170px;
        height: 170px;
    }
    .reservation-section {
        margin-top: 3vh;
    }
    .reservation-button {
        font-size: 1em;
        padding: 30px 50px;
        margin-bottom: 7vh;
    }
    .footer {
        padding-bottom: 5.5vh;
    }
    .footer p {
        font-size: 1em;
    }
    .social-media a {
        font-size: 3.5em;
        margin: 0 18px;
    }
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}
