/* === ESTILOS GENERALES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Bricolage Grotesque", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
    font-style: normal;
}

body, html {
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
    position: relative;
}

h1, h2, h3, h4, h5, h6, p, span {
    cursor: default; 
    user-select: none; 
}

/* === FONDO CON OPACIDAD === */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("img/fondo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    opacity: 0.5;
    z-index: -1;
}

/* === MENÚ DE NAVEGACIÓN === */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    z-index: 10;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}


nav a:hover {
    background-color: #000;
    color: #fff;
}

/* === CONTENEDOR PRINCIPAL === */
.main-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    position: relative;
    z-index: 5;
}

/* === TEXTOS DE SALUDO === */
.greetings {
    margin-bottom: 10px;
    user-select: none;
}

.greetings p {
    font-size: 5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
    display: inline-block; 
    transition: transform 0.3s ease-out;
    cursor: default;
    user-select: none;
}


.greetings p:hover {
    transform: translateX(20px);
    cursor: default;
    user-select: none;
}

/* === NOMBRE PRINCIPAL Y ESTRELLAS === */
.name-container {
    position: relative;
    display: inline-block;
    align-self: flex-start;
}

.name {
    font-size: 35vw; 
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 0.7;
    color: #000;
}


.star {
    position: absolute;
    width: 60px; 
    transition: transform 0.6s ease-in-out;
    cursor: default;
}


.star:hover {
    transform: rotate(90deg);
}


.star-1 {
    top: 40%;
    left: -8%;
    width: 100px;
}

.star-2 {
    bottom: 5%;
    left: -2%;
    width: 50px;
}

.star-3 {
    bottom: 0%;
    left: 32%;
    width: 45px;
}

.star-4 {
    top: -10%;
    left: 55%;
    width: 60px;
}

.star-5 {
    top: 45%;
    left: 75%;
    width: 45px;
}

.star-6 {
    top: -5%;
    right: 0%;
    width: 50px;
}

/*MARCA DE AGUA*/

.watermark {
    position: absolute; 
    bottom: 20px; /* Separación desde el borde inferior */
    width: 100%;
    text-align: center;
    z-index: 1000; /* Asegura que no quede tapado por ninguna imagen */
}

.watermark p {
    font-size: 0.8rem; /* Letra pequeñita y elegante */
    font-weight: 600;
    color: #0c0c0c; /* Un gris sutil para que no robe protagonismo */
    letter-spacing: 0.05em;
    cursor: default;
    user-select: none;
}

