@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Montserrat:wght@300;400;600;800&family=Pacifico&family=Special+Elite&display=swap');

:root {
    /* AlphaCamp Brand Palette - Friendly & Professional */
    --brand-blue-light: #83B3E0;
    --brand-blue-dark: #4B7699;
    --brand-yellow: #F8B825;
    --brand-cream: #EEE8E4;
    --brand-coral: #E95F5D;

    --primary: var(--brand-blue-light);
    --primary-dark: var(--brand-blue-dark);
    --secondary: var(--brand-blue-dark);
    --accent: var(--brand-yellow);
    --bg-light: var(--brand-cream);
    --text-main: #333333;
    --white: #ffffff;

    /* Indiana Palette - Adventure & Earthy */
    --indiana-brown: #4e342e;
    --indiana-gold: #c7a12e;
    --indiana-sand: #d7ccc8;
    --indiana-accent: #bf360c;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* New modern adventure accents */
    --accent-vibrant: #ff6d00;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
.logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* --- Components --- */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.btn-indiana {
    font-family: 'Special Elite', cursive;
    background: var(--indiana-gold);
    color: var(--indiana-brown);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-indiana:hover {
    background: var(--indiana-brown);
    color: var(--indiana-gold);
    transform: scale(1.05) rotate(-1deg);
}

/* --- Navigation --- */

nav {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }
}

/* --- Hero --- */

.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #e9ecef 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

@media (max-width: 992px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--secondary);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Sections --- */

section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- Promotion Card --- */

.promo-banner {
    background: var(--indiana-brown);
    border-radius: 20px;
    padding: 60px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.promo-banner h3 {
    font-family: 'Special Elite', cursive;
    font-size: 3rem;
    color: var(--indiana-gold);
    margin-bottom: 15px;
}

.promo-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- Indiana Jon Landing Design --- */

.indiana-body {
    background-color: #1a0f00;
    color: var(--indiana-sand);
}

.indiana-hero {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(26, 15, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&q=80&w=2070') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.indiana-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--indiana-gold);
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, var(--indiana-gold), #8e6d1a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .indiana-title {
        font-size: 3rem;
    }

    .indiana-hero h2 {
        font-size: 1.4rem !important;
    }
}

.indiana-details {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border: 1px solid rgba(199, 161, 46, 0.3);
    border-radius: 24px;
    margin: 40px 0;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* --- FAQ Section --- */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    color: var(--primary-dark);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--secondary);
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 20px 30px;
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* --- Testimonials --- */

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 5px solid var(--primary);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
}

.testimonial-author {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
}

/* --- Map/Contact --- */

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: "🗺️";
    font-size: 4rem;
}

.contact-info-list {
    list-style: none;
    margin-top: 30px;
}

.contact-info-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Responsividad extra */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .promo-banner {
        padding: 40px 20px;
    }

    .promo-banner h3 {
        font-size: 2rem;
    }

    .grid-2 {
        gap: 40px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-content .btn {
        width: auto;
        min-width: 200px;
    }

    .hero-btns {
        justify-content: center;
    }
}

/* --- Immersive Indiana Jon Styles (Refined) --- */

:root {
    --indy-dark: #1a0f00;
    --indy-gold: #ffc107;
    --indy-sand: #f4ece1;
    --indy-accent: #e67e22;
}

.indiana-body {
    background-color: var(--indy-dark);
    color: var(--indy-sand);
    font-family: 'Montserrat', sans-serif;
}

.indiana-hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(26, 15, 0, 0.95)), url('adventure.png');
    background-size: cover;
    background-position: center;
    padding: 0 20px;
    border-bottom: 4px solid var(--indy-gold);
}

.indiana-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(3.5rem, 12vw, 7rem);
    color: var(--indy-gold);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 100px rgba(255, 193, 7, 0.2);
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.mission-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 24px;
    padding: 40px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--indy-gold);
    transform: translateY(-5px);
}

.briefing-form {
    background: var(--indy-sand);
    color: var(--indy-dark);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 800px;
    margin: -100px auto 0;
    z-index: 10;
}

.briefing-section {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 6px solid var(--indy-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wax-seal {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: url('seal.png') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    z-index: 20;
    transform: rotate(12deg);
}

@media (max-width: 768px) {
    .briefing-form {
        padding: 40px 20px;
        margin-top: -50px;
        border-radius: 30px;
    }

    .indiana-hero {
        height: 60vh;
    }

    .wax-seal {
        width: 100px;
        height: 100px;
        top: -30px;
        right: -10px;
    }

    .adventure-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Cookie Banner --- */

#cookieBanner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #eee;
}

#cookieBanner p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 0;
}

#cookieBanner .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    #cookieBanner {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

/* --- Galería de Fotos --- */

.galeria-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
    gap: 12px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .galeria-featured {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 260px;
    }

    .galeria-item {
        height: 180px;
    }
}