/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #fff;
    scroll-behavior: smooth;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
    width: 100%;
    padding: 3px 4%;
    background: #3a0f18;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo h2 {
    font-size: 22px;
    color: #fff;
}

.logo span {
    font-size: 11px;
    color: #ffbebe;
    letter-spacing: 1px;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 17px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li .active {
    color: #fff;
}

/* --------------------------------------------------
   DROPDOWN MENU
-------------------------------------------------- */
.dropdown {
    position: relative;
    display: inline-block;
}

.drop-btn {
    cursor: pointer;
    font-weight: 600;
    padding: 0px 8px;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 30px;
    left: 0;
    width: 180px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.35s ease;
    z-index: 1000;
}

.dropdown-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: 0.25s ease;
}

.dropdown-menu a:hover {
    background: #f4f4f4;
    color: #000;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
    width: 100%;
    height: 100vh;
    background: url("images/hero iamge_1.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.7));
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 70%;
    padding: 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: capitalize;
}

.hero-content p {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    background: #ff701a;
    color: white;
    border-radius: 6px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #e05f15;
}

/* --------------------------------------------------
   ABOUT US
-------------------------------------------------- */
.about {
    width: 100%;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #f4f4f4;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c1207;
    margin-bottom: 10px;
    position: relative;
}

.about-text h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ff701a;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.about-text h3 {
    font-size: 22px;
    margin: 20px 0;
    font-weight: 600;
    color: #444;
}

.about-text p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 12px 28px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #ff8c42, #ff5300);
    color: white;
    border-radius: 6px;
    transition: 0.3s;
}

.about-btn:hover {
    background: linear-gradient(135deg, #ff9e5c, #ff6a21);
    transform: translateY(-3px);
}

.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(255,112,35,.25);
    transition: 0.4s ease;
}

.about-img img:hover {
    transform: scale(1.05);
}

/* --------------------------------------------------
   OUR WORK / PROGRAMS
-------------------------------------------------- */
.programs-section {
    width: 90%;
    margin: 50px auto;
    text-align: center;
}

.programs-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #99004C;
}

.programs-section .subtitle {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 40px;
    color: #444;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.program-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.program-card img {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    margin: 12px 0;
    font-size: 18px;
    color: #BF005E;
    font-weight: 600;
}

.program-card p {
    color: #555;
    font-size: 14px;
}

.program-card a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #D10066;
    text-decoration: none;
    transition: 0.3s;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.program-card a:hover {
    color: #99004C;
}

/* --------------------------------------------------
   SUPPORT US (CARD STYLE)
-------------------------------------------------- */
.support {
    width: 100%;
    padding: 80px 10%;
    text-align: center;
    background: #fff6ef;
}

.support h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.support .subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 8px;
    margin-bottom: 40px;
}

.support-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #ffe5d1;
    width: 300px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 22px rgba(255,112,35, .15);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    color: #2c1207;
    margin-bottom: 25px;
}

.card .btn {
    text-decoration: none;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff8c42, #ff5300);
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.card .btn:hover {
    background: #e05f15;
}

/* --------------------------------------------------
   GET INVOLVED (SUPPORT US PAGE EXTRA)
-------------------------------------------------- */
.get-involved {
    padding: 60px 20px;
    text-align: center;
}

.get-involved h2 {
    font-size: 32px;
    font-weight: 700;
    color: #B2003A;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.gi-box {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.gi-card {
    width: 300px;
    padding: 30px 25px;
    border-radius: 14px;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.icon {
    font-size: 45px;
    margin-bottom: 12px;
}

.gi-card p {
    font-size: 16px;
    margin-bottom: 12px;
}

.gi-card a {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.gi-blue  { background: #66a6ff; }
.gi-pink  { background: #f55d7a; }
.gi-yellow{ background: #d6a748; }

/* --------------------------------------------------
   CONTACT PAGE
-------------------------------------------------- */
/* Banner */
.contact-banner {
    background: linear-gradient(90deg, #B2003A, #d23fa4, #8e1e6a);
    text-align: center;
    padding: 70px 20px;
    color: white;
}

.contact-banner h1 {
    font-size: 38px;
    letter-spacing: 1px;
    font-weight: 700;
}

.contact-banner p {
    margin-top: 8px;
    font-size: 15px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 60px 25px;
    background: #f3f3f3;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* Form */
.contact-form {
    flex: 2;
}

.contact-form h2 {
    font-size: 30px;
    font-weight: 700;
    color: #B2003A;
    margin-bottom: 5px;
}

.contact-form .small {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.contact-form button {
    background: #B2003A;
    color: white;
    padding: 12px 22px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

/* Contact Info */
.contact-info {
    flex: 1.2;
}

.info-box {
    background: white;
    padding: 22px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 40px;
    color: #B2003A;
    margin-bottom: 10px;
}

.info-box h4 {
    color: #B2003A;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-box p {
    font-size: 15px;
    margin: 3px 0;
}

/* --------------------------------------------------
   GALLERY PAGE
-------------------------------------------------- */
.gallery-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    background: #3a0f18;
    padding: 50px 0 20px;
    color: #fff;
    margin-top: 50px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
}

.footer p,
.footer a {
    color: #fff;
    font-size: 14px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a:hover {
    color: #D10066;
}

.social-icons a {
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #bf0060;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 12px;
    border-top: 1px solid #c983b1;
    font-size: 14px;
    color: #fff;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .programs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .support h2 {
        font-size: 28px;
    }

    .card {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .programs-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
