
/* ===== SÉPARATEUR NATURE ENTRE LES SECTIONS ===== */
.section-divider-nature {
    text-align: center;
    font-size: 2rem;
    color: #8B8179;
    margin: 2rem auto 2rem auto;
    letter-spacing: 0.5rem;
    max-width: 1600px;
}
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C2D500;
    --secondary-color: #8B8179;
    --accent-color: #C2D500;
    --dark-color: #000000;
    --light-color: #ffffff;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== NAVIGATION ===== */
header {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h1 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li:last-child {
    margin-left: auto;
}

.nav-menu .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 50px;
}

.nav-menu .btn-membership {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 50px;
}

.nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 95vh;
    background: #8B8179;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./image/2.png');
    background-size: cover;
    background-position: top;
    filter: blur(3px);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
    color: #ffffff;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: #C2D500;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #8B8179;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background-color: #ffffff;
    color: #C2D500;
    border: 2px solid #C2D500;
}

.btn-light:hover {
    background-color: #C2D500;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: #C2D500;
    border: 2px solid #C2D500;
}

.btn-secondary:hover {
    background-color: #C2D500;
    color: #ffffff;
}

.btn-membership {
    background-color: #8B8179;
    color: #ffffff;
}

.btn-membership:hover {
    background-color: #C2D500;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #C2D500;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.constat {
    background-color: #ffffff;
}

.content-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #C2D500;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.content-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    color: #C2D500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Mentions légales : espace entre un paragraphe et le titre suivant */
.legal-content-card p + h3 {
    margin-top: 2rem;
}

.stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C2D500;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.highlight-text {
    background-color: #C2D500;
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 2rem;
    display: block;
    text-align: center;
    font-size: 1.3rem;
}

/* ===== PROJET SECTION ===== */
.projet {
    background-color: #ffffff; 
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #ffffff;
    color: #8B8179;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid #C2D500;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #C2D500;
}

.project-list {
    margin-top: 1.5rem;
}

.project-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.project-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C2D500;
    font-weight: 700;
}

.collectif-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    border-left: 5px solid #C2D500;
}

/* ===== OBJECTIFS SECTION ===== */
.objectifs {
    background-color: #ffffff;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.objective-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #C2D500;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.objective-number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #C2D500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 2px solid #C2D500;
}

.objective-card h3 {
    color: #C2D500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #ffffff;
    color: #8B8179;
    padding: 5rem 0;
    text-align: center;
    border-top: 3px solid #C2D500;
    border-bottom: 3px solid #C2D500;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #8B8179;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        gap: 1rem;
    }

    .cta-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: #8B8179;
    padding: 6rem 0 6rem; /* Augmenté le padding pour plus d'espace */
    margin-top: 70px;
    position: relative;
    min-height: 50vh; /* Passé de 15vh à 30vh */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== IMAGES DE FOND PAR PAGE ===== */

/* Configuration commune pour l'effet flou sur toutes les pages */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    filter: blur(3px); /* L'effet de flou comme sur l'accueil */
    z-index: 1;
}

/* Assure que le texte reste au-dessus de l'image */
.page-hero .container {
    position: relative;
    z-index: 3;
}

/* Images spécifiques pour chaque page */
/* Remplacez les url(...) par vos propres images */

.hero-qui-sommes-nous::before {
    background-image: url('./image/5.png');
}

.hero-valeurs::before {
    background-image: url('./image/6.png');
}

.hero-confiance::before {
    background-image: url('./image/1.png');
}

.hero-rejoindre::before {
    background-image: url('./image/3.png');
}

.page-title {
    color: #ffffff;
    font-size: 3rem;
    text-align: center;
    line-height: 1.2;
}

.page-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* ===== PRESENTATION SECTION ===== */
.presentation {
    padding: 4rem 0;
}

