/* =========================================
   LUMIÈRE - ESTILO BEAUTY
   ========================================= */

:root {
    --primary: #d4a5a5;
    /* Rose Gold */
    --dark: #222222;
    --light: #fdfdfd;
    --text: #555555;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    color: var(--dark);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
}

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

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

/* --- NAVBAR --- */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    letter-spacing: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-book-nav {
    background: var(--dark);
    color: white;
    padding: 10px 25px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-book-nav:hover {
    background: var(--primary);
}

/* --- HERO --- */
.hero {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: bold;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-gold {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 2px;
    transition: 0.3s;
    border: 1px solid var(--primary);
}

.btn-gold:hover {
    background: transparent;
    color: white;
}

/* --- INTRO --- */
.section-intro {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

.brands {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #ccc;
    font-weight: bold;
    letter-spacing: 2px;
    flex-wrap: wrap;
}

/* --- MENÚ DE SERVICIOS --- */
.section-menu {
    padding: 80px 0;
    background: #faf5f5;
    /* Rosa muy pálido */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.menu-col h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 1.8rem;
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.p-info strong {
    display: block;
    color: var(--dark);
    font-family: 'Cinzel';
    font-size: 1.1rem;
}

.p-info span {
    font-size: 0.85rem;
    color: #888;
}

.p-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    border: 1px solid var(--dark);
    color: var(--dark);
    padding: 12px 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

/* --- GALERÍA --- */
.section-gallery {
    padding: 80px 0;
    background: var(--white);
}

.ig-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.ig-header i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.3s;
    filter: grayscale(20%);
}

.gallery-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* --- CONTACTO --- */
.section-contact {
    padding: 80px 0;
    background: var(--dark);
    color: white;
}

.contact-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-text p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-text i {
    color: var(--primary);
    margin-right: 10px;
}

.hours {
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 20px;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.map-box {
    width: 100%;
    height: 300px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 1px solid #444;
}

/* --- FOOTER --- */
.footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* --- WHATSAPP --- */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: 0.3s;
}

.float-wa:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .menu-grid,
    .contact-flex {
        grid-template-columns: 1fr;
    }

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