@font-face{
    font-family: "Montserrat-Medium";
    src: url('Fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

header { /* Esta regla existe en tu CSS, aunque no se ve un <header> en tu HTML actual. */
    background-color: #083750;
    padding: 1rem 0;
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #083750;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav-links {
    justify-content: flex-end;
}

nav li {
    margin: 0 1rem;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    color: #E6F4F9;
    display: flex;
    align-items: center;
    font-family: "Montserrat-Medium";
    transition: background-color 0.3s ease; /* Añadido para transiciones suaves */
}

/* --- Indicador de Ubicación (Página Activa) --- */
nav a.active-page {
    background-color: rgba(230, 244, 249, 0.1); /* Un blanco muy sutil con transparencia */
    font-weight: bold; /* Hace el texto en negrita */
    /* Puedes añadir un borde, por ejemplo: border-bottom: 2px solid #BF9673; */
}

/* Ajuste para el hover del enlace activo, para que no pierda su estilo de activo */
nav a.active-page:hover {
    background-color: rgba(230, 244, 249, 0.15); /* Ligeramente más oscuro al pasar el ratón */
}
/* --- Fin Indicador de Ubicación --- */

nav a:hover {
    background-color: #04202e; /* Color al pasar el ratón para enlaces no activos */
}

/* Botones (sin cambios) */
.button-signup {
    padding: 12px 22px;
    background-color: #BF9673;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button-signup:hover {
    background-color: #f1cb9a;
    color: #52320a;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.button-login {
    padding: 10px 20px;
    border: 2px solid #BF9673;
    background-color: transparent;
    color: #BF9673;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.button-login:hover {
    background-color: #f1cb9a;
    color: #52320a;
}

/* Sidebar (sin cambios) */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #083750;
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
    padding: 15px 30px;
}

.menu-button {
    display: none;
}

@media (max-width: 800px) {
    .hideOnMobile {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .main-nav-links {
        justify-content: flex-start;
    }
}

@media (max-width: 400px) {
    .sidebar {
        width: 100%;
    }
}