/* Fondo general */
html, body {
    height: 100%;
    margin: 0;
}

body {
    background: url("../img/fondo_inicio.png") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;

    display: flex;
    flex-direction: column;   /* para empujar footer abajo */
}

/* =======================================
   HEADER
======================================= */

.main-header {
    background: #0D0D0D;
    padding: 10px 25px;
    border-bottom: 3px solid #8C5C03;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
}

.logo {
    height: 55px;
}

.menu-left {
    display: flex;
    gap: 22px;
}

.menu-left a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.menu-left a:hover {
    color: #F2CF1D;
}

/* =======================================
   CONTENIDO CONTACTO
======================================= */

.content-wrapper {
    flex: 1;                /* empuja el footer hacia abajo */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-container {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.75);
    padding: 35px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 0 25px rgba(0,0,0,0.55);
    margin-top: 120px;
}

.contact-container h1 {
    font-size: 32px;
    color: #F2CF1D;
    margin-bottom: 18px;
}

.mensaje {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BOTONES */
.buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn {
    background: #8C5C03;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn:hover {
    background: #6d4602;
}

.btn-alt {
    background: #444;
}

.btn-alt:hover {
    background: #2e2e2e;
}

.nota {
    margin-top: 25px;
    font-size: 14px;
    color: #cccccc;
}

/* =======================================
   FOOTER (SIEMPRE ABAJO)
======================================= */

.main-footer {
    background: #0D0D0D;
    color: white;
    border-top: 3px solid #8C5C03;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}
