/* HERO */
.hero {
    height: 90vh;
    background: url('../../assets/images/hero.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: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    padding: 12px 25px;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

.btn-secondary {
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #ff7a00;
    transform: translateY(-3px);
}

/* SECTIONS */
section {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ABOUT */
.about {
    background: #fff;
    padding: 85px 20px;
}

.about .container {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}

.about h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff7a00, #ff9800);
}

.about p {
    max-width: 1000px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.about-image {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 50%;
    max-width: 500px;
    border-radius: 18px;
    display: block;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
/* WORK */
.work {
    background: #fffaf5;
}

.work .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work h2 {
    font-size: 38px;
    margin-bottom: 14px;
    color: #222;
}

.work h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: #ff7a00;
    font-weight: 700;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 30px;
}

.video-card {
    position: relative;
    width: 320px;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 auto;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.92);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.work-btn-wrap {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    clear: both;
}

.btn-work {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-work:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}

/* GALLERY */
.gallery {
    background: #fff;
}

.gallery h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #222;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    display: block;
}

/* DONATION */
.donation {
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    color: white;
    padding: 70px 20px;
}

.donation .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donation h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.3;
}

.donation p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.93);
    max-width: 700px;
    margin: 0 auto 8px;
}

.btn-donate-big {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 40px;
    background: white;
    color: #ff7a00;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-donate-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* CONTACT */
.contact-strip {
    background: #222;
    color: white;
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 17px;
}

/* VIDEO POPUP */
.video-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    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: 380px;
}

.video-popup-box video {
    width: 100%;
    max-height: 85vh;
    border-radius: 18px;
    background: #000;
}

.close-popup {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* RESPONSIVE — TABLET */
@media (max-width: 900px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .image-grid img {
        height: 200px;
    }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 200px;
        text-align: center;
    }

    .about {
        padding: 60px 20px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 16px;
        line-height: 1.9;
    }

    .work h2 {
        font-size: 30px;
    }

    .work h3 {
        font-size: 22px;
    }

    .video-grid {
        gap: 16px;
    }

    .video-card {
        width: 100%;
        max-width: 340px;
        height: 190px;
    }

    .video-popup-box {
        max-width: 320px;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .image-grid img {
        height: 160px;
        border-radius: 10px;
    }

    .gallery h2 {
        font-size: 26px;
    }

    /* DONATION CTA — MOBILE */
    .donation {
        padding: 55px 20px;
    }

    .donation h2 {
        font-size: 26px;
    }

    .donation p {
        font-size: 15px;
        line-height: 1.8;
    }

    .btn-donate-big {
        display: block;
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
    }

    .contact-strip p {
        font-size: 15px;
    }
}

/* RESPONSIVE — VERY SMALL */
@media (max-width: 400px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-grid img {
        height: 200px;
    }
}