:root {
    --primary: #D32F2F;
    --primary-dark: #B71C1C;
    --accent: #FFB300;
    --dark: #121212;
    --dark-card: #1E1E1E;
    --gray-light: #F8F9FA;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #E0E0E0;
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px; /* Un poco más de holgura para la cabecera */
    padding: 10px 0;
}

.logo-img {
    height: 65px; /* Tamaño perfecto integrado */
    width: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    background-color: white; /* Por si el logo tiene transparencias */
}

.logo-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-brand-text strong {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--dark);
}

.btn-outline.small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline.small:hover {
    background-color: var(--primary);
    color: white;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 750px;
}

.badge-tag {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Carta Section & Accordion */
.carta-section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-header.light h2, .section-header.light p {
    color: white;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.accordion-item.active {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
}

.cat-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cat-icon {
    font-size: 1.5rem;
}

.accordion-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 3000px;
    transition: max-height 0.8s ease-in-out;
    padding: 0 25px 30px 25px;
}

.cat-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.menu-card {
    background: white;
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.accordion-item.active .menu-card {
    background: var(--gray-light);
}

.menu-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.menu-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.menu-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.menu-price span {
    background-color: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Delivery Section */
.delivery-section {
    background-color: var(--dark);
    padding: 100px 20px;
    color: white;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.delivery-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.delivery-logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.delivery-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.delivery-card p {
    color: #AAAAAA;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.btn-delivery {
    background-color: white;
    color: var(--dark);
    display: block;
    width: 100%;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-delivery:hover {
    background-color: var(--accent);
}

.btn-delivery-alt {
    background-color: var(--primary);
    color: white;
    display: block;
    width: 100%;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-delivery-alt:hover {
    background-color: var(--primary-dark);
}

.foodbooking-btn-wrapper {
    margin-top: auto;
}

.glf-button {
    display: block;
    width: 100%;
    background-color: var(--accent) !important;
    color: var(--dark) !important;
    padding: 12px 15px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.glf-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.address-text, .hours-text, .phones-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.phones-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.phones-text a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.map-placeholder {
    background: var(--gray-light);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.map-content span {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.map-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.map-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: #0B0B0B;
    color: #777;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}