 :root {
    --gold: #c5a059;
    --dark: #1a1a1a;
    --light-bg: #fdfcfb;
    --text-muted: #666;
    --white: #ffffff;
}

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

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

/* NAVBAR LUXURY */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: transparent;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    font-size: 24px;
    color: var(--white);
}

.logo span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    text-align: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-nav {
    background: var(--gold);
    padding: 12px 25px;
    border-radius: 0px; /* Bordes rectos dan sensación de premium/seriedad */
}

/* HERO SECTION */
.hero-premium {
    height: 100vh;
    background: url("../assets/fondo/FONDO1.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* Oscurece la imagen para que el texto resalte */
}

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

.subtitle {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.italic { font-style: italic; }

.hero-content p {
    font-weight: 200;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* BUTTONS */
.btn-gold {
    background: var(--gold);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    display: inline-block;
    margin-right: 15px;
    transition: 0.4s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.btn-outline {
    border: 1px solid var(--white);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    display: inline-block;
    transition: 0.4s;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

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

/* SERVICES SECTION */
.services-luxury {
    padding: 100px 8%;
    background: var(--white);
}

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

.section-title span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-top: 10px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-card {
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.s-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    filter: grayscale(40%);
    transition: 0.5s;
}

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

.s-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.s-card p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h2 { font-size: 40px; }
}

/* Ajuste de tipografía para los párrafos de salón */
.services-luxury p {
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* Efecto de hover más dinámico para las fotos de salón */
.s-card:hover .s-img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.cta-final {
    padding: 100px 8%;
    background-color: #fdfcfb; /* Un crema muy suave para diferenciarlo del blanco puro */
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    text-align: center;
}

.cta-container {
    max-width: 600px;
}

.cta-final h3 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-final p {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 40px; /* Espacio antes del botón */
}

.cta-final .btn-gold {
    display: inline-block; /* Importante para que el padding funcione bien */
    padding: 18px 45px;
    background-color: #c5a059;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-final .btn-gold:hover {
    background-color: #ab8b4a;
    transform: translateY(-3px); /* Pequeño efecto de elevación */
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Color de acento para enlaces de salón */
.nav-links a:hover {
    color: var(--gold);
}
