﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --primary-color: #2c2b29; /* Charcoal for high contrast but soft */
    --secondary-color: #bfa693; /* Warm taupe / nude */
    --bg-color: #fcfbfa; /* Warm off-white */
    --text-color: #4a4a4a; /* Softer text */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-color);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-heading);
    color: var(--primary-color); 
    line-height: 1.2; 
    margin-bottom: 1.5rem; 
    font-weight: 400; 
}

h1 { font-size: 4.5rem; letter-spacing: -1px; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }

p { margin-bottom: 1.5rem; font-size: 0.95rem; }

a { color: var(--primary-color); text-decoration: none; transition: color 0.4s ease; }
a:hover { color: var(--secondary-color); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 3rem; }
.bg-light { background-color: #f5f3f0; }
.subtitle { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; color: var(--secondary-color); margin-bottom: 1rem; display: block; }

/* Header - Editorial Style */
.header { background: transparent; padding: 25px 0; position: absolute; width: 100%; top: 0; z-index: 100; }
.header.scrolled { background: rgba(252, 251, 250, 0.95); position: fixed; padding: 15px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.03); backdrop-filter: blur(5px); transition: all 0.4s ease; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-menu ul { display: flex; list-style: none; gap: 30px; }
.nav-menu a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary-color); font-weight: 400; }
/* Override para el header cuando está arriba (texto blanco porque hay video) */
.header:not(.scrolled) .nav-menu a { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.header:not(.scrolled) .logo { filter: brightness(0) invert(1); }
.header:not(.scrolled) .mobile-toggle { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* Buttons */
.btn { 
    display: inline-block; padding: 15px 35px; border: 1px solid var(--primary-color); 
    text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; 
    cursor: pointer; transition: all 0.4s ease; background: transparent; color: var(--primary-color);
}
.btn-primary { background-color: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.btn-primary:hover { background-color: transparent; color: var(--primary-color); }
.btn-secondary { background-color: transparent; color: var(--primary-color); border-color: var(--primary-color); }
.btn-secondary:hover { background-color: var(--secondary-color); color: #fff; border-color: var(--secondary-color); }

/* Hero Section with Video */
.hero { 
    position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: flex-start;
    text-align: left; overflow: hidden; background: #000;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.7; /* Oscurecemos un poco el video para leer bien el texto */
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px; text-align: left; margin-right: auto; margin-left: 5%; }
.hero h1 { font-size: 4.5rem; margin-bottom: 20px; font-style: italic; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero p { font-size: 1.1rem; color: #fff; margin-bottom: 40px; max-width: 600px; text-shadow: 0 1px 5px rgba(0,0,0,0.4); }
.hero-buttons { display: flex; flex-direction: column; align-items: flex-end; width: fit-content; gap: 15px; margin-left: 0; }

/* Sections */
.section { padding: 120px 0; }
.section-narrow { max-width: 700px; margin: 0 auto; text-align: center; }

/* Editorial Split Layout */
.split-layout { display: flex; align-items: center; gap: 80px; }
.split-layout.reverse { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-image { flex: 1; position: relative; }
.split-image img { width: 100%; height: auto; display: block; }
.image-offset { position: absolute; bottom: -40px; right: -40px; width: 60%; border: 10px solid var(--bg-color); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card { text-align: center; }
.card img { width: 100%; height: 450px; object-fit: cover; margin-bottom: 25px; filter: grayscale(20%); transition: filter 0.5s ease; }
.card:hover img { filter: grayscale(0%); }
.card h3 { font-size: 1.8rem; margin-bottom: 15px; }

/* Masonry Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.95);
}
.gallery-grid img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.check-list { list-style: none; margin-top: 25px; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-family: var(--font-heading); font-size: 1.3rem; font-style: italic; }
.check-list li::before { content: '—'; position: absolute; left: 0; color: var(--secondary-color); }

/* Reviews */
.review-card { background: var(--bg-color); padding: 50px 40px; border: 1px solid #eaeaea; text-align: center; }
.stars { color: var(--secondary-color); font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 5px; }
.review-card p { font-style: italic; font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.6; color: var(--primary-color); }
.review-card strong { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* FAQs */
.faq-accordion { max-width: 800px; margin: 0 auto; border-top: 1px solid #eaeaea; }
.faq-item { border-bottom: 1px solid #eaeaea; padding: 25px 0; }
.faq-question { width: 100%; background: none; border: none; text-align: left; font-size: 1.3rem; font-family: var(--font-heading); color: var(--primary-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.faq-question.active::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-top: 20px; margin-bottom: 0; }

/* Footer */
.footer { background: #000; color: #fff; padding: 100px 0 40px; text-align: center; }
.footer h3 { color: #fff; font-size: 2.5rem; margin-bottom: 30px; }
.footer a { color: var(--secondary-color); }
.footer a:hover { color: #fff; }
.footer-logo { margin-bottom: 40px; filter: invert(1); width: 360px; max-width: 90%; }
.footer-bottom { margin-top: 60px; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; letter-spacing: 1px; text-transform: uppercase; }

/* Responsive */
@media (max-width: 900px) {
    .split-layout, .split-layout.reverse { flex-direction: column; gap: 40px; }
    .grid-3 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .header { background: #fff; position: relative; padding: 15px 0; }
    .header:not(.scrolled) .nav-menu a { color: var(--primary-color); text-shadow: none; }
    .header:not(.scrolled) .logo { filter: none; }
    .header:not(.scrolled) .mobile-toggle { color: var(--primary-color); text-shadow: none; }
    
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 20px; }
    .mobile-toggle { display: inline-block; }
    .image-offset { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
/* Footer Gallery Strip */
.footer-gallery {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}
.footer-gallery img {
    flex: 1;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.85) grayscale(20%);
    transition: filter 0.4s ease;
}
.footer-gallery img:hover {
    filter: brightness(1) grayscale(0%);
}

@media (max-width: 900px) {
    .hide-mobile { display: none; }
    .footer-gallery img { height: 180px; }
}
@media (max-width: 500px) {
    .footer-gallery img:nth-child(4) { display: none; }
    .footer-gallery img:nth-child(3) { display: none; }
}
/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
    background: transparent;
    border-radius: 8px;
}
.footer-badges img {
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}
.footer-badges img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}
/* Ensure the gara-1 image isn't too large if it's a normal photo */
.footer-badges img[src*="gara-1"] {
    max-height: 120px;
    border-radius: 4px;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}
.btn-whatsapp svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: currentColor;
}



/* Accessibility & Mobile Fixes */
@media (max-width: 900px) {
    /* Larger typography for older audience */
    p { font-size: 1.15rem; line-height: 1.7; }
    .footer p { font-size: 1.1rem; }
    .hero p { font-size: 1.25rem; }
    h2 { font-size: 2.2rem; }
    
    /* Fix header CTA overflowing */
    .header-cta .btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        margin-right: 10px;
    }
    .header-cta {
        display: flex;
        align-items: center;
    }
    .logo img {
        width: 180px; /* slightly smaller logo to ensure fit */
    }

    /* Fix footer badges */
    .footer-badges img {
        max-height: 70px;
    }
    .footer-badges img[src*="gara-1"] {
        max-height: 90px;
    }
}


