/* GENERAL */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* HEADER Y LOGO */
.site-header {
    background-color: #003366;
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 10px;
}


.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.7));
}


/* MENÚ */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    background-color: #0055aa;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #0074cc;
    color: #ffffff;
}

/* SECCIÓN PRINCIPAL */
.hero-banner {
    background: url('banner.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-banner::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-banner h2,
.hero-banner p,
.cta-button {
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0074cc;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005fa3;
}

/* FOOTER */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
