@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');
:root {
    --primary-dark: #1a1a1a;
    --text-light: #ffffff;
    --neon-pink: #ff00ff;
    --neon-yellow: #ffd271;
    --button-red: #cc0000;
    --button-hover-red: #ff3333;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    position: relative;
    overflow-x: hidden;
    color: var(--text-light);
    background-color: var(--primary-dark);
    background-image: url("../img/balada.png");
    background-repeat: no-repeat, no-repeat;
    background-position: top, bottom;
    background-size: cover;
    min-height: 100vh;
    max-height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.301);
    z-index: -1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
    width: 100%;
    z-index: 1000;
    margin-top: 0;
}

.header .logo {
    position: fixed;
    top: 0;
    left: 5%;
    width: 70px;
    height: 70px;
    background: #00000071 url("../img/vl.svg") center center no-repeat;
    background-size: 38px 38px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 1200;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
}

.header .logo .logo-v,
.header .logo .logo-l {
    display: none;
}

.header .navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    top: 60px;
}

.header .navbar ul {
    list-style: none;
    display: flex;
    padding: 0;
}

.header .navbar ul li {
    margin: 0 15px;
}

.header .navbar ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.25em;
    font-weight: 700;
    padding: 5px 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.header .navbar ul li a:hover {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow);
}

.main-content {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
    padding: 40px 0;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    overflow: hidden;
}

.left-section {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    margin-left: 4.5vw;
    margin-top: 10vh;
}

.left-section h1 {
    font-family: var(--font-heading);
    font-size: 8em;
    line-height: 0.9;
    color: var(--text-light);
    margin-bottom: 10px;
}

.left-section .neon-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 2.2em;
    color: #fff9e1;
    text-shadow:
        0 0 10px var(--neon-yellow),
        0 0 20px var(--neon-yellow),
        0 0 30px var(--neon-yellow);
    animation: pulse-yellow 1.5s infinite alternate;
    white-space: nowrap;
}

@keyframes pulse-yellow {
    from { text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow); }
    to { text-shadow: 0 0 15px var(--neon-yellow), 0 0 25px var(--neon-yellow), 0 0 35px var(--neon-yellow); }
}

.right-section {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    padding-left: 20px;
    margin-left: 25vw;
    margin-top: 10vh;
}

.right-section h2 {
    font-family: var(--font-body);
    font-size: 1.5em;
    color: var(--text-light);
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    align-self: center;
}

.dj-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: auto;
    margin-left: 0;
    justify-content: center;
}

.dj-card img {
    object-fit: cover;
    box-shadow: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 230px;
    height: 230px;
}

.dj-card.dj-ana img {
    content: url("../img/iconana.png");
}

.dj-card.dj-luiza img {
    content: url("../img/iconluiza.png");
}

.dj-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    color: var(--text-light);
    margin: 0;
}

.reservation-section {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.reservation-section p {
    font-size: 1em;
    margin-bottom: 15px;
}

.reservation-button {
    background-color: var(--button-red);
    color: var(--text-light);
    font-size: 1.5em;
    font-weight: 700;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
}

.reservation-button:hover {
    background-color: var(--button-hover-red);
    transform: scale(1.05);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    background-color: transparent;
    margin-bottom: 3vh;
    width: 100%;
}

.footer p {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.social-media a {
    color: var(--text-light);
    font-size: 2em;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: var(--neon-yellow);
    transform: scale(1.2);
}