* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, span {
    cursor: default; 
    user-select: none; 
}

body {
    background-color: #000000; 
    color: #ffffff; 
    height: 100vh; 
    overflow: hidden; 
    position: relative;
}

.top-nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    z-index: 10;
}

.top-nav a {
    text-decoration: none;
    color: #ffffff; 
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.top-nav a:hover {
    background-color: #ffffff; 
    color: #000000; 
}

.about-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8%; 
    position: relative;
}

.intro-text p {
    font-size: 3.5vw; 
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 85%;
}

.star {
    position: absolute;
    transition: transform 0.6s ease-in-out;
    cursor: default;
}

.star:hover {
    transform: rotate(90deg);
}

.star-1 { top: 15%; right: 15%; width: 60px; }
.star-2 { top: 40%; left: 3%; width: 40px; }
.star-3 { bottom: 45%; right: 20%; width: 90px; }
.star-4 { bottom: 10%; left: 20%; width: 70px; }

.contact-links {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

.contact-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 3.5vw;
    font-weight: 700;
    line-height: 0.9; 
    letter-spacing: -0.03em;
    transition: transform 0.4s ease-out, color 0.4s ease-out;
    display: inline-block;
}

.contact-links a:hover {
    transform: translateX(-15px); 
    color: #c5c5c5; 
}

@media (max-width: 768px) {
    .intro-text p {
        font-size: 5vw;
        margin-top: 50px;
    }
    .contact-links a {
        font-size: 8vw;
    }
}

/*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: #ffffff; /* Un gris sutil para que no robe protagonismo */
    letter-spacing: 0.05em;
    cursor: default;
    user-select: none;
}