/* ===========================
   RESETEO
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('../img/fondo_inicio.png') no-repeat center/cover;
    font-family: Arial, sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===========================
   HEADER
=========================== */
.main-header {
    width: 100%;
    background: #0d0d0d;
    padding: 10px 20px;
    border-bottom: 3px solid #b8860b;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    width: 55px;
}

/* Menú general */
.menu-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

/* Menú izquierdo */

.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .menu-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Mostrar hamburguesa */
    .hamburger {
        display: block;
    }

    /* Ocultar el menú left por defecto */
    .menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #222;
        padding-left: 20px;
        margin-left: 0; /* quitamos tu margen original */
    }

    /* Cuando se abre */
    .menu.show {
        max-height: 500px;
        padding: 20px;
    }

    /* Menú derecho también fuera en móvil (si así lo querés) */
    .menu-right {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        background: #222;
        padding-left: 20px;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Cuando el menú abre, el menú-right también abre */
    .menu-right.show {
        max-height: 300px;
        padding: 20px;
    }
}


.menu {
    display: flex;
    gap: 25px;
    margin-left: 40px;
    transition: max-height 0.3s ease;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: 0.3s;
}

.menu a:hover {
    color: #b8860b;
}

/* Menú derecho */
.menu-right {
    display: flex;
    gap: 25px;
    margin-right: 40px;
}

.menu-right a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
}

.menu-right a:hover {
    color: #b8860b;
}

/* ===========================
   HERO
=========================== */
.hero {
    text-align: center;
    margin-top: 80px;
    flex-grow: 1;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* ===========================
   FOOTER (sin espacio negro)
=========================== */
.main-footer {
    background: #0d0d0d;
    padding: 12px;
    border-top: 3px solid #b8860b;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

