/* ==========================================================================
   NEW LERNE ADAMS FOUNDATION HOMEPAGE - GIVEON THEME STYLE
   ========================================================================== */

:root {
    --primary-color: var(--laf-green, #08aebd);
    --primary-rgb: 8, 174, 189;
    --primary-color-dark: var(--laf-green-deep, #034a52);
    --secondary-color: var(--laf-yellow, #F5C518);
    --secondary-bg: #F4F7F6;
    --dark-bg: var(--laf-navy, #0D1B2A);
    --text-color: #555555;
    --text-muted: #888888;
    --border-color: #E5E7EB;
    --white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-sans: 'Inter', sans-serif;
    --box-shadow-card: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
    --border-radius-card: 15px;
    --border-radius-btn: 30px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--primary-color-dark);
    font-weight: 700;
}

.text-primary-color { color: var(--primary-color) !important; }
.bg-primary-color { background-color: var(--primary-color) !important; }
.bg-secondary-color { background-color: var(--secondary-color) !important; }
.text-secondary-color { color: var(--secondary-color) !important; }

/* Buttons Giveon Style */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius-btn);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color-dark);
    border-radius: var(--border-radius-btn);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius-btn);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar Tweaks */
.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--primary-color-dark) !important;
    transition: color 0.3s ease;
    padding: 10px 15px !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* 03_hero_section */
.hero-section {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.65); /* Giveon usually has dark transparent overlays */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
/* Giveon Hero Donation Card */
.hero-donation-card {
    background-color: var(--white);
    border-radius: var(--border-radius-card);
    padding: 40px;
    box-shadow: var(--box-shadow-card);
}
.hero-donation-card .nav-pills .nav-link {
    border-radius: var(--border-radius-btn);
    color: var(--text-color);
    background-color: #F3F4F6;
    margin-right: 10px;
    font-weight: 600;
}
.hero-donation-card .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* 04_about_us Giveon Style */
.giveon-section-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.giveon-section-title i {
    color: var(--secondary-color);
}
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}
.about-main-img {
    border-radius: var(--border-radius-card);
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: var(--box-shadow-card);
}
.about-experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: var(--secondary-color);
    color: var(--primary-color-dark);
    padding: 30px;
    border-radius: var(--border-radius-card);
    z-index: 2;
    text-align: center;
    box-shadow: var(--box-shadow-card);
    border: 5px solid var(--white);
}
.about-experience-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}
.about-experience-badge p {
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color-dark);
}
.feature-list li i {
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

/* 08_causes Giveon Style */
.giveon-cause-card {
    border: none;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-card);
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s ease;
}
.giveon-cause-card:hover {
    transform: translateY(-10px);
}
.cause-img-wrapper {
    position: relative;
}
.cause-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}
.cause-progress-wrapper {
    margin: 25px 0 15px;
}
.cause-progress {
    height: 10px;
    background-color: #E2E8F0;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}
.cause-progress-bar {
    background-color: var(--primary-color);
    height: 100%;
    border-radius: 5px;
}
.cause-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color-dark);
}
.cause-stats span.text-muted {
    font-weight: 500;
}

/* 05_events Giveon Style */
.giveon-event-card {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}
.giveon-event-card:hover {
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}
.event-date-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 120px;
}
.event-date-box .day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.event-date-box .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
.event-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.event-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* 09_statistics Giveon Style */
.stats-item {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-item:last-child {
    border-right: none;
}
.stats-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255,255,255,0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* Global Utility */
.section-padding {
    padding: 110px 0;
}
.bg-light-gray {
    background-color: var(--secondary-bg);
}

/* Video Pulse */
.play-btn-pulse {
    width: 90px;
    height: 90px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
    animation: button-pulse 2s infinite;
}
.play-btn-pulse:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
    color: var(--primary-color-dark);
}
@keyframes button-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Testimonial Giveon Style */
.testimonial-image-col img {
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
    border-top-right-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}
.testimonial-card-overlap {
    margin-left: -100px;
    z-index: 2;
    position: relative;
}
@media (max-width: 991px) {
    .testimonial-card-overlap {
        margin-left: 0;
        margin-top: -50px;
    }
    .testimonial-image-col img {
        border-radius: 15px !important;
    }
}

/* Mission Vision Grid */
.mission-vision-images {
    position: relative;
    height: 100%;
    min-height: 500px;
}
.mission-vision-images img {
    border-radius: var(--border-radius-card);
    object-fit: cover;
    position: absolute;
    box-shadow: var(--box-shadow-card);
}
.mv-img-1 { width: 60%; height: 60%; top: 0; right: 0; z-index: 1; }
.mv-img-2 { width: 55%; height: 50%; bottom: 0; right: 10%; z-index: 3; border: 10px solid var(--white); }
.mv-img-3 { width: 45%; height: 45%; top: 20%; left: 0; z-index: 2; border: 10px solid var(--white); }

.mission-block {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-card);
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.mission-block i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Core Features */
.core-feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--box-shadow-card);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}
.core-feature-card:hover {
    transform: translateY(-10px);
}
.core-feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}
.core-stats-box {
    background: var(--dark-bg);
    border-radius: var(--border-radius-card);
    padding: 50px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}
.core-stats-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

/* Hero Slider Animations */
.hero-slider-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-slider-bg .slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeZoom 18s infinite linear;
    transform: scale(1);
}
.hero-slider-bg .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider-bg .slide:nth-child(2) { animation-delay: 6s; }
.hero-slider-bg .slide:nth-child(3) { animation-delay: 12s; }

@keyframes fadeZoom {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; transform: scale(1.05); }
    43% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}

/* Scroll Entry Transitions */
.laf-observe {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.laf-observe.show {
    opacity: 1;
    transform: translateY(0);
}
.laf-observe.delay-1 { transition-delay: 0.1s; }
.laf-observe.delay-2 { transition-delay: 0.2s; }
.laf-observe.delay-3 { transition-delay: 0.3s; }