.intro-text {
    text-align: left;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

/* ===== VOCATION SECTION ===== */
.vocation {
    background-color: #ffffff;
}

.vocation-content {
    display: block;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto 0;
}

.vocation-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Ancienne classe pour l'image (supprimée ou gardée au cas où) */
.vocation-image .image-placeholder {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 3px solid #C2D500;
}

/* ===== ACTIONS SECTION ===== */
.actions {
    background-color: #ffffff;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
}

.action-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-card h3 {
    color: #C2D500;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* ===== VALUES SECTION ===== */
.values {
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #C2D500;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #C2D500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Sous-carte de contact dans les cartes valeurs */
.contact-sub-card {
    background-color: #f8f9fa;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.contact-sub-card h4 {
    color: #8B8179;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-sub-card .email-link {
    color: #C2D500;
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-all;
    text-decoration: none; /* Supprime le soulignement */
    cursor: text; /* Curseur texte au lieu de main */
    pointer-events: none; /* Désactive le clic */
}

/* ===== TARGET AUDIENCE ===== */
.target-audience {
    background: #ffffff;
    color: #8B8179;
    border-left: 5px solid #C2D500;
    border-right: 5px solid #C2D500;
}

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

.audience-content h2 {
    color: #8B8179;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.audience-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #8B8179;
}

/* ===== NOS VALEURS ===== */
.intro-values {
    padding: 3rem 0;
    text-align: center; /* Centrer le texte */
}

.values-detailed {
    background-color: #ffffff;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-detailed-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 15px;
    transition: var(--transition);
    color: #8B8179;
    border: none;
}

.value-detailed-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.value-detailed-card.reverse {
    background: #ffffff;
    color: #8B8179;
    border: none;
}

.value-detailed-card.reverse h2,
    .value-detailed-card.reverse p,
    .value-detailed-card.reverse ul {
    color: #8B8179;
}

.value-detailed-card.reverse h2 {
    color: #C2D500;
}

.value-detailed-icon {
    font-size: 4rem;
    text-align: center;
}

.value-detailed-content h2 {
    color: #C2D500;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-detailed-card.reverse .value-detailed-content h2 {
    color: var(--white);
}

.value-explanation {
    margin-top: 1.5rem;
}

.value-benefits {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.value-benefits li {
    padding: 0.5rem 0;
    position: relative;
}

.value-benefits li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #C2D500;
    font-weight: 700;
}

.values-impact {
    background: #8B8179;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
    border: 3px solid #C2D500;
}

.values-impact h2 {
    color: #C2D500;
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-stat {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #C2D500;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-stat h3 {
    color: #C2D500;
    margin-bottom: 1rem;
}

/* ===== GAGES DE CONFIANCE ===== */
.intro-trust {
    padding: 3rem 0;
    background-color: #ffffff;
    text-align: center; /* Centrer le texte */
}

.trust-guarantees {
    background-color: #ffffff;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-card h3 {
    color: #C2D500;
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-details {
    margin-top: 1.5rem;
}

.guarantee-details ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.guarantee-details li {
    padding: 0.5rem 0;
    position: relative;
}

.guarantee-details li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #8B8179;
    font-weight: 700;
}

.tax-info {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid #C2D500;
}

.legal-structure {
    padding: 5rem 0;
    background-color: #ffffff;
}

.structure-cards {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.structure-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #C2D500;
}

.structure-card h3 {
    color: #C2D500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.structure-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.structure-card li {
    padding: 0.5rem 0;
}

.scic-details, .club-objectives {
    margin-top: 1.5rem;
}

.scic-details h4, .club-objectives h4 {
    color: #C2D500;
    margin-bottom: 0.5rem;
}

.events-section {
    background-color: #ffffff;
}

.events-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    transform: scale(1.05);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    color: #C2D500;
    margin-bottom: 0.5rem;
}

.event-note {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
/* ===== NOUS REJOINDRE ===== */
.intro-join {
    padding: 3rem 0;
    background-color: #ffffff;
}

.intro-description {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

.quick-nav {
    background-color: #ffffff;
    padding: 2rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--shadow);
}

.quick-nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-link {
    background-color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.quick-link:hover {
    background: #C2D500;
    color: #ffffff;
    transform: translateY(-3px);
}

.join-section {
    padding: 5rem 0;
    scroll-margin-top: 140px;
}

.join-section.alt-bg {
    background-color: #ffffff;
}

.join-header {
    text-align: center;
    margin-bottom: 3rem;
}

.join-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.join-header h2 {
    color: #C2D500;
    font-size: 2.5rem;
}

.join-content {
    max-width: 1000px;
    margin: 0 auto;
}

.join-description {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #C2D500;
}

.join-description h3 {
    color: #C2D500;
    margin-bottom: 1rem;
}

.join-benefits {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.join-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.join-benefits ul {
    padding-left: 1.5rem;
}

.join-benefits li {
    padding: 0.5rem 0;
}

.join-types, .join-benefits, .mecenes-levels, .donation-examples, 
.donation-types, .territory-requirements, .territory-process,
.investment-model, .investment-opportunities, .investment-projections {
    margin-bottom: 2rem;
}

.join-benefits h4, .mecenes-levels h4, .donation-examples h4,
.donation-types h4, .territory-requirements h4, .territory-process h4,
.investment-model h4, .investment-opportunities h4, .investment-projections h4 {
    color: #C2D500;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.type-card {
    background: #ffffff;
    color: #8B8179;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid #C2D500;
    transition: var(--transition);
}

.type-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Mécènes Levels */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.level-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid;
    transition: var(--transition);
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.level-card.bronze { border-top-color: #cd7f32; }
.level-card.silver { border-top-color: #c0c0c0; }
.level-card.gold { border-top-color: #ffd700; }
.level-card.platinum { border-top-color: #e5e4e2; }

.level-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #C2D500;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C2D500;
    margin-bottom: 1rem;
}

.level-card ul {
    text-align: left;
    padding-left: 1.5rem;
}

.level-card li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

/* Donation Examples */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.example-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.example-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #C2D500;
    margin-bottom: 1rem;
}

.tax-reduction {
    display: block;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: #C2D500;
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.types-donation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.donation-type {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.donation-type h5 {
    color: #C2D500;
    margin-bottom: 0.5rem;
}

/* Territory Requirements */
.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.req-icon {
    font-size: 2rem;
}

.requirement-item h5 {
    color: #C2D500;
    margin-bottom: 0.3rem;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #C2D500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    border: 2px solid #C2D500;
}

.process-step h5 {
    color: #C2D500;
    margin-bottom: 0.5rem;
}

/* Investment */
.model-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #C2D500;
}

.feature-box h5 {
    color: #C2D500;
    margin-bottom: 0.5rem;
}

.investment-opportunities ul,
.investment-projections ul {
    padding-left: 1.5rem;
}

.investment-opportunities li,
.investment-projections li {
    padding: 0.5rem 0;
}

.contact-investor {
    margin-top: 2rem;
}

.investor-cta-box {
    background: #ffffff;
    color: #8B8179;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #C2D500;
}

.investor-cta-box h4 {
    color: #C2D500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-investor {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 1px solid #C2D500;
}

.contact-info-investor p {
    margin: 0;
    color: #8B8179;
}

.contact-info-investor a {
    color: #C2D500;
    font-weight: 600;
}

.join-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
    background-color: #8B8179;
    border-top: 4px solid #C2D500;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.footer-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    margin-left: 10rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    color: #ffffff;
}

.footer-section a {
    color: #ffffff;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    color: #ffffff;
}


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

/* ===== RESPONSIVE ===== */
@media (max-width: 1500px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin-left: 0;
        height: 150px;
    }
}

@media (max-width: 1500px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
    }

    .logo h1 {
        font-size: 0.9rem;
        line-height: 1.1;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu li:last-child {
        margin-left: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }

    .hero {
        margin-top: 70px;
        height: 80vh;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .project-highlights {
        grid-template-columns: 1fr;
    }

    .vocation-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-grid,
    .actions-grid,
    .values-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-hero::before {
        background-position: center center;
    }

    .value-detailed-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .value-detailed-icon {
        font-size: 3rem;
    }

    .value-detailed-content h2 {
        font-size: 1.5rem;
    }

    .quick-nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .quick-link {
        width: 100%;
        max-width: none;
        padding: 0.8rem 1rem;
    }

    .levels-grid,
    .examples-grid,
    .requirements-list,
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0.8rem 0;
    }

    .logo h1 {
        font-size: 0.75rem;
        line-height: 1;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-grid,
    .actions-grid,
    .values-grid,
    .objectives-grid,
    .types-grid,
    .levels-grid,
    .examples-grid {
        gap: 1rem;
    }

    .content-card,
    .action-card,
    .value-card,
    .type-card,
    .level-card {
        padding: 1.5rem 1rem;
    }

    .page-hero {
        padding: 4rem 0 2rem;
    }

    .page-hero::before {
        background-position: center center;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: auto;
}

/* ===== ACCESSIBILITY ===== */
:focus {
    outline: none;
}