/* =========================================
   VARIABLES Y ESTILOS GLOBALES
   ========================================= */
:root {
    --main-pink: #f1d8d4; /* Color rosa suave de la imagen */
    --accent-pink: #d4a5b2;
    --dark-text: #333333;
    --white: #ffffff;
    --light-pink: #fdfafb;
    --gold: #c5a059;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Montserrat', sans-serif; color: var(--dark-text); line-height: 1.6; overflow-x: hidden; }

/* HEADER */
header { position: fixed; width: 100%; background: rgba(255, 255, 255, 0.98); z-index: 1000; padding: 10px 0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.header-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo-img { height: 60px; border-radius: 50%; }

.header-right { display: flex; align-items: center; }
nav a { text-decoration: none; color: var(--dark-text); margin-left: 20px; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.language-switcher { margin-left: 30px; display: flex; gap: 10px; }
.lang-btn { background: none; border: none; font-weight: 500; cursor: pointer; font-size: 14px; color: #999; }
.lang-btn.active { color: var(--accent-pink); border-bottom: 2px solid var(--accent-pink); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; margin: 5px; background: var(--dark-text); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; width: 100%; background: #fff; padding: 20px; z-index: 999; text-align: center; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 15px; text-decoration: none; color: var(--dark-text); font-weight: 600; text-transform: uppercase; border-bottom: 1px solid #eee; }
.mobile-language-switcher { padding-top: 20px; }

/* HERO - 50/50 ESTILO PROFESIONAL */
.hero { height: 100vh; width: 100%; display: flex; padding-top: 80px; }
.hero-container { display: flex; width: 100%; height: 100%; flex-wrap: wrap; }

.hero-image-side { flex: 1; min-width: 50%; height: 100%; overflow: hidden; }
.hero-image-side img { width: 100%; height: 100%; object-fit: cover; }

.hero-text-side { flex: 1; min-width: 50%; background-color: var(--main-pink); display: flex; justify-content: center; align-items: center; text-align: center; padding: 40px; }

.hero-welcome { margin-bottom: 30px; }
.line-small { display: block; font-size: 2rem; color: #fff; font-weight: 300; letter-spacing: 4px; }
.line-script { font-family: 'Ephesis', cursive; display: block; font-size: 7.5rem; color: #fff; line-height: 0.7; margin: 15px 0; text-transform: none; }
.line-large { display: block; font-size: 3.5rem; color: #fff; font-weight: 600; letter-spacing: 2px; }

.cta-button-hero { 
    margin-top: 30px; display: inline-block; padding: 16px 45px; 
    border: 1px solid #fff; color: #fff; text-decoration: none; 
    font-weight: 600; letter-spacing: 3px; transition: 0.3s;
}
.cta-button-hero:hover { background: #fff; color: var(--accent-pink); }

/* SECCIONES TITULOS */
.section-title { text-align: center; font-family: 'Andada Pro', serif; font-size: 2.5rem; margin: 60px 0 40px; }
.gold-text { color: var(--gold); font-style: italic; }

/* GALERIA (Igual a tu original) */
.gallery { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.gallery-image, .gallery-video { width: 100%; height: 350px; object-fit: cover; border-radius: 5px; }

/* SERVICIOS */
.services { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.services-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.service-tab { background: white; border: 1px solid #eee; padding: 12px 25px; border-radius: 30px; cursor: pointer; transition: 0.3s; font-family: 'Montserrat', sans-serif; font-weight: 500; }
.service-tab.active { background: var(--accent-pink); color: white; border-color: var(--accent-pink); }
.service-content { display: none; }
.service-content.active { display: block; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.service-card { background: var(--light-pink); padding: 30px; border-radius: 8px; border: 1px solid #eee; text-align: center; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { font-family: 'Andada Pro', serif; color: var(--accent-pink); margin-bottom: 15px; }
.highlight { font-weight: 500; margin-top: 15px; color: #888; font-size: 13px; }

/* ABOUT & OTROS */
.about { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.about-content { display: flex; align-items: center; gap: 40px; }
.about-img { width: 100%; max-width: 450px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 20px 0; }

footer { background: #1a1a1a; color: #fff; padding: 50px 20px; text-align: center; }
.floating-book-btn { position: fixed; bottom: 20px; right: 20px; background: var(--accent-pink); color: #fff; padding: 15px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 999; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-right { display: none; }
    .menu-toggle { display: block; }
    .hero-container { flex-direction: column; }
    .hero-image-side, .hero-text-side { min-width: 100%; height: 50vh; }
    .line-script { font-size: 5rem; }
    .line-large { font-size: 2.2rem; }
    .about-content { flex-direction: column; text-align: center; }
}

/* =========================================
   ESTILOS PARA LA SECCIÓN DE UBICACIÓN
   ========================================= */

/* Contenedor principal de la sección */
.location {
    padding: 100px 20px; /* Espaciado superior e inferior generoso */
    background-color: var(--white); /* Fondo blanco para limpieza */
    max-width: 1200px; /* Ancho máximo para que no se estire demasiado en PC */
    margin: 0 auto; /* Centrado en la pantalla */
}

/* Título de la sección "Nuestra Ubicación" */
.location .section-title {
    font-family: 'Andada Pro', serif; /* Tipografía elegante con serifa */
    font-size: 2.8rem; /* Tamaño grande y legible */
    text-align: center; /* Centrado */
    margin-bottom: 60px; /* Espacio con la tarjeta inferior */
    color: var(--dark-text); /* Color de texto principal */
}

/* Palabra "Ubicación" en dorado e itálica */
.location .section-title .gold-text {
    color: var(--gold); /* Color dorado de tus variables */
    font-style: italic; /* Itálica para elegancia */
    font-weight: 400; /* Peso normal para no saturar */
}

/* Tarjeta que contiene la información de ubicación */
.location-card {
    background-color: var(--light-pink); /* Fondo rosa muy suave de tus variables */
    padding: 60px; /* Espaciado interno grande para que "respire" la info */
    border-radius: 15px; /* Bordes redondeados suaves */
    text-align: center; /* Todo el texto centrado */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Sombra muy sutil para dar profundidad */
    border: 1px solid rgba(212, 165, 178, 0.1); /* Borde rosa casi invisible */
    max-width: 800px; /* Ancho máximo de la tarjeta */
    margin: 0 auto; /* Centrada */
}

/* Nombre "Secret Lashes" dentro de la tarjeta */
.location-card h3 {
    font-family: 'Andada Pro', serif; /* Misma tipografía que títulos */
    font-size: 2rem; /* Tamaño mediano */
    color: var(--accent-pink); /* Color rosa acento de tus variables */
    margin-bottom: 10px; /* Espacio inferior */
    letter-spacing: 1px; /* Ligero espaciado entre letras */
}

/* Ciudad "National City, CA" */
.location-card .location-city {
    font-weight: 600; /* Texto en negrita sutil */
    font-size: 1.1rem; /* Un poco más grande que el texto base */
    margin-bottom: 5px; /* Espacio inferior */
    color: var(--dark-text); /* Color de texto principal */
}

/* Texto "Ubicados sobre Highland Avenue" y otros textos base */
.location-card p {
    font-family: 'Montserrat', sans-serif; /* Tipografía sans-serif limpia */
    font-weight: 400; /* Peso normal */
    color: #666; /* Gris medio para no cansar la vista */
    margin-bottom: 20px; /* Espacio inferior */
}

/* Contenedor de los iconos 📍 y 🅿️ */
.location-info {
    margin: 40px 0; /* Espaciado superior e inferior grande */
    display: flex; /* Usamos flexbox para alinear */
    flex-direction: column; /* Alineación vertical */
    gap: 15px; /* Espacio entre los dos elementos */
    align-items: center; /* Centrado horizontalmente */
}

/* Estilo para los textos con iconos */
.location-info p {
    margin-bottom: 0; /* Eliminamos el margen por defecto */
    display: flex; /* Flex para alinear icono y texto */
    align-items: center; /* Centrado vertical */
    gap: 10px; /* Espacio entre icono y texto */
    font-size: 1rem; /* Tamaño base */
}

/* Texto en negrita con icono "📍 Estudio Privado..." y "🅿️ Estacionamiento..." */
.location-info strong {
    font-weight: 600; /* Negrita */
    color: var(--dark-text); /* Color más oscuro */
}

/* Texto descriptivo "Diseñado para que cada clienta..." */
.location-info p[data-i18n="location_private_desc"] {
    font-weight: 300; /* Más delgado */
    font-size: 0.95rem; /* Un poco más pequeño */
    color: #888; /* Gris más claro */
    margin-top: -10px; /* Ajuste para pegarlo al título anterior */
    margin-bottom: 15px; /* Espacio inferior */
}

/* Nota itálica "Para mayor privacidad y seguridad..." */
.location-card .italic-text {
    font-style: italic; /* Texto en itálica */
    font-weight: 300; /* Más delgado */
    color: #999; /* Gris claro */
    font-size: 0.9rem; /* Pequeño */
    max-width: 600px; /* Ancho máximo para que no se estire */
    margin: 0 auto 30px; /* Centrado y espacio inferior */
    line-height: 1.5; /* Interlineado cómodo */
}

/* Divisor dorado sutil */
.location-card .divider {
    width: 60px; /* Ancho corto */
    height: 2px; /* Grosor delgado */
    background-color: var(--gold); /* Color dorado */
    margin: 30px auto; /* Centrado y espacio superior/inferior */
    opacity: 0.5; /* Semitransparente */
}

/* Botón "Agendar Cita Ahora" */
.location-card .cta-button {
    background-color: var(--accent-pink); /* Fondo rosa acento */
    color: var(--white); /* Texto blanco */
    font-family: 'Montserrat', sans-serif; /* Tipografía limpia */
    font-weight: 600; /* Negrita */
    text-transform: uppercase; /* Todo mayúsculas */
    letter-spacing: 2px; /* Espaciado entre letras para look premium */
    padding: 18px 40px; /* Espaciado interno grande */
    border-radius: 5px; /* Bordes ligeramente redondeados */
    text-decoration: none; /* Sin subrayado */
    font-size: 13px; /* Tamaño de fuente pequeño */
    transition: all 0.3s ease; /* Transición suave para hover */
    box-shadow: 0 5px 15px rgba(212, 165, 178, 0.3); /* Sombra rosa sutil */
    border: none; /* Sin borde */
}

/* Efecto hover del botón */
.location-card .cta-button:hover {
    background-color: var(--main-pink); /* Cambia a rosa más suave */
    transform: translateY(-2px); /* Se eleva ligeramente */
    box-shadow: 0 8px 20px rgba(212, 165, 178, 0.4); /* Sombra más pronunciada */
}

/* =========================================
   RESPONSIVE (Ajustes para Móviles)
   ========================================= */
@media (max-width: 768px) {
    .location {
        padding: 60px 20px; /* Menos espaciado en móviles */
    }

    .location .section-title {
        font-size: 2.2rem; /* Título más pequeño */
        margin-bottom: 40px; /* Menos espacio */
    }

    .location-card {
        padding: 40px 20px; /* Menos espaciado interno */
    }

    .location-card h3 {
        font-size: 1.7rem; /* Texto más pequeño */
    }

    .location-card .cta-button {
        padding: 15px 30px; /* Botón más pequeño */
        font-size: 12px; /* Texto más pequeño */
        width: 100%; /* Botón ancho completo en móviles */
        display: block; /* Ocupa todo el ancho */
    }
}

/* =========================================
   SECCIÓN ABOUT (ESTILO LUXURY)
   ========================================= */
.about {
    padding: 120px 20px; /* Mucho aire para que se sienta premium */
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; /* Separación clara entre imagen y texto */
}

/* Contenedor de la imagen con detalle decorativo */
.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Marco decorativo detrás de la foto (como en marcas de lujo) */
.about-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-pink);
    top: 20px;
    left: 20px;
    z-index: 0;
    border-radius: 10px;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Lado del texto */
.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-family: 'Andada Pro', serif;
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text .gold-text {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

/* Línea divisoria minimalista */
.about-text .divider {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin: 25px 0;
}

/* Párrafos elegantes */
.about-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-weight: 300; /* Peso ligero para más elegancia */
}

/* Frase destacada */
.about-text .gold-strong {
    color: var(--dark-text);
    font-weight: 600;
    border-left: 3px solid var(--accent-pink);
    padding-left: 15px;
    display: block;
    margin: 30px 0;
    font-size: 1.1rem;
}

/* Adaptación para móviles */
@media (max-width: 992px) {
    .about {
        padding: 80px 20px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-image::before {
        display: none; /* Quitamos el marco en móvil para evitar descuadres */
    }

    .about-text .divider {
        margin: 25px auto;
    }

    .about-text .gold-strong {
        border-left: none;
        border-top: 2px solid var(--accent-pink);
        padding: 15px 0 0 0;
    }
}

/* =========================================
   HERO SECTION (MÁS VIVA Y ENÉRGICA)
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Espacio para el header fixed */
    
    /* CAMBIO: Degradado sutil para dar más vida al fondo */
    background: linear-gradient(135deg, #fdfafb 0%, #f1d8d4 100%); 
}

.hero-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-image-side {
    flex: 1;
    overflow: hidden;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-side {
    flex: 1;
    /* Eliminamos el background-color fijo para usar el degradado del padre */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.hero-message {
    /* Contenedor para aplicar la animación a todo el bloque de texto */
    animation: fadeInUp 1s ease-out; 
}

.hero-welcome {
    margin-bottom: 40px;
}

.line-small {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-text); /* Texto oscuro para contraste */
    letter-spacing: 3px;
    text-transform: none;
}

.line-script {
    font-family: 'Ephesis', cursive;
    display: block;
    font-size: 8rem;
    color: var(--accent-pink); /* Rosa acento para que resalte */
    line-height: 0.7;
    margin: 20px 0;
    text-transform: none;
    
    /* NUEVO: Sombra suave para dar profundidad */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1); 
}

.line-large {
    display: block;
    font-size: 4rem;
    font-weight: 600;
    color: var(--dark-text);
    letter-spacing: 2px;
    text-transform: none;
}

.cta-button-hero {
    display: inline-block;
    padding: 18px 50px;
    
    /* CAMBIO: Botón con fondo rosa para más energía */
    background-color: var(--accent-pink); 
    color: var(--white);
    
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(212, 165, 178, 0.4);
}

.cta-button-hero:hover {
    background-color: var(--dark-text); /* Contraste fuerte en hover */
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* =========================================
   ANIMACIONES (KEYFRAMES)
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE (Ajustes para Móviles)
   ========================================= */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-image-side {
        height: 40vh;
    }
    
    .hero-text-side {
        height: 60vh;
        padding: 30px;
    }
    
    .line-script {
        font-size: 5.5rem;
    }
    
    .line-large {
        font-size: 2.5rem;
    }
}

/* =========================================
   ANIMACIONES ELEGANTES PARA EL HERO
   ========================================= */

.hero-message {
    /* Quitamos la animación genérica anterior para aplicarla línea por línea */
    animation: none; 
}

.hero-welcome span {
    opacity: 0; /* Empezamos invisibles para la animación */
    animation: luxuryFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Retrasos para el efecto escalonado (Staggered) */
.line-small {
    animation-delay: 0.2s !important;
}

.line-script {
    animation-delay: 0.6s !important;
    /* Un pequeño brillo al aparecer */
    text-shadow: 0 0 15px rgba(212, 165, 178, 0.2); 
}

.line-large {
    animation-delay: 1s !important;
}

.hero-buttons {
    opacity: 0;
    animation: luxuryFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.4s;
}

/* Definición de la animación de Lujo */
@keyframes luxuryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) skewY(2deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
        filter: blur(0);
    }
}

/* Efecto sutil de "respiración" para la palabra Lash (hace que se vea viva) */
.line-script {
    animation: luxuryFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards, 
               gentleGlow 4s ease-in-out infinite alternate 1.8s !important;
}

@keyframes gentleGlow {
    from { text-shadow: 0 0 10px rgba(212, 165, 178, 0.1); }
    to { text-shadow: 0 0 25px rgba(212, 165, 178, 0.4); }
}