@font-face {
    font-family: 'FT Milky';
    src: url('../assets/fonts/FTMilky.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../assets/images/huevos.gif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(240, 239, 238, 0.70);
    z-index: 0;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Image */
.logo-image {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 0 auto 1.5rem auto;
    animation: fadeInScale 1s ease-out;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo Text */
.logo {
    font-family: 'FT Milky', 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: normal;
    letter-spacing: 0.02em;
    color: #131212;
    margin: 0 auto 3rem auto;
    line-height: 1.1;
    max-width: 100%;
    word-wrap: break-word;
    text-align: center;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.08em;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-primary {
    background-color: transparent;
    color: #46170C;
    border: 2px solid #46170C;
}

.btn-primary:hover {
    background-color: #46170C;
    color: #F0EFEE;
    border-color: #46170C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(70, 23, 12, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(70, 23, 12, 0.25);
}

/* Footer */
.footer {
    background-color: transparent;
    color: #131212;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.2s ease;
}

.footer-item:hover {
    transform: translateY(-2px);
}

.icon {
    width: 22px;
    height: 22px;
    color: #131212;
    flex-shrink: 0;
}

.footer-item span,
.footer-item a {
    color: #131212;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-item a:hover {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .hero {
        padding: 1.5rem;
    }

    .logo-image {
        max-width: 120px;
        margin-bottom: 1rem;
    }

    .logo {
        margin-bottom: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 1.3rem 2rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .horarios-list p {
        font-size: 0.85rem;
    }

    .footer-item span,
    .footer-item a {
        font-size: 0.85rem;
    }

    .icon {
        width: 20px;
        height: 20px;
    }
}
