:root {
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-light: #f5f5f5;
    --text-gold: #d4af37;
    --text-orange: #ff8c42;
    --accent-red: #c1272d;
    --accent-warm: #ff6b35;
    --section-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('assets/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.construccion-lateral {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.3;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
}

.construccion-lateral.izquierda {
    left: -80px;
}

.construccion-lateral.derecha {
    right: -80px;
}

.hero-content {
    z-index: 2;
    padding: 20px 20px 40px;
    max-width: 100%;
    box-sizing: border-box;
}

.logo-container {
    margin-bottom: 0;
}

.logo {
    max-width: 462px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.glovo-destacado {
    margin-bottom: 20px;
    padding: 25px 40px;
    background-color: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--text-gold);
    border-radius: 10px;
    display: inline-block;
}

.glovo-destacado .glovo-text {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.glovo-destacado .glovo-text strong {
    color: var(--text-gold);
    font-weight: 700;
    font-size: 1.6rem;
}

.contacto-construccion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    justify-content: center;
}

.contact-icon {
    font-size: 1.5rem;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    flex-shrink: 0;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--text-gold);
}


/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    .hero-content {
        padding: 20px 30px 40px;
    }
    
    .logo {
        max-width: 400px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
}

@media (max-width: 968px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .glovo-destacado {
        padding: 20px 35px;
    }
    
    .glovo-destacado .glovo-text {
        font-size: 1.3rem;
    }
    
    .glovo-destacado .glovo-text strong {
        font-size: 1.4rem;
    }
    
    .construccion-lateral {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .construccion-lateral.izquierda {
        left: -70px;
    }
    
    .construccion-lateral.derecha {
        right: -70px;
    }
    
    .contact-item {
        font-size: 1.2rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 15px 15px 30px;
        width: 100%;
    }
    
    .logo {
        max-width: 320px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .glovo-destacado {
        padding: 18px 25px;
        margin-bottom: 15px;
    }
    
    .glovo-destacado .glovo-text {
        font-size: 1.1rem;
    }
    
    .glovo-destacado .glovo-text strong {
        font-size: 1.2rem;
    }
    
    .contacto-construccion {
        gap: 12px;
        margin-top: 15px;
    }
    
    .contact-item {
        font-size: 1.05rem;
    }
    
    .whatsapp-icon,
    .instagram-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 640px) {
    .logo {
        max-width: 280px;
    }
    
    .hero-headline {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subheadline {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }
    
    .construccion-lateral {
        display: none;
    }
    
    .contact-item {
        font-size: 1rem;
        gap: 12px;
    }
    
    .glovo-destacado {
        padding: 15px 20px;
        margin-bottom: 15px;
    }
    
    .glovo-destacado .glovo-text {
        font-size: 1rem;
    }
    
    .glovo-destacado .glovo-text strong {
        font-size: 1.1rem;
    }
    
    .whatsapp-icon,
    .instagram-icon {
        width: 20px;
        height: 20px;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .hero-content {
        padding: 10px 10px 25px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .hero-headline {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .hero-subheadline {
        font-size: 0.75rem;
        margin-bottom: 18px;
    }
    
    .glovo-destacado {
        padding: 12px 18px;
        margin-bottom: 12px;
    }
    
    .glovo-destacado .glovo-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .glovo-destacado .glovo-text strong {
        font-size: 1rem;
    }
    
    .contacto-construccion {
        gap: 10px;
        margin-top: 12px;
    }
    
    .contact-item {
        font-size: 0.95rem;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .whatsapp-icon,
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
}

/* Responsive Design - Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 15px 20px 20px;
    }
    
    .logo {
        max-width: 300px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .glovo-destacado {
        padding: 15px 25px;
        margin-bottom: 12px;
    }
    
    .contacto-construccion {
        gap: 10px;
        margin-top: 12px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}
