/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ========================================
   CSS CUSTOM PROPERTIES (COLOR PALETTE - BASED ON LOGO)
   ======================================== */
:root {
    /* Primary Colors - Mapped to brand */
    --primary-black: #040404; /* black */
    --primary-orange: #91593b; /* potters-clay as primary accent */
    --primary-yellow: #ffd700; /* keep yellow for ratings/visibility */
    --primary-beige: #ddc8af; /* bone */
    --primary-tan: #5d4e47; /* kabul */
    
    /* Secondary Colors - Warm/Neutrals */
    --secondary-brown: #312827; /* dune */
    --secondary-dark-brown: #1b2422; /* outer-space */
    --secondary-light-brown: #91593b; /* potters-clay */
    --secondary-cream: #ddc8af; /* bone */
    
    /* Accent Colors */
    --accent-orange: #91593b; /* unify accents to brand primary */
    --accent-yellow: #ffd700;
    --accent-beige: #ddc8af;
    --accent-grey: #7c7c84; /* jumbo */
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #7c7c84; /* jumbo */
    --dark-gray: #3b3b44; /* tuna */
    --black: #040404;
    
    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
    
    /* Gradients - Using brand colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-brown) 100%);
    --gradient-warm: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-beige) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(4, 4, 4, 0.85) 0%, rgba(49, 40, 39, 0.85) 100%);
    --gradient-beige: linear-gradient(135deg, var(--primary-beige) 0%, var(--accent-beige) 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 12px;
    --radius-large: 20px;
    --radius-full: 50px;

    /* Aliases (parrillero-*) for future use */
    --parrillero-bone: #ddc8af;
    --parrillero-black: #040404;
    --parrillero-kabul: #5d4e47;
    --parrillero-potters-clay: #91593b;
    --parrillero-dune: #312827;
    --parrillero-jumbo: #7c7c84;
    --parrillero-gunsmoke: #7c8482;
    --parrillero-cape-cod: #3b4444;
    --parrillero-tuna: #3b3b44;
    --parrillero-outer-space: #1b2422;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark-gray);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 400;
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow);
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    margin-bottom: 30px;
}

.loading-logo i {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.loading-logo h2 {
    font-size: 2rem;
    color: var(--white);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-black);
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    /* Use warm gradient from palette for a lighter, inviting look */
    background: var(--gradient-warm);
}
.logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighten overlay to keep readability without over-darkening */
    background: linear-gradient(135deg, rgba(4, 4, 4, 0.60) 0%, rgba(49, 40, 39, 0.60) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 72px;
    opacity: 0.9;
    line-height: 1.6;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    font-size: 1rem;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-dish {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-heavy);
    transform: rotate(5deg);
    transition: transform var(--transition-normal);
    /* Fallback background */
    background: var(--gradient-beige);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-dish:hover {
    transform: rotate(0deg) scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   QUICK INFO BAR
   ======================================== */
.quick-info {
    background: var(--primary-beige);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.info-content p {
    margin-bottom: 4px;
    color: var(--medium-gray);
}

.info-content span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.info-content a {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.open {
    background: var(--success);
    color: var(--white);
}

.status-badge.closed {
    background: var(--error);
    color: var(--white);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-black);
}

.testimonial {
    background: var(--primary-beige);
    padding: 30px;
    border-radius: var(--radius-medium);
    border-left: 4px solid var(--primary-orange);
    margin: 40px 0;
    position: relative;
}

.testimonial i {
    color: var(--primary-orange);
    font-size: 2rem;
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-gray);
    margin: 0;
    padding-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.feature p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-normal);
    /* Fallback background */
    background: var(--gradient-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 500;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary-yellow);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--primary-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu {
    padding: 100px 0;
    background: var(--white);
}

.menu-intro {
    text-align: center;
    margin-bottom: 60px;
}

.menu-intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    background: var(--primary-beige);
    border-radius: var(--radius-large);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-image {
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    /* Fallback background */
    background: var(--gradient-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 500;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.category-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 100px 0;
    background: var(--primary-beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    /* Fallback background */
    background: var(--gradient-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ========================================
   SCHEDULE SECTION
   ======================================== */
.schedule {
    padding: 100px 0;
    background: var(--white);
}

.schedule-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.schedule-card {
    background: var(--primary-beige);
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.schedule-header i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.schedule-header h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.schedule-table {
    background: var(--white);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--primary-beige);
}

.schedule-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--primary-black);
}

.time {
    color: var(--success);
    font-weight: 500;
}

.busy-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: var(--radius-medium);
    border-left: 4px solid var(--warning);
    margin-bottom: 16px;
}

.busy-indicator i {
    color: var(--warning);
}

.wait-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 500;
}

.wait-time i {
    color: var(--success);
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location {
    padding: 100px 0;
    background: var(--primary-beige);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-card,
.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.card-header h3 {
    font-size: 1.3rem;
    color: var(--primary-black);
}

.directions-card {
    text-align: center;
}

.map-container {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* Fallback background */
    background: var(--gradient-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Google Maps iframe styling */
.google-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
}

.google-map:hover {
    box-shadow: var(--shadow-heavy);
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.map-overlay i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-black);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--medium-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--primary-beige);
    border-radius: var(--radius-medium);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    transform: translateX(10px);
    background: var(--primary-black);
    color: var(--white);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-title {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    font-size: 1.1rem;
    font-weight: 500;
}

.social-proof {
    background: var(--primary-beige);
    padding: 40px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
}

.social-proof h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-black);
}

.rating-large {
    margin: 30px 0;
}

.rating-large .stars {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.rating-large .rating-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-black);
}

.review-preview {
    margin-top: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-medium);
}

