@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ==========================================================
   ANCLAS Y HEADER FIJO
========================================================== */

:root {
    --header-height: 70px;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ==========================================================
   RESET Y BASE
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0b0710;
    color: #ffffff;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ==========================================================
   TÍTULOS GENERALES
========================================================== */

.hero h1,
.proxima-fiesta h2,
.dates h2,
.parties h2,
.gallery h2,
.residents h2,
.past-artists h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

/* ==========================================================
   SEPARADORES NEÓN
========================================================== */

.proxima-fiesta,
.dates,
.about,
.residents,
.past-artists,
.parties,
.gallery,
.ubicaciones {
    position: relative;
}

.proxima-fiesta::before,
.dates::before,
.about::before,
.residents::before,
.past-artists::before,
.parties::before,
.gallery::before,
.ubicaciones::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 140, 255, 0.45),
        #9b4dca,
        rgba(201, 140, 255, 0.45),
        transparent
    );
    box-shadow:
        0 0 7px rgba(155, 77, 202, 0.75),
        0 0 16px rgba(201, 140, 255, 0.25);
    z-index: 3;
}

/* ==========================================================
   BOTONES GENERALES
========================================================== */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: rgba(155, 77, 202, 0.12);
    color: #ffffff;
    border: 1px solid #9b4dca;
    border-radius: 16px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.button {
    margin-top: 35px;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 140, 255, 0.25),
        transparent
    );
    transition: left 0.5s ease;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    background: #9b4dca;
    color: #ffffff;
    border-color: #c98cff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 77, 202, 0.35);
}