/* =========================================
   VARIABLES: PALETA HAMPTONS / COASTAL
   ========================================= */
:root {
    --gold: #C5A059;
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #F1D592 100%);
    --coastal-blue: #4A6274; /* Azul pizarra elegante */
    --cream-bg: #F8F5F2;    /* Fondo sofisticado */
    --pure-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET Y BASES
   ========================================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background-color: var(--cream-bg);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 400;
    color: var(--coastal-blue);
}

.section-padding { 
    padding: 120px 8%; 
    text-align: center; 
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* =========================================
   HERO SECTION (FRESCO & PREMIUM)
   ========================================= */
.hero {
    height: 100vh;
    background: url('assets/img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Brillo solar */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.85); /* Efecto Glassmorphism claro */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.logo-hero { 
    width: 220px; 
    margin-bottom: 30px;
    /* Si el logo es oscuro, esto lo hace ver impecable */
}

.hero h1 { 
    font-size: clamp(2.2rem, 5vw, 3.8rem); 
    margin-bottom: 25px; 
    line-height: 1.1; 
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* =========================================
   BOTÓN WHATSAPP (ESTILO BOUTIQUE)
   ========================================= */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--coastal-blue);
    color: var(--pure-white);
    padding: 20px 45px;
    border-radius: 0; /* Bordes rectos = más arquitectónico y luxury */
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid var(--coastal-blue);
}

.btn-whatsapp:hover {
    background: transparent;
    color: var(--coastal-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 98, 116, 0.2);
}

/* =========================================
   CARRUSEL DE SERVICIOS
   ========================================= */
.carousel-wrapper { 
    position: relative; 
    margin-top: 60px; 
}

.carousel-container {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.service-card {
    min-width: 380px;
    background: var(--pure-white);
    position: relative;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-card img { 
    width: 100%; 
    height: 480px; 
    object-fit: cover; 
    filter: sepia(10%) contrast(1.05); /* Look editorial de revista */
    transition: var(--transition); 
}

.card-info { 
    padding: 30px; 
    text-align: left; 
}

.card-info h3 { 
    color: var(--gold); 
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Controles carrusel */
.carousel-controls { 
    margin-top: 40px; 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-btn:hover { 
    background: var(--gold); 
    color: var(--pure-white); 
}

/* =========================================
   GASTRONOMÍA GRID (LIMPIO & MODERNO)
   ========================================= */
.gastronomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.gastro-item {
    background: var(--pure-white);
    padding-bottom: 30px;
}

.gastro-img-container { 
    overflow: hidden; 
    height: 350px; 
    margin-bottom: 25px; 
}

.gastro-img-container img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease;
}

.gastro-item:hover img { transform: scale(1.08); }

.gastro-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonials {
    background-color: var(--pure-white);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.gold-icon {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.client-name {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
}

/* =========================================
   FOOTER (EL CIERRE DE CLASE)
   ========================================= */
.footer {
    background: var(--coastal-blue);
    color: var(--pure-white);
    padding: 100px 8% 50px;
    text-align: center;
}

.logo-footer { 
    width: 180px; 
    margin-bottom: 40px; 
    filter: brightness(0) invert(1); /* Hace que el logo sea blanco puro */
}

.footer h3 {
    color: var(--pure-white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.social-links { margin: 30px 0; }

.social-links a { 
    color: var(--pure-white); 
    font-size: 1.8rem; 
    margin: 0 20px; 
    transition: var(--transition); 
    opacity: 0.8;
}

.social-links a:hover { opacity: 1; transform: scale(1.1); }

.copy { 
    margin-top: 50px; 
    font-size: 0.75rem; 
    opacity: 0.6; 
    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .section-padding { padding: 80px 5%; }
    .hero h1 { font-size: 2.5rem; }
    .hero-content { padding: 40px 20px; }
    .service-card { min-width: 300px; }
}
