/**
 * Camp Landing Page Styles
 * Template: Camp Landing Page (lp-template.php)
 * Extracted from inline styles: December 2025
 *
 * Minimalistic landing page focused on Africa Bahia Summer Camp
 */

/* =============================================================================
   BASE STYLES
   ============================================================================= */

/* Minimalistic Landing Page - Opanije Brand Identity */
.landing-camp {
    font-family: 'Lato', sans-serif;
    color: #2B2823;
    background: #fff;
}

.landing-camp h1,
.landing-camp h2,
.landing-camp h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero-camp {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}

.hero-camp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 40, 35, 0.95) 0%, rgba(43, 40, 35, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-camp h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #d8a81b;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero-date {
    display: inline-block;
    background: rgba(216, 168, 27, 0.15);
    border: 2px solid #d8a81b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn-primary {
    background: #d8a81b;
    color: #2B2823;
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-primary:hover {
    background: #e4b532;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 168, 27, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-secondary:hover {
    background: #fff;
    color: #2B2823;
}

/* Improved button style for blog and shop links */
.btn-explore {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #d8a81b;
    color: #d8a81b;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin: 10px;
}

.btn-explore:hover {
    background-color: #d8a81b;
    color: #2B2823;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 168, 27, 0.3);
}

.btn-dark {
    background: #2B2823;
    color: #d8a81b;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1a1815;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* =============================================================================
   VALUE PROPS SECTION
   ============================================================================= */

.value-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(216, 168, 27, 0.2);
    text-decoration: none;
    color: inherit;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d8a81b;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2B2823;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* =============================================================================
   CAMP INFO SECTION
   ============================================================================= */

.camp-info-section {
    padding: 100px 0;
    background: #2B2823;
    color: #fff !important;
}

.camp-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.camp-info-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    color: #d8a81b;
}

.camp-info-section p {
    color: #fff !important;
}

.camp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.camp-feature {
    display: flex;
    align-items: start;
    gap: 15px;
}

.feature-icon {
    color: #d8a81b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.camp-feature p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff !important;
}

/* =============================================================================
   EXPERIENCE SECTION
   ============================================================================= */

.experience-section {
    padding: 80px 0;
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
}

.experience-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.experience-card:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.experience-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Improved text contrast for experience overlay */
.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 30px 20px;
    color: #fff;
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.experience-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* =============================================================================
   FREE COURSE SECTION
   ============================================================================= */

.free-course-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B2823 0%, #3d3832 100%);
}

.free-course-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.free-course-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #d8a81b;
}

.free-course-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fff !important;
}

/* =============================================================================
   CTA SECTION
   ============================================================================= */

.cta-section {
    padding: 100px 0;
    background: #d8a81b;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #2B2823;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: #2B2823;
    margin-bottom: 40px;
    font-weight: 500;
}

/* =============================================================================
   QUICK LINKS FOOTER
   ============================================================================= */

.quick-links-footer {
    background: #1a1815;
    padding: 60px 0 40px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.quick-link-item h4 {
    color: #d8a81b;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.quick-link-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.quick-link-item a:hover {
    color: #d8a81b;
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 768px) {
    .hero-camp {
        min-height: 90vh;
        padding: 60px 20px;
    }

    .camp-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-grid,
    .experience-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-explore {
        display: block;
        width: 90%;
        margin: 10px auto;
    }

    .cta-content h2 {
        padding: 0 20px;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }

    .quick-link-item {
        padding: 10px;
    }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
