/* ================= GLOBAL ================= */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #fff;
}

a {
    text-decoration: none;
}

/* ================= HERO BACKGROUND ================= */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/bg.jpg) no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* ================= HERO CONTENT ================= */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}

/* ================= REDES SOCIALES ================= */

/* Alineación de la lista de redes y botones al centro vertical */
.social {
    display: flex;
    justify-content: center; /* horizontalmente centrado */
    align-items: center;     /* verticalmente centrado */
/*    position: fixed;*/
    position: absolute;
    top: 10px;
    right: 40px;
    z-index: 200;
}

.social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position-y: -37px;
    margin: 0 5px;
}

/* Iconos redes */
.social .fb-btn { background-image: url(../img/social.png); background-position-x: -37px; }
.social .ig-btn { background-image: url(../img/social.png); background-position-x: -74px; }
.social .yt-btn { background-image: url(../img/social.png); background-position-x: -113px; }

/* Hover iconos */
.social .fb-btn:hover, .social .ig-btn:hover, .social .yt-btn:hover { background-position-y: -1px; }

/* Botones MERCH y TOUR (solo texto) */
.social .btn-social {

    width: auto;
    height: auto;
    padding: 0.3rem 0.8rem;
    margin-left: 0.3rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
}

.social .btn-social:hover {
    background-color: #fff;
    color: #302d2a;
}



.btn-social-text {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin-left: 0.3rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    border: none; /* sin outline ni borde */
    background: transparent; /* sin fondo */
    text-align: center;
    transition: all 0.3s ease;
    margin-right: 50px !important;
/*    margin-right: 15px !important;*/
}

/* Hover: tachado */
.btn-social-text:hover {
    text-decoration: line-through;
    color: #989898; /* mantiene el texto blanco sobre fondo oscuro */
}



@media (max-width: 767px) {
    .social {
        left: 0;
        right: 0;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap; /* permite que los botones se ajusten */
        gap: 0.5rem;
    }
}


/* ================= BOTONES HERO ================= */
.btn-outline {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1.2rem;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
/*    border-radius: 4px;*/
    background-color: transparent;
    transition: all 0.4s ease;
}

.btn-outline span { transition: color 0.4s ease; }

.btn-outline:hover {
    background-color: #fff;
    color: #302d2a;
}







/* ================= PREORDER ================= */
.preorder-section {
    background: url(../img/bg2.jpg) no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preorder-section .preorder-img {
    max-width: 100%;
    height: auto;
}

.preorder-section .btn-invert {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    color: #302d2a;
    border: 1px solid #302d2a;
    text-transform: uppercase;
    font-weight: 400;
    background-color: transparent;
    transition: all 0.4s ease;
}

.preorder-section .btn-invert span { transition: color 0.4s ease; }

.preorder-section .btn-invert:hover {
    background-color: #302d2a;
    color: #fff;
}



/* ================= TOUR ================= */
.tour-section {
    background-color: #302d2a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

/* ================= FOOTER ================= */
footer {
    position: fixed;
    font-family: 'Libre Franklin', sans-serif;
    bottom: 0;
    width: 100%;
    background-color: #302d2a;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-size: 12px;
}

footer a:hover {
    text-decoration: line-through;
    color: #989898!important;
}

footer .footer-left,
footer .footer-center,
footer .footer-right {
    display: flex;
    align-items: center;
}

footer .logos {
    display: inline-block;
    height: 59px;
    background-repeat: no-repeat;
}

footer .marion-btn {
    background-image: url(../img/logos.png);
    background-position: 0 0;
    width: 52px;
}

footer .farmway-btn {
    background-image: url(../img/logos.png);
    background-position: -60px 0;
    width: 48px;
}


footer .footer-center .separator {
    margin: 0 0.25rem;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 767px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }

    footer .footer-left,
    footer .footer-right {
        flex: 0 0 auto;
    }

    footer .footer-center {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer .footer-center .separator { display: none; }

    footer .footer-center a { margin: 2px 0; }
}

/* ================= ANIMACIONES ================= */
.animate-fade-only {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
