/* ==========================================================================
   DELICIAS COMANCHEFF - Mobile-First Premium Stylesheet
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-primary: #121214;
    --bg-secondary: #1a1a1e;
    --bg-card: rgba(26, 26, 30, 0.7);
    --bg-card-hover: rgba(35, 35, 40, 0.9);
    
    --color-primary: #ff6f00;      /* Volcanic Orange */
    --color-primary-hover: #ff8f00;
    --color-primary-rgb: 255, 111, 0;
    --color-secondary: #ffe082;    /* Warm Gold Cream */
    --color-accent: #ff3d00;       /* Lava Red */
    
    --color-text: #fdfaf6;         /* Cream/Sand Text */
    --color-text-muted: #b5b0aa;   /* Soft Sand Muted */
    --color-border: rgba(255, 111, 0, 0.15);
    --color-border-glow: rgba(255, 111, 0, 0.4);
    
    --font-title: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --border-radius: 16px;
    --border-radius-sm: 8px;
    
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(255, 111, 0, 0.3);
}

/* 1. BASE STYLES (Defaults for Mobile Screens < 480px) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: #2a2a30;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Layout Utilities (Mobile Default) */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0; /* Compact padding for mobile */
}

.dark-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Mobile defaults to 1 column */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

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

.text-white {
    color: #fff;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Common Typography & UI Elements (Mobile Default) */
.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    box-shadow: var(--shadow-glow);
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.1rem; /* Smaller titles on mobile */
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--color-text);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.accent-text {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 111, 0, 0.1);
}

/* Buttons (Mobile Default) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%; /* Full width buttons for mobile */
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5), var(--shadow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background-color: rgba(255, 111, 0, 0.05);
    transform: translateY(-2px);
}

/* Compact circular phone button on mobile header */
.btn-phone {
    background-color: rgba(255, 111, 0, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: 50%;
    width: auto;
}

.btn-phone span {
    display: none; /* Hide phone text on mobile */
}

.btn-phone:hover {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* Header & Navbar (Mobile Default) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.brand-name {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Nav Drawer (Mobile Default) */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
}

.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(18, 18, 20, 0.98);
    z-index: 999;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-border);
    padding: 50px 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-nav.active {
    left: 0;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

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

/* Hero Section (Mobile Default) */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('fotos/502170036_1100740021891475_5107359824143596863_n.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--color-primary);
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 50px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 20, 0.98) 10%, rgba(18, 18, 20, 0.85) 60%, rgba(255, 111, 0, 0.15) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center; /* Centered layout for mobile */
}

.hero-content {
    max-width: 100%;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 2.3rem; /* Compact size for mobile */
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #fff;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: column; /* Stacked buttons for mobile */
    gap: 12px;
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hero-badge {
    position: relative;
    width: 200px; /* Small badge on mobile */
    height: 200px;
    border-radius: 50%;
    background-color: rgba(18, 18, 20, 0.6);
    border: 2px dashed var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md), 0 0 30px rgba(255, 111, 0, 0.15);
    backdrop-filter: blur(10px);
    animation: spinSlow 35s linear infinite;
}

.badge-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 50%;
    animation: spinSlow 35s linear infinite reverse;
}

.hero-scroll-down {
    display: none; /* Hide scroll down helper on small mobile */
}

/* About Us Section (Mobile Default) */
.about-image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.main-about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.decorative-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    padding: 16px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    text-align: center;
    z-index: 3;
    border: 2px solid var(--bg-primary);
}

.decorative-badge i {
    font-size: 1.3rem;
    margin-bottom: 3px;
    animation: pulse 2s infinite;
}

.decorative-badge span {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.about-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 111, 0, 0.1);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #fff;
}

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

/* Specialties Section (Mobile Default) */
.specialties-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 24px;
    margin-top: 30px;
}

.specialty-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specialty-img-container {
    position: relative;
    height: 200px;
}

.specialty-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--bg-primary);
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1.5px solid var(--color-primary);
    box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.specialty-info {
    padding: 20px;
}

.specialty-info h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.specialty-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Menu Section (Carta - Mobile Default) */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.25), var(--shadow-glow);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 16px;
    min-height: 250px;
}

.menu-item-card {
    display: none;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.01);
    border-bottom: 1px dashed rgba(255, 111, 0, 0.15);
    border-radius: var(--border-radius-sm);
}

.menu-item-card.show {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 10px;
}

.menu-item-header h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
}

.menu-item-price {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-primary);
}

.menu-item-desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Reviews Section (Mobile Default) */
.stars-rating {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #ffb300;
    font-size: 1.1rem;
}

.rating-text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-left: 6px;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    min-width: 100%;
    padding: 30px 20px; /* Slimmer padding for mobile */
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    font-size: 2.2rem;
    color: rgba(255, 111, 0, 0.15);
    margin-bottom: 12px;
}

.review-comment {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-text);
}

.reviewer-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.reviewer-stars {
    color: #ffb300;
    font-size: 0.80rem;
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: 4px;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 10px;
}

.carousel-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    width: 18px;
    border-radius: 4px;
    background-color: var(--color-primary);
}

