/* ============================
   INDEX PAGE — index.css
   ============================ */

/* HERO */
.hero {
    min-height: 92vh;
    background: url('../images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30,4,4,0.62) 0%,
        rgba(180,10,10,0.18) 50%,
        rgba(0,0,0,0.72) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 780px;
}

.hero-badge {
    display: inline-block;
    background: rgba(216,154,29,0.92);
    color: #1a0a00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 18px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero h1 span { color: #F2C14E; }

.hero p {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255,255,255,0.90);
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #F21414, #C90E0E);
    padding: 14px 32px;
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(242,20,20,0.40);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242,20,20,0.52);
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.85);
    padding: 14px 32px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 15.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #F21414;
    border-color: white;
    transform: translateY(-3px);
}

/* HERO SCROLL CUE */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.60);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-arrow {
    width: 22px;
    height: 22px;
    border-right: 2.5px solid rgba(255,255,255,0.60);
    border-bottom: 2.5px solid rgba(255,255,255,0.60);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* SECTIONS BASE */
section { padding: 80px 20px; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* SECTION LABELS */
.section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F21414;
    background: rgba(242,20,20,0.08);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.22;
    display: inline-block;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(135deg, #F21414, #D89A1D);
    border-radius: 10px;
    margin: 12px auto 0;
}

.section-sub {
    font-size: 16.5px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* STATS STRIP */
.stats-strip {
    background: linear-gradient(135deg, #F21414, #C90E0E);
    padding: 44px 20px;
}

.stats-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    padding: 10px 20px;
    color: white;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.20);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: #F2C14E;
    display: block;
}

.stat-desc {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.4px;
    margin-top: 4px;
}

/* ABOUT */
.about-section {
    background: #fff;
    padding: 90px 20px;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.about-text .section-heading::after { margin-left: 0; }

.about-text p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FFF9F0;
    border-left: 3.5px solid #F21414;
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    transition: transform 0.2s;
}

.highlight-item:hover { transform: translateX(4px); }

.highlight-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.highlight-item h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.highlight-item p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.55;
    margin: 0 !important;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 16px 56px rgba(0,0,0,0.13);
}

.about-img-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: 0 10px 32px rgba(242,20,20,0.35);
    text-align: center;
    min-width: 130px;
}

.badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    color: #F2C14E;
}

.badge-label {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

/* MISSION / WHAT WE DO */
.mission-section {
    background: #FFF9F0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 0;
}

.mission-card {
    background: white;
    padding: 34px 26px;
    border-radius: 20px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    border: 1.5px solid #f0f0f0;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F21414, #D89A1D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}

.mission-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 44px rgba(242,20,20,0.12);
    border-color: #ffd0d0;
}

.mission-card:hover::before { transform: scaleX(1); }

.mission-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18.5px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* WORK / VIDEOS */
.work-section {
    background: white;
}

.work-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 32px;
}

.video-card {
    position: relative;
    width: 320px;
    height: 190px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    flex: 0 1 auto;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.video-card:hover video { opacity: 1; }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(242,20,20,0.92);
    color: white;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(242,20,20,0.45);
    transition: transform 0.25s ease;
    padding-left: 4px;
}

.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }

.btn-work-wrap { margin-top: 10px; }

.btn-work {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(242,20,20,0.32);
}

.btn-work:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242,20,20,0.44);
}

/* GALLERY */
.gallery-section {
    background: #FFF9F0;
}

.gallery-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
    margin-top: 0;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    display: block;
    transition: all 0.32s ease;
}

.image-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* DONATION CTA */
.donation-cta {
    background: linear-gradient(135deg, #1a0505, #3d0f0f);
    position: relative;
    overflow: hidden;
}

.donation-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.07;
}

.donation-cta .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donation-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 18px;
    line-height: 1.28;
}

.donation-cta h2 span { color: #F2C14E; }

.donation-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    line-height: 1.85;
    margin-bottom: 12px;
}

.btn-donate-big {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 44px;
    background: linear-gradient(135deg, #F21414, #C90E0E);
    color: white;
    border-radius: 32px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 28px rgba(242,20,20,0.42);
    transition: all 0.3s ease;
}

.btn-donate-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(242,20,20,0.55);
}

/* CONTACT STRIP */
.contact-strip {
    background: linear-gradient(135deg, #D89A1D, #F2C14E);
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 16.5px;
    font-weight: 700;
    color: #1a0a00;
}

.contact-strip a {
    color: #1a0a00;
    text-decoration: none;
    font-weight: 800;
}

/* VIDEO POPUP */
.video-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-popup.active { display: flex; }

.video-popup-box {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.video-popup-box video {
    width: 100%;
    max-height: 88vh;
    border-radius: 20px;
    background: #000;
}

.close-popup {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    transition: transform 0.2s;
}

.close-popup:hover { transform: scale(1.1); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 960px) {
    .about-section .container { grid-template-columns: 1fr; gap: 40px; }
    .about-text { text-align: center; }
    .about-text .section-heading::after { margin: 12px auto 0; }
    .about-text .highlight-item { text-align: left; }
    .about-img-badge { left: 10px; bottom: -14px; }
    .mission-grid { grid-template-columns: 1fr 1fr; }
    .image-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons a { width: 220px; text-align: center; justify-content: center; }

    .stats-strip .container { gap: 0; }
    .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
    .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .stat-num { font-size: 34px; }

    .section-heading { font-size: 28px; }
    .section-sub { font-size: 15px; }

    .mission-grid { grid-template-columns: 1fr; }

    .video-card { width: 100%; max-width: 340px; height: 190px; }

    .image-grid img { height: 170px; }

    .donation-cta h2 { font-size: 28px; }
    .donation-cta p { font-size: 15px; }

    section { padding: 60px 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .image-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .image-grid img { height: 150px; }
}
