@charset "utf-8";

/* =======================================================
   1. SECCIÓN HERO (PRINCIPAL)
   ======================================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    margin-top: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(26,15,10,0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px 20px 20px;
    width: 100%;
    max-width: 1200px;
}

/* =======================================================
   2. LOGO CENTRAL (AJUSTADO PARA SUBIR SU POSICIÓN)
   ======================================================= */
.hero-logo-central {
    margin: 0 auto 10px; /* Reducido de 20px a 10px para elevar el bloque */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    width: auto;
    height: auto;
}

.hero-logo-central img {
    max-width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

/* =======================================================
   3. TEXTOS Y TÍTULOS
   ======================================================= */
.hero-title {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    letter-spacing: 15px;
    margin-bottom: 0;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: #ffffff;
    font-weight: 300;
    margin-top: 10px;
    text-transform: uppercase;
}

/* =======================================================
   4. NUEVO: ICONOS SOCIALES DEBAJO DE GASTRO BAR
   ======================================================= */
.hero-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;               /* Espacio horizontal entre los iconos */
    margin: 20px auto 10px;  /* Margen superior para separarlo de GASTRO BAR */
}

.hero-social-icons a {
    color: #ffffff;          /* Color blanco base */
    font-size: 28px;         /* Tamaño de los iconos */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.hero-social-icons a:hover {
    color: #d4af37;          /* Tono dorado corporativo en hover */
    transform: translateY(-4px) scale(1.1); /* Efecto sutil de elevación y zoom */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* =======================================================
   5. SEPARADORES Y TEXTOS INFERIORES
   ======================================================= */
.hero-line {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 20px auto; /* Reducido de 25px a 20px para mantener la armonía */
}

.hero-tagline {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #cccccc;
}

/* =======================================================
   6. BOTONES
   ======================================================= */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.btn-hero {
    padding: 15px 35px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
    transition: all 0.4s ease;
    display: inline-block;
    text-transform: uppercase;
}

.btn-gold {
    background-color: #d4af37;
    color: #1a0f0a;
}

.btn-gold:hover {
    background-color: #f1c40f;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #1a0f0a;
    transform: translateY(-3px);
}

/* =======================================================
   7. FLECHA DE SCROLL ANIMADA
   ======================================================= */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 5;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =======================================================
   8. RESPONSIVE (MÓVILES Y TABLETS)
   ======================================================= */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 85px;       /* Reducido de 100px para elevar el contenido en tablet/móvil */
        padding-bottom: 80px;    /* Espacio de seguridad para no solapar la flecha */
    }

    .hero-logo-central img {
        max-width: 190px;        /* Reducido ligeramente de 220px para optimizar espacio vertical */
    }

    .hero-title { 
        font-size: 2.8rem; 
        letter-spacing: 5px; 
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .hero-social-icons {
        gap: 25px;               /* Iconos ligeramente más juntos en pantallas pequeñas */
        margin: 15px auto 5px;
    }

    .hero-social-icons a {
        font-size: 24px;         /* Ajuste de escala para pantallas táctiles */
    }

    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 15px;
    }

    .btn-hero { 
        width: 100%; 
        max-width: 280px; 
    }

    .scroll-down {
        bottom: 15px; 
        font-size: 1.5rem; 
    }
}

/* Ajuste fino para móviles muy pequeños */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
}

/* Ocultar flecha si el dispositivo es bajo para priorizar botones */
@media (max-height: 650px) and (max-width: 480px) {
    .scroll-down {
        display: none;
    }
}