:root {
    --bg-color: #121212;
    --text-primary: #ffffff;
    --accent-color: #FF5A00; /* Vibrant Orange/Amber */
    --accent-hover: #FF7B33;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Oswald', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    width: 100%;
    z-index: 10;
}

.logo {
    font-family: var(--font-logo);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.highlight {
    color: var(--accent-color);
    position: relative;
}
.nav-links a.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-links a.highlight:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    align-items: center;
    position: relative;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding-right: 2rem;
}

.subtitle-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-body);
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.subtitle-date {
    margin-left: auto; /* Push to the right slightly relative to the group */
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 12rem); /* Fluid scaling for mobile */
    line-height: 0.85;
    color: var(--accent-color);
    margin: 0;
    text-shadow: 4px 4px 15px rgba(255, 90, 0, 0.15);
    white-space: nowrap;
}

/* Decorative Badge */
.badge-container {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 20px;
    right: -40px; /* Overlap on desktop right side */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.rotating-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 15s linear infinite;
    fill: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: var(--font-body);
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-inner-icon {
    font-size: 2rem;
    z-index: 100;
    text-align: center;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

/* Hero Image */
.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.burger-img {
    max-width: 140%; /* Make it pop out slightly */
    height: auto;
    object-fit: contain;
    transform: translateX(10%) scale(1.05);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.burger-img:hover {
    transform: translateX(10%) scale(1.1) translateY(-10px);
}

/* Adjustments for desktop to accommodate badge move */
.hero-content {
    padding-bottom: 5rem; /* Space for the moved badge */
}

/* Glovo Button */
.glovo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFC244 !important;
    color: #121212 !important;
    padding: 6px 16px !important;
    border-radius: 30px;
    font-weight: 800 !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 194, 68, 0.3);
}

.glovo-btn:hover {
    background-color: #FFD166 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 194, 68, 0.5);
}

.glovo-btn::after {
    display: none !important;
}

.glovo-logo {
    height: 18px;
    width: auto;
}

/* ============================
   FULL SITE FOOTER
============================ */
.site-footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 4rem 2rem 4rem;
    margin-top: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand .footer-logo {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 220px;
}

.footer-hashtag-big {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.footer-hashtag-big:hover { opacity: 1; }

/* Column headings */
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 1.2rem;
}

/* Location Column */
.footer-address {
    list-style: none;
}
.footer-address li {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.footer-address li strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Socials Column */
.footer-social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-social-links a {
    font-size: 0.95rem;
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.footer-social-links a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

/* Contact Column */
.footer-contact-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact-items li {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-contact-items a {
    display: block;
    font-size: 0.95rem;
    color: #aaa;
    text-decoration: none;
    margin-top: 2px;
    transition: color 0.3s;
    letter-spacing: 0;
    text-transform: none;
}
.footer-contact-items a:hover {
    color: var(--accent-color);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.78rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .main-title { font-size: clamp(6rem, 12vw, 10rem); }
    .hero { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; align-items: center; margin-bottom: 2rem; padding-bottom: 0; }
    .hero-image { justify-content: center; width: 100%; margin-top: 2rem; }
    .burger-img { max-width: 90%; transform: translateX(0) scale(1); }
    .burger-img:hover { transform: scale(1.05) translateY(-5px); }
    
    .badge-container { 
        top: 0px; 
        right: 20px; 
        left: auto;
        transform: scale(0.8);
        background: rgba(18, 18, 18, 0.4);
        border-radius: 50%;
        backdrop-filter: blur(4px);
    }

    .subtitle-bar { flex-direction: column; gap: 0.5rem; }
    .subtitle-date { margin-left: 0; }
}

@media (max-width: 768px) {
    .navbar { padding: 1.5rem 0; }
    .logo { font-size: 2.5rem; margin-bottom: 1rem; }
    .nav-links { 
        padding: 0 1rem;
        gap: 1rem; 
        font-size: 0.85rem; 
        flex-wrap: wrap; 
        justify-content: center; 
    }
    .nav-links a { font-size: 0.85rem; }
    
    .main-title { font-size: 5rem; }
    
    .site-footer { padding: 3rem 1.5rem 1.5rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-contact-items { align-items: center; }
    .footer-social-links { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    /* Reseñas / Chat Section Mobile */
    .chat-title { font-size: 3rem; }
    .chat-iframe-container { 
        height: 520px; 
        border-radius: 15px;
    }
    .chat-iframe-container iframe {
        width: 100%;
        height: calc(100% + 150px);
        margin-top: -150px;
        border: none;
        background: transparent;
    }
}

@media (max-width: 480px) {
    .main-title { font-size: 18vw; }
    .subtitle-bar { font-size: 0.9rem; }
    .nav-links { gap: 0.8rem; }
    .nav-links a { font-size: 0.75rem; }
    .glovo-btn { padding: 5px 12px !important; gap: 6px; }
    .glovo-logo { height: 14px; }
}

/* Reseñas / Chat Section */
.chat-section {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.chat-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 15px rgba(255, 90, 0, 0.2);
}

.chat-iframe-container {
    width: 100%;
    max-width: 900px;
    height: 650px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden; /* This will crop the content */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    position: relative;
}

.chat-iframe-container iframe {
    width: 100%;
    height: calc(100% + 160px);
    margin-top: -160px;
    border: none;
    background: transparent;
}

@media (max-width: 768px) {
    .chat-title { font-size: 3.5rem; }
    .chat-iframe-container { height: 500px; }
}
