/**
 * El Buen Sabor - Estilos Modernos
 * Paleta: Ámbar y Negro Elegante
 */

/* ==================== VARIABLES ==================== */
:root {
    /* Colores principales */
    --amber-primary: #D4AF37;
    --amber-light: #F4D03F;
    --amber-dark: #B8860B;
    --black-primary: #0A0A0A;
    --black-soft: #1A1A1A;
    --black-medium: #2A2A2A;
    --gray-light: #E0E0E0;
    --gray-medium: #9E9E9E;
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-amber: 0 4px 15px rgba(212, 175, 55, 0.3);
    
    /* Fuentes */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ==================== RESET Y BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--black-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== TIPOGRAFÍA ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

/* ==================== LAYOUT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site {
    position: relative;
    min-height: 100vh;
}

/* ==================== HEADER Y NAVEGACIÓN ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-primary);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: var(--amber-light);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--amber-primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* ==================== CLICK-TO-CALL ==================== */
/* Barra móvil fija en la parte inferior */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--amber-primary) 0%, var(--amber-dark) 100%);
    color: var(--black-primary);
    padding: 1rem 1.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    z-index: 9999;
    box-shadow: 0 -4px 25px rgba(212, 175, 55, 0.4), 0 -2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border-top: 2px solid var(--amber-light);
}

.mobile-call-bar:hover,
.mobile-call-bar:active {
    background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 -6px 30px rgba(212, 175, 55, 0.6), 0 -3px 15px rgba(0, 0, 0, 0.6);
}

.mobile-call-bar i {
    margin-right: 0.75rem;
    animation: pulse-phone 2s ease-in-out infinite;
    font-size: 1.2rem;
}

@keyframes pulse-phone {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.15) rotate(-5deg);
        opacity: 0.9;
    }
}

/* Teléfono en header desktop */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--amber-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-secondary);
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--amber-primary);
    border-radius: 30px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
}

.header-phone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--amber-primary);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.header-phone:hover::before {
    width: 300px;
    height: 300px;
}

.header-phone:hover {
    color: var(--black-primary);
    border-color: var(--amber-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.header-phone i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.header-phone:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Responsive: Mostrar barra móvil y ocultar desktop */
@media (max-width: 768px) {
    .mobile-call-bar {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-phone {
        display: none;
    }
    
    /* Añadir padding al body para la barra fija */
    body {
        padding-bottom: 70px;
    }
}

/* Tablet: versión compacta del botón */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-phone {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-right: 1rem;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--amber-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-soft) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/banner/banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    color: var(--amber-primary);
    text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--amber-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--amber-primary), transparent);
    margin: 0.5rem auto 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--amber-primary);
    color: var(--white);
    text-align: center;
}

.alert-success strong {
    display: block;
    font-size: 1.5rem;
    color: var(--amber-primary);
    margin-bottom: 1rem;
}

.alert-error {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(220, 38, 38, 0.1));
    border: 2px solid #DC2626;
    color: var(--white);
}

.alert-error strong {
    display: block;
    color: #DC2626;
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--amber-primary);
    color: var(--black-primary);
}

.btn-primary:hover {
    background: var(--amber-light);
    box-shadow: var(--shadow-amber);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--amber-primary);
}

.btn-secondary:hover {
    background: var(--amber-primary);
    color: var(--black-primary);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--amber-primary);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--amber-primary), transparent);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--black-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image-gallery {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
    z-index: 1;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--amber-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--amber-primary);
    transform: scale(1.3);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--black-medium);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--amber-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-medium);
    font-size: 0.875rem;
}

/* ==================== MENU SECTION ==================== */
.menu-section {
    background: var(--black-primary);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 1rem 2rem;
    background: var(--black-soft);
    color: var(--white);
    border: 2px solid var(--black-medium);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--amber-primary);
    color: var(--black-primary);
    border-color: var(--amber-primary);
    box-shadow: var(--shadow-amber);
}

.menu-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--black-soft);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--black-medium);
    transition: all 0.3s ease;
    display: block;
}

.menu-item:hover {
    border-color: var(--amber-primary);
    box-shadow: var(--shadow-amber);
    transform: translateY(-3px);
    cursor: pointer;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 1rem;
}

.menu-item-name {
    color: var(--amber-primary);
    font-size: 1.25rem;
    flex: 1;
}

.menu-item-price {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.menu-item-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ==================== MENÚ DEL DÍA ESPECIAL ==================== */
.menu-dia-featured {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(212, 175, 55, 0.1);
}

.menu-dia-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.menu-dia-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

.menu-dia-title {
    font-size: 2rem;
    color: var(--amber-primary);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.menu-dia-subtitle {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin: 0;
}

.menu-dia-price-box {
    margin-left: auto;
    text-align: center;
    background: var(--amber-primary);
    padding: 1.25rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.menu-dia-price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--black-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.menu-dia-price {
    display: block;
    font-size: 2.5rem;
    color: var(--black-primary);
    font-weight: 700;
    line-height: 1;
}

.menu-dia-content {
    padding: 3rem;
}

.menu-dia-course {
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.menu-dia-course:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: scale(1.02);
}

.menu-dia-course-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.menu-dia-course-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.menu-dia-course-header h4 {
    color: var(--amber-primary);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-dia-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1rem;
}

.menu-dia-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--amber-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-dia-option:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.option-bullet {
    color: var(--amber-primary);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.option-text {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

.menu-dia-course-info h4 {
    color: var(--amber-primary);
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-dia-course-info p {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

.menu-dia-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--amber-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    margin-left: 0.5rem;
}

.menu-dia-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    margin: 2rem 0;
}

.menu-dia-footer {
    background: rgba(10, 10, 10, 0.8);
    padding: 2rem 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.menu-dia-includes {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.menu-dia-include-item {
    color: var(--gray-light);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.menu-dia-include-item i {
    color: var(--amber-primary);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .menu-dia-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .menu-dia-price-box {
        margin-left: 0;
    }
    
    .menu-dia-content {
        padding: 2rem 1.5rem;
    }
    
    .menu-dia-course {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .menu-dia-course:hover {
        transform: none;
    }
    
    .menu-dia-includes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-dia-footer {
        padding: 1.5rem;
    }
}

.no-items {
    text-align: center;
    color: var(--gray-medium);
    padding: 3rem;
    font-size: 1.125rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    background: var(--black-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ==================== RESERVATIONS SECTION ==================== */
.reservations-section {
    background: var(--black-primary);
}

.reservations-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reservation-form {
    background: var(--black-soft);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--black-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--amber-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--black-medium);
    border: 2px solid var(--black-medium);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Info */
.contact-info {
    background: var(--black-soft);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--black-medium);
}

.contact-info h3 {
    color: var(--amber-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--amber-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.map-placeholder {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--black-medium);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--black-primary);
    border-top: 1px solid var(--black-medium);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-links h3,
.footer-social h3 {
    color: var(--amber-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-about p {
    color: var(--gray-medium);
    line-height: 1.8;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--black-soft);
    border: 2px solid var(--black-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--amber-primary);
    color: var(--black-primary);
    border-color: var(--amber-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--black-medium);
    color: var(--gray-medium);
    font-size: 0.875rem;
}

/* ==================== NAV DRAWER ==================== */
.nav-drawer-header {
    display: none !important;
}

.nav-drawer-footer {
    display: none !important;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Nav link icons - hide on desktop */
.main-nav a i {
    display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    /* Hamburger → X animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--black-soft);
        padding: 0;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        display: flex;
        flex-direction: column;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-drawer-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        flex-shrink: 0;
    }
    
    .nav-drawer-title {
        font-family: var(--font-primary);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--amber-primary);
    }
    
    .nav-drawer-close {
        background: none;
        border: none;
        color: var(--gray-light);
        font-size: 1.25rem;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;
    }
    
    .nav-drawer-close:hover {
        color: var(--amber-primary);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        flex: 1;
    }
    
    .main-nav a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .main-nav a i {
        display: inline-block !important;
        width: 20px;
        text-align: center;
        color: var(--amber-primary);
    }
    
    .nav-drawer-footer {
        display: block !important;
        padding: 1.25rem 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        flex-shrink: 0;
    }
    
    .nav-drawer-footer p {
        color: var(--gray-medium);
        font-size: 0.8125rem;
        margin: 0 0 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-drawer-footer p:last-child {
        margin-bottom: 0;
    }
    
    .nav-drawer-footer i {
        color: var(--amber-primary);
        width: 16px;
        text-align: center;
    }
    
    .about-grid,
    .reservations-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-dots {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}
