/* style.css */
:root {
    --azul-profundo: #0B3B42;
    --turquesa: #1A6B6B;
    --verde-esmeralda: #2D6A4F;
    --verde-selva: #1E4620;
    --beige-arena: #E5D3B3;
    --dorado-suave: #C9A96E;
    --blanco-roto: #F9F6F0;
    --texto-oscuro: #1E2B2C;
    --sombra-suave: 0 8px 30px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--blanco-roto);
    color: var(--texto-oscuro);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--azul-profundo);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: #3A5A5A;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 16px;
}

/* Header & Navegación */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 24px;
}

/* Logo imagen */
.logo-img {
    height: 44px;
    width: auto;
    display: block;
    border-radius: 0 !important;
    object-fit: contain;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--azul-profundo);
}

.logo-highlight {
    color: var(--turquesa);
    font-style: italic;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-list a {
    text-decoration: none;
    color: #2C4A4A;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-list a:hover {
    color: var(--turquesa);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: #7A8C8C;
    transition: color 0.2s;
    padding: 2px 4px;
}

.lang-btn.active {
    color: var(--azul-profundo);
    border-bottom: 2px solid var(--dorado-suave);
}

.lang-divider {
    color: #ccc;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--azul-profundo);
    cursor: pointer;
}

/* Hero */
.hero-section {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(135deg, #0B3B42 0%, #1A6B6B 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,59,66,0.5) 0%, rgba(11,59,66,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: nowrap;
}

img.hero-logo {
    height: 315px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: unset !important;
    flex: 0 0 auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    display: block !important;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-text {
    text-align: left;
    flex: 0 1 auto;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.hero-highlight {
    display: block;
    color: #D4E9E2;
    font-style: italic;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-hero {
    background-color: rgba(255,255,255,0.9);
    color: var(--azul-profundo);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-hero:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About */
.grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img,
.about-video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--sombra-suave);
    border-radius: 16px;
    display: block;
    background: #000;
}

.about-text p {
    margin-bottom: 1.4rem;
    color: #2C4646;
}

.about-eco-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--verde-esmeralda);
    font-weight: 500;
    margin-top: 1.5rem;
    background: #E8F0EB;
    padding: 10px 18px;
    border-radius: 30px;
    width: fit-content;
}

/* Activities */
.activities-section {
    background-color: #F0F4F2;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.activity-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--sombra-suave);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-card:hover {
    transform: translateY(-6px);
}

.activity-icon {
    font-size: 2.6rem;
    color: var(--turquesa);
    margin-bottom: 1.2rem;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon-sm {
    font-size: 1.95rem;
}

.activity-img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 0;
    display: inline-block;
}

.activity-img-lg {
    width: 78px;
    height: 78px;
}

.logo {
    cursor: pointer;
}

.activity-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--azul-profundo);
}

.activity-card p {
    font-size: 0.9rem;
    color: #4A5E5E;
}

.activities-note {
    text-align: center;
    margin-top: 2.5rem;
    font-style: italic;
    color: var(--verde-esmeralda);
    font-weight: 500;
}

/* Info práctica */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.4rem;
    font-size: 1rem;
    color: #2C4646;
}

.info-list i {
    color: var(--turquesa);
    font-size: 1.3rem;
    margin-top: 3px;
}

.map-reference {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #3A5A5A;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Gallery — Instagram embeds */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.gallery-item {
    min-width: 0;
}

.gallery-item .instagram-media {
    margin: 0 !important;
    min-width: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden;
}

/* Reels / Videos section */
.reels-section {
    background: linear-gradient(135deg, #0B3B42 0%, #1A6B6B 100%);
}

.reels-section .section-title {
    color: var(--beige-arena);
}

.reels-section .section-subtitle {
    color: rgba(229, 211, 179, 0.8);
}

.reels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-items: center;
    align-items: start;
}

.reel-item {
    width: 100%;
    min-width: 0;
}

.reel-item .instagram-media {
    margin: 0 auto !important;
    min-width: unset !important;
    width: 100% !important;
    max-width: 540px !important;
    border-radius: 16px !important;
}

/* Testimonials */
.testimonials-section {
    background: #FAF8F5;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: white;
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: var(--sombra-suave);
    flex: 1 1 280px;
    max-width: 360px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.2rem;
    color: #2C4A4A;
}

.testimonial-author {
    font-weight: 600;
    color: var(--azul-profundo);
}

/* Contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    width: fit-content;
}

.instagram {
    background: #E1306C;
    color: white;
}

.whatsapp {
    background: #25D366;
    color: white;
}

.email-btn {
    background: var(--azul-profundo);
    color: white;
    font-size: 0.88rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--azul-profundo);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDE5E5;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    background: white;
}

.btn-submit {
    background: var(--azul-profundo);
    color: white;
}

.btn-submit:hover {
    background: #0E4C54;
}

.form-feedback {
    color: var(--verde-esmeralda);
    font-size: 0.9rem;
}

/* Footer */
.main-footer {
    background: var(--azul-profundo);
    color: #C4DAD6;
    padding: 3rem 0 1.8rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #B9D2CD;
    text-decoration: none;
}

.footer-eco {
    font-style: italic;
    margin: 1rem 0;
    color: var(--dorado-suave);
}

/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-about, .info-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-inner {
        flex-direction: column;
        gap: 1.2rem;
    }
    .hero-logo {
        height: 130px;
    }
    .hero-text {
        text-align: center;
    }
    .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
    }
    .nav-list.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .reels-grid {
        grid-template-columns: 1fr;
    }
}
