/* ============================
   WORK PAGE — work.css
   ============================ */

section { padding: 80px 20px; }

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

.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: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

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

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

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

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

.hero p { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.90); margin-bottom: 28px; }

.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.38);
}

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

.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;
}

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

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

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

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 24px;
    display: inline-block;
    position: relative;
}

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

.about p {
    max-width: 920px;
    margin: 0 auto 18px;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    text-align: center;
}

/* WORK / VIDEOS */
.work { background: #FFF9F0; }

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

.work h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.work h3 {
    font-size: 22px;
    font-weight: 700;
    color: #F21414;
    margin-bottom: 30px;
}

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

.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 20px 44px 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); }

/* GALLERY */
.gallery { background: #fff; }

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

.gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 28px;
    display: inline-block;
    position: relative;
    width: 100%;
}

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

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    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 {
    background: linear-gradient(135deg, #1a0505, #3d0f0f);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

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

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

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

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

.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;
    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;
}

/* 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) {
    .image-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 100px 20px 70px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons a { width: 220px; text-align: center; }
    .about h2, .work h2, .gallery h2, .section-heading { font-size: 28px; }
    .video-card { width: 100%; max-width: 340px; height: 190px; }
    .image-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .image-grid img { height: 170px; border-radius: 10px; }
    .donation h2 { font-size: 28px; }
    section { padding: 60px 20px; }
}

@media (max-width: 480px) {
    .image-grid { grid-template-columns: 1fr; }
    .image-grid img { height: 220px; }
}
