/* ============================================
   AURA THAI TOUCH - ESTILOS PRINCIPALES
   ============================================ */

/* Variables CSS */
:root {
    --gold-light: #D4A24C;
    --gold-dark: #8F5E20;
    --black: #000000;
    --dark-bg: #1A1A1A;
    --dark-nav: #0D0D0D;
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --bs-secondary-color: rgb(171, 122, 50);
    --bs-dark-rgb: rgb(171, 122, 50);
    --gold-gradient: linear-gradient(135deg, #D4A24C 0%, #8F5E20 100%);
}

/* ============================================
   TIPOGRAFÍAS Y BASE
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0c454;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */

.bg-dark-nav {
    background-color: var(--dark-nav) !important;
    border-bottom: 2px solid var(--gold-light);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold-light) !important;
}

.logo-nav {
    height: 95px;
    width: auto;
}

.brand-text {
    display: none;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-light);
    transition: width 0.3s ease;
}

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

.btn-call, .btn-call-mobile {
    background-color: var(--gold-light);
    color: var(--black) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-call:hover, .btn-call-mobile:hover {
    background-color: #f0c454;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 162, 76, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/img/masaje_tailandes_cabina_relax_luz_calida.webp') center/cover no-repeat;
    filter: grayscale(20%) blur(3px);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.hero-logo {
    width: 300px;
    max-width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) brightness(1.2) contrast(1.1);
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-primary-gold {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 162, 76, 0.4);
}

.btn-secondary-gold {
    background-color: transparent;
    color: var(--gold-light);
    padding: 1rem 2rem;
    font-weight: 600;
    border: 2px solid var(--gold-light);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary-gold:hover {
    background-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================================
   SECCIONES PRINCIPALES
   ============================================ */

section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1rem auto 0;
}

.text-gold {
    color: var(--gold-light);
}

.bg-dark-footer {
    background-color: var(--dark-nav);
    border-top: 2px solid var(--gold-light);
}

/* ============================================
   TARJETAS DE SERVICIOS
   ============================================ */

.service-card {
    background-color: var(--dark-nav);
    border: 1px solid var(--gold-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(212, 162, 76, 0.3);
    border-color: #f0c454;
}

.service-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* ============================================
   BOTONES GENERALES
   ============================================ */

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 162, 76, 0.4);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
}

/* ============================================
   TABLAS DE PRECIOS
   ============================================ */

.price-table {
    background-color: var(--dark-nav);
    border: 1px solid var(--gold-light);
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid var(--gold-dark);
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gold-light);
    text-align: center;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background-color: rgba(212, 162, 76, 0.1);
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* ============================================
   GALERÍA
   ============================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* ============================================
   FORMULARIOS
   ============================================ */

.form-control {
    background-color: var(--dark-nav);
    border: 1px solid var(--gold-light);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background-color: var(--dark-nav);
    color: var(--text-light);
    border-color: #f0c454;
    box-shadow: 0 0 0 0.2rem rgba(212, 162, 76, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ============================================
   ANIMACIONES
   ============================================ */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   SECCIÓN ABOUT US (QUIÉNES SOMOS)
   ============================================ */

.about-section {
    padding: 6rem 0;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-container h2 {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.about-image-wrapper {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.about-image-wrapper img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin: 2rem 0;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background-color: rgba(212, 162, 76, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold-light);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(212, 162, 76, 0.1);
    transform: translateY(-5px);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-item i {
    margin-right: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.about-cta {
    margin: 3rem 0;
}

/* ============================================
   MAPA Y SECCIÓN CONTACTO
   ============================================ */

.contact-section {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    border: 2px solid var(--gold-light);
    width: 100%;
    max-width: 550px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-block {
    background-color: rgba(212, 162, 76, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold-light);
    text-align: left;
}

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.phone-list p,
.hours-list p {
    margin-bottom: 1rem;
}

.phone-list p:last-child,
.hours-list p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-actions {
    margin-top: 2rem;
}

.contact-actions .btn {
    font-weight: 600;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* ============================================
   MAPA
   ============================================ */

/* ============================================
   FOOTER ESPECÍFICO
   ============================================ */

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-legal {
    font-size: 0.85rem;
}

.footer-credit {
    font-size: 0.85rem;
}

.footer-credit a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--gold-light);
}

/* ============================================
   SELECTOR DE IDIOMA EN NAVBAR
   ============================================ */

.nav-lang-switcher {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--gold-light);
    background-color: rgba(212, 162, 76, 0.05);
    transition: all 0.3s ease;
}

.lang-btn-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
    background-color: transparent;
    border: 2px solid transparent;
    text-decoration: none;
}

.lang-btn-nav:hover {
    background-color: rgba(212, 162, 76, 0.2);
    transform: scale(1.05);
}

.lang-btn-nav.active {
    background-color: var(--gold-light);
    color: var(--black);
    font-weight: 700;
}

.lang-btn-nav span {
    display: block;
    line-height: 1;
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #20ba61);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    animation: whatsapp-pulse 0.6s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.9);
    }
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ============================================
   UTILIDADES
   ============================================ */

.container-lg {
    max-width: 1200px;
}

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

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Accesibilidad */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold-light);
    color: var(--black);
    padding: 0.5rem;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