.review-preview blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.review-preview cite {
    color: var(--medium-gray);
    font-weight: 500;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.8;
    color: var(--white);
}

.footer-section i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Rectangular brand buttons for footer */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), filter var(--transition-normal);
    box-shadow: var(--shadow-light);
    gap: 10px;
}

/* Brand base colors */
.social-links a[href*="facebook"] { background: var(--primary-orange); }
.social-links a[href*="instagram"] { background: var(--primary-tan); }
.social-links a[href*="wa.me"] { background: var(--secondary-brown); }

/* Hover elevation and slight intensity */
.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    filter: brightness(1.05);
}

.social-links a i {
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom i {
    color: var(--error);
}

/* ========================================
   SOCIAL MEDIA CTA SECTION (Homepage)
   ======================================== */
.social-cta {
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--accent-beige) 100%);
    padding: 70px 0;
}
.social-cta .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.social-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}
.social-cta p.subtitle {
    color: var(--dark-gray);
    margin-bottom: 28px;
}
.social-cta .btn-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), filter var(--transition-normal);
}
.btn-social i { font-size: 1.1rem; }
.btn-social:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); filter: brightness(1.05); }
.btn-facebook { background: var(--primary-orange); }
.btn-instagram { background: var(--primary-tan); }
.btn-whatsapp { background: var(--secondary-brown); }
@media (max-width: 768px) {
    .social-cta .btn-row { grid-template-columns: 1fr; }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .google-map {
        height: 400px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .schedule-card {
        padding: 30px 20px;
    }
    
    .address-card,
    .contact-card {
        padding: 20px;
    }
    
    .social-proof {
        padding: 30px 20px;
    }
    
    .google-map {
        height: 300px;
    }
    
    .social-links {
        gap: 10px;
        justify-content: center;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .social-links a i {
        font-size: 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-black);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-small);
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX( -50% );
    background: #ffffff;
    color: var(--primary-black);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    padding: 16px 20px;
    z-index: 10001;
    max-width: 560px;
    width: calc(100% - 40px);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-consent p {
    margin: 0;
    color: var(--dark-gray);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

/* (reverted language switcher/Bootstrap-specific additions removed) */

/* Responsive tweak: preserve spacing on mobile without crowding */
@media (max-width: 768px) {
    .header-cta {
        margin-left: 12px;
    }
}