/* Contact, Hours & Map Section (Mobile Default) */
.status-indicator-wrapper {
    margin-bottom: 20px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.open {
    border-color: rgba(76, 175, 80, 0.3);
    color: #4caf50;
    background-color: rgba(76, 175, 80, 0.05);
}

.status-indicator.open .status-dot {
    background-color: #4caf50;
    box-shadow: 0 0 10px #4caf50;
}

.status-indicator.closed {
    border-color: rgba(244, 67, 54, 0.3);
    color: #f44336;
    background-color: rgba(244, 67, 54, 0.05);
}

.status-indicator.closed .status-dot {
    background-color: #f44336;
    box-shadow: 0 0 10px #f44336;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 111, 0, 0.08);
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: #fff;
}

.contact-text a, .contact-text span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.phone-link {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.25rem !important;
    color: var(--color-primary) !important;
}

.hours-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 250px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
    font-size: 0.9rem;
}

.hours-list li.closed-day {
    color: #f44336;
}

.contact-map-container {
    height: 280px; /* Smaller map on mobile */
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

/* Footer (Mobile Default) */
.main-footer {
    background-color: #0b0b0d;
    border-top: 1px solid var(--color-border);
    padding: 50px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 30px;
    padding-bottom: 40px;
    text-align: center;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .footer-logo img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
}

.footer-brand .footer-logo span {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    font-size: 1.05rem;
}

.phone-accent {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.footer-bottom {
    background-color: #08080a;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* ==========================================================================
   2. PROGRESSIVE MEDIA QUERIES (Scaling Up)
   ========================================================================== */

/* --- PHABLETS & SMALL TABLETS (min-width: 481px) --- */
@media (min-width: 481px) {
    .btn {
        width: auto; /* Revert full-width buttons */
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
    
    .review-card {
        padding: 40px 30px;
    }
    
    .review-comment {
        font-size: 1.15rem;
    }
    
    .contact-map-container {
        height: 320px;
    }
}

/* --- TABLETS & SMALL DESKTOPS (min-width: 769px) --- */
@media (min-width: 769px) {
    .container {
        padding: 0 24px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr 1fr; /* Side by side layout */
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 45px;
    }
    
    /* Navigation Reset (Hide hamburger, show inline) */
    .mobile-nav-toggle {
        display: none;
    }
    
    .btn-phone span {
        display: inline; /* Show phone label text */
    }
    
    .btn-phone {
        padding: 10px 20px;
        border-radius: 30px;
    }
    
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        border-top: none;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .main-nav ul {
        flex-direction: row;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        color: var(--color-text-muted);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        box-shadow: var(--shadow-glow);
        transition: var(--transition-smooth);
    }
    
    .nav-link:hover::after, .nav-link.active::after {
        width: 100%;
    }
    
    /* Hero section adjust */
    .hero-section {
        height: 90vh;
        padding-top: 80px;
        padding-bottom: 0;
    }
    
    .hero-bg-overlay {
        background: linear-gradient(to right, rgba(18, 18, 20, 0.95) 30%, rgba(18, 18, 20, 0.7) 60%, rgba(255, 111, 0, 0.15) 100%);
    }
    
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left; /* Text aligns left on desktop */
        gap: 30px;
    }
    
    .hero-title {
        font-size: 3.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-badge {
        width: 270px;
        height: 270px;
    }
    
    .hero-scroll-down {
        display: block;
    }
    
    /* About Us page */
    .about-image-wrapper {
        padding-right: 20px;
        padding-bottom: 20px;
        margin: 0;
    }
    
    .decorative-badge {
        bottom: -15px;
        right: -15px;
        width: 120px;
        height: 120px;
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .about-text {
        font-size: 1.05rem;
    }
    
    /* Menu Carta */
    .menu-items-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 24px 35px;
    }
    
    .menu-item-card {
        padding: 20px;
    }
    
    .menu-item-card:hover {
        transform: translateX(5px);
        background-color: rgba(255, 111, 0, 0.03);
    }
    
    .contact-map-container {
        height: 420px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr; /* 3 columns */
        text-align: left;
        gap: 40px;
    }
    
    .footer-brand .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-brand p {
        margin: 0;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

/* --- LARGE SCREEN DESKTOPS (min-width: 1025px) --- */
@media (min-width: 1025px) {
    .section-padding {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .main-header.scrolled {
        padding: 5px 0;
    }
    
    .main-header.scrolled .navbar-container {
        height: 65px;
    }
    
    .main-header.scrolled .nav-logo {
        height: 38px;
        width: 38px;
    }
    
    .main-nav ul {
        gap: 32px;
    }
    
    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
    }
    
    .hero-badge {
        width: 320px;
        height: 320px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns */
        gap: 30px;
    }
    
    .specialty-img-container {
        height: 250px;
    }
    
    .specialty-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md), var(--shadow-glow);
    }
    
    .specialty-card:hover .specialty-img-container img {
        transform: scale(1.08);
    }
    
    .contact-map-container {
        height: 450px;
    }
}

/* --- RETINA DISPLAY AND EXTRA LARGE SCREENS (min-width: 1400px) --- */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.4rem;
    }
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 111, 0, 0.2);
    }
    50% {
        transform: scale(1.06);
        text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 111, 0, 0.2);
    }
}
