/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background: linear-gradient(135deg, #2c2c58, #0f9ee0);
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2592f7;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #25b5f7;
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;    /* apila los elementos verticalmente */
    align-items: center;       /* centra horizontalmente */
    justify-content: flex-start; /* empieza desde arriba */
    padding-top: 80px;         /* espacio bajo el navbar */
    box-sizing: border-box;
    gap: 20px;
}

.hero-text {
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
}

.hero-text h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 25px;
    background: #2d2ae6;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background: #3450cc;
}

/* BOTONES NAVBAR */
.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn-login,
.btn-register {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
}

/* Iniciar sesión */
.btn-login {
    background: transparent;
    border: 1px solid #254cf7;
    color: #2592f7;
}

.btn-login:hover {
    background: #1536f0;
    color: white;
}

/* Registrarse */
.btn-register {
    background: #0b80ec;
    color: white;
}

.btn-register:hover {
    background: #106bb4;
}
.footer {
    margin-top: 30px;
    padding: 15px;
    text-align: center;
    background: rgb(45, 90, 238);
    border-top: 1px solid #ddd;
    border-radius: 8px;
}