:root {
    --yellow: #f7b835;
    --yellowHover:#FFD700;
    --brown: #473108;
    --brownLight: #4A4A4A;
    --red:#E91E63;
    --redHover:#C2185B;
    --white:#ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
li{
    list-style-type: none;
}

/* Estilos del encabezado */
/* Estilos del header */
/* Estilos del Header (Fijo con efecto de opacidad) */
header {
    /* position: fixed; */
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(247, 184, 53, 1); /* Transparente al inicio */
    padding: 1rem;
    transition: background 0.3s ease-in-out, opacity 0.3s;
    z-index: 1000;
}

/* Cuando el usuario hace scroll, aumenta la opacidad */
header.scrolled {
    background: rgba(247, 184, 53, 1);
}

/* Contenedor del menú */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo más grande */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 100px;  /* Aumenta el tamaño del logo */
    height: auto;
}

.logo span {
    color: var(--brown);
    font-size: 1rem;
    font-weight: bold;
}

/* Botón menú hamburguesa */
.menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: block;
    margin-right: 15px;
}

/* Menú principal */
.nav-links {
    list-style: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    /* background: rgba(30, 58, 95, 0.9); */
    display: none;
    flex-direction: column;
    text-align: center;
}
/* Quitar subrayado de enlaces */
nav a {
    text-decoration: none;
    color: var(--brown);
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease-in-out;
}

/* Efecto hover para los enlaces del menú principal */
nav a:hover {
    color: #ec5555;
}

.submenu {
    display: none;
    background: var(--white);
    position: absolute;
    list-style: none;
    text-decoration: none;
    width: 180px;
    z-index: 1010;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
ul{
    text-decoration: none;
    list-style: none;
}
/* Estilos de enlaces del submenú */
.submenu li a {
    text-decoration: none;
    color: var(--brown);
    padding: 10px;
    font-size: 0.95rem;
    transition: background 0.3s ease-in-out;
}

.submenu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.submenu a {
    color: var(--brown);
    padding: 10px;
}

/* Hover en escritorio */
.dropdown:hover .submenu {
    display: block;
}


/* Responsive Design */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        width: auto;
    }

    .nav-links li {
        border: none;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
    }

    .submenu {
        position: absolute;
        display: none;
    }

    .dropdown:hover .submenu {
        display: block;
    }


}

/* Estilos para desktop */
@media (min-width: 1024px) {
 

    
}