:root {
    --thai-maroon: #6e0d0d;
    --thai-maroon-dark: #4a0909;
    --thai-gold-base: #d4af37;
    --thai-gold-light: #f7e5b5;
    --thai-dark-brown: #2d1b18;
    --thai-cream: #fef9e7;
    --thai-gray: #f8f9fa;
    --glass-bg: rgba(45, 27, 24, 0.85);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--thai-dark-brown);
    background-color: var(--thai-gray);
}

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

/* Header y Navegación */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--thai-gold-base);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.logo-img {
    height: 60px;
    /* Reduced height for header */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

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

.satisfaction {
    background: rgba(212, 175, 55, 0.15);
    color: var(--thai-gold-light);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 10px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--thai-gold-base);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--thai-cream);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--thai-gold-base);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-btn:hover::after,
.nav-btn.active::after {
    transform: scaleX(1);
}

.nav-btn:hover,
.nav-btn.active {
    color: var(--thai-gold-base);
}

.cta-btn {
    background: linear-gradient(135deg, var(--thai-maroon) 0%, var(--thai-maroon-dark) 100%);
    color: var(--thai-gold-light);
    border: 1px solid var(--thai-gold-base);
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(110, 13, 13, 0.4);
    background: linear-gradient(135deg, var(--thai-maroon-dark) 0%, var(--thai-maroon) 100%);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

a.cta-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.cta-btn--outline {
    background: transparent;
    color: var(--thai-gold-light);
    border: 1px solid var(--thai-gold-base);
}

.cta-btn--outline:hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(160, 82, 45, 0.9) 100%),
        url('images/platos/tom_yum_gong.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.lantern {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFB6C1;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.satisfaction-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-cta {
    background: linear-gradient(135deg, #B8336A 0%, #C73E1D 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

a.hero-cta {
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.hero-cta--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.hero-cta--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Secciones */
.ofertas,
.experiencia,
.reservas-section,
.visitanos {
    padding: 80px 0;
}

/* Anclas: compensar cabecera fija al hacer scroll desde el menú */
section[id] {
    scroll-margin-top: 96px;
}

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

.section-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--thai-maroon);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.15rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* Ofertas Especiales */
.ofertas {
    background: white;
}

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

.oferta-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.oferta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.oferta-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.oferta-card h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.precio {
    font-size: 2.5rem;
    color: var(--thai-maroon);
    font-weight: 700;
    margin-bottom: 10px;
}

.horario {
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.menu-items {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.menu-items li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.menu-items li:last-child {
    border-bottom: none;
}

.oferta-highlight {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    color: #8B4513;
    font-size: 0.9rem;
}

.ver-carta-btn {
    background: var(--thai-dark-brown);
    color: var(--thai-gold-base);
    border: 1px solid var(--thai-gold-base);
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 40px auto 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ver-carta-btn:hover {
    background: var(--thai-gold-base);
    color: var(--thai-dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Experiencia Auténtica */
.experiencia {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.experiencia-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 25px;
    font-weight: 700;
}

.experiencia-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #B8336A;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.features {
    list-style: none;
}

.features li {
    padding: 8px 0;
    font-size: 1.1rem;
    color: #666;
}

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

.experiencia-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Reservas (iframe embed) */
.reservas-section {
    background: var(--thai-cream);
}

.reservas-embed-wrap {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(45, 27, 24, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.35);
    background: #fff;
}

/* Sin width/height en HTML el iframe usa ~300px por defecto (especificación HTML) */
.reservas-embed-wrap iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    min-height: 760px;
    height: 860px;
    border: 0;
    vertical-align: top;
}

.reservas-section.reservas-page {
    padding-top: 120px;
    padding-bottom: 60px;
}

.reservas-back-link {
    text-align: center;
    margin-top: 1.5rem;
}

.reservas-back-link a {
    color: var(--thai-maroon);
    font-weight: 600;
    text-decoration: none;
}

.reservas-back-link a:hover {
    text-decoration: underline;
}

/* Visítanos */
.visitanos {
    background: white;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h3 {
    color: #8B4513;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

.mapa {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.mapa h3 {
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 600;
}

.mapa-placeholder {
    background: #e9ecef;
    border-radius: 10px;
    padding: 40px;
    color: #666;
}

.cta-btn-large {
    background: linear-gradient(135deg, #B8336A 0%, #C73E1D 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--thai-dark-brown);
    color: var(--thai-cream);
    padding: 80px 0 40px;
    border-top: 4px solid var(--thai-gold-base);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    line-height: 1.8;
    color: var(--thai-cream);
    opacity: 0.8;
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--thai-gold-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: var(--thai-cream);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--thai-gold-base);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background: var(--thai-dark-brown);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }

    .nav-active .nav-menu {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hamburger Animation */
    .nav-active .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

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

    .nav-btn {
        font-size: 1.5rem;
    }

    .header .header-cta-group {
        display: none;
        /* En móvil los CTA están en el hero */
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .satisfaction {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .ofertas-grid {
        grid-template-columns: 1fr;
    }

    .experiencia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ofertas-grid {
        grid-template-columns: 1fr;
    }

    .oferta-card {
        margin: 0 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}