/* ===== Fuente Athena ===== */
@font-face {
    font-family: "Athena";
    src: url("assets/font/Athena-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: "Montserrat-regular";
    src: url(assets/font/Montserrat/static/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: "Montserrat-thin";
    src: url(assets/font/Montserrat/static/Montserrat-Thin.ttf);
    font-weight: 400;
    font-style: normal;
}

/* ===== Reset básico ===== */
html,
body {
    height: 100%;
}

body {
    margin: 0;
    overflow: hidden;
    /* font-family: "Athena", serif; */
}

h1{
    font-family: "Athena";
}

/* ===== Logo superior ===== */
.top-logo {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.top-logo img {
    height: 80px;
    width: auto;
}

/* ===== Pantalla completa con imagen completa ===== */
.hero {
    height: 100vh;
    width: 100vw;
    display: grid;
    place-items: center;
    /* background-image: url("assets/background/BG.jpg");
    background-repeat: no-repeat;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("assets/background/BG.jpg");

    /* Forzar estiramiento 
    background-size: 100% 100%;
    background-position: center; */
    background-color: #F7EFE2;
}

/* Estilo para el logo dentro del contenido central */
.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  display: inline-block;
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center;
    }
}

/* Contenido */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px;
    /* background-color: rgba(0,0,0, 0.3); */
    /* border-radius: 10px; */
}

.content h1 {
    margin: 0;
    font-size: clamp(28px, 6vw, 60px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #262625;
}

.content p {
    margin: 12px 0 0;
    font-size: clamp(14px, 2vw, 18px);
    color: #262625;
    font-family: "Montserrat-regular", "san-serif";
    text-transform: uppercase;
}

footer {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.footer-content {
    color: #262625;
    text-align: center;
    font-size: 14px;
    font-family: "Montserrat-thin", "sans-serif";
}

