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

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Inclusive Sans", sans-serif;
    background-color: #ffffff;
    color: #111111;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 600px;

    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}


/* =========================================
   MENÚ PRINCIPAL
========================================= */

.menu {
    position: absolute;

    top: 60px;
    right: 60px;

    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 2px;
}

.menu a {
    display: block;

    font-family: "Inclusive Sans", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;

    color: #111111;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.menu a:hover {
    opacity: 0.55;
    transform: translateX(-3px);
}

.menu a:focus-visible {
    outline: 1px solid #111111;
    outline-offset: 4px;
}


/* CONTENEDOR DEL NOMBRE */

.hero-title {
    position: absolute;

    top: 82%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: max-content;

    z-index: 2;
}


/* VALERIA */

.hero-title h1 {
    position: relative;

    margin: 0;

    color: #111111;

    font-family: "Cormorant Garamond", serif;
    font-size: 21rem;
    font-weight: 700;
    line-height: 0.85;

    white-space: nowrap;
}


/* FIDALGO */

.hero-title .apellido {
    position: absolute;

    top: 11.8%;
    left: 84.5%;

    color: #111111;

    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;

    z-index: 3;
}

/* =========================================
   PUNTOS DECORATIVOS
========================================= */

.dot {
    position: absolute;

    z-index: 3;

    width: 15px;
    height: 15px;

    background-color: #ffffff;
    border-radius: 50%;

    pointer-events: none;
}

.dot1 {
    top: 35px;
    left: 30px;
}

.dot2 {
    top: 35px;
    left: 50%;

    transform: translateX(-50%);
}

.dot3 {
    top: 35px;
    right: 30px;
}

.dot4 {
    bottom: 70px;
    left: 30px;
}

.dot5 {
    right: 30px;
    bottom: 70px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .menu {
        top: 50px;
        right: 40px;
    }

    .menu a {
        font-size: 18px;
    }

    h1 {
        font-size: clamp(125px, 19vw, 190px);
    }

    .apellido {
        top: 43%;
        left: 68%;

        font-size: 34px;
    }

}


/* =========================================
   CELULAR
========================================= */

@media (max-width: 720px) {

    /* HERO */
    .hero {
        min-height: 100svh;
    }

    /* IMAGEN DE FONDO */
    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* MENÚ */
    .menu {
        top: 55px;
        right: 24px;
        gap: 2px;
    }

    .menu a {
        font-size: 16px;
    }

    /* NOMBRE VALERIA */
    h1 {
        top: 51%;
        left: 50%;
        font-size: clamp(82px, 27vw, 150px);
    }

    /* APELLIDO FIDALGO */
    .apellido {
        top: 43%;
        left: auto;
        right: 12%;
        font-size: clamp(22px, 7vw, 34px);
    }

    /* PUNTOS */
    .dot {
        width: 8px;
        height: 8px;
    }

    .dot1 {
        top: 25px;
        left: 24px;
    }

    .dot2 {
        top: 25px;
    }

    .dot3 {
        top: 25px;
        right: 24px;
    }

    .dot4 {
        bottom: 35px;
        left: 24px;
    }

    .dot5 {
        right: 24px;
        bottom: 35px;
    }
}


/* =========================================
   PANTALLAS MUY PEQUEÑAS
========================================= */

@media (max-width: 420px) {

    .menu a {
        font-size: 15px;
    }

    h1 {
        font-size: clamp(74px, 26vw, 110px);
    }

    .apellido {
        right: 9%;

        font-size: 23px;
    }

}