@font-face {
    font-family: 'AppleGaramond';
    src: url('https://fonts.cdnfonts.com/s/14258/AppleGaramond.woff') format('woff');
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'AppleGaramond', serif;
    color: #111;
}

/* Sección 1: cielo real animado */

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: url('../resources/cielo.jpeg') repeat-x center center;
    background-size: cover;
    /* Sin animación, imagen fija */
}

#arrow-down {
    transition: transform 0.2s;
}
#arrow-down:hover {
    transform: translateX(-50%) scale(1.15);
}



.title {
    font-size: 10vw;
    text-shadow: 0 0 18px rgba(0,0,0,0.45);
    z-index: 2;
}

/* Sección 2: contenido */
.content {
    min-height: 100vh;
    padding: 0 12vw;
    font-size: 1.5rem;
    line-height: 1.5;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.content p {
    max-width: 900px;
    margin: auto;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    padding: 40px 0 30px;
    color: #333;
    opacity: 0.7;
    line-height: 1.4;
}
