/* ================================
   GLOBAL
================================ */
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    background: #ffffff;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

img {
    max-width: 100%;
    display: block;
}

/* ================================
   HEADER
================================ */
.header {
    background: #6a0dad;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: 600;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 400;
}

nav a.active {
    border-bottom: 2px solid #d4af37;
}

.nav-btn {
    background: #d4af37;
    padding: 8px 18px;
    border-radius: 4px;
    color: #000;
}

/* ================================
   HERO
================================ */
.hero,
.page-hero {
    background: linear-gradient(
        rgba(106,13,173,0.9),
        rgba(106,13,173,0.85)
    );
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 750px;
    margin: auto;
}

.hero p {
    max-width: 650px;
    margin: 20px auto 30px;
}

/* ================================
   BUTTONS
================================ */
.btn-primary {
    background: #ffffff;
    color: #6a0dad;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.btn-gold {
    background: #d4af37;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #d4af37;
    color: #000;
}

/* ================================
   SECTIONS
================================ */
.section {
    padding: 80px 0;
}

.bg-light {
    background: #f5f0fa;
}

.center {
    text-align: center;
}

/* ================================
   LAYOUTS
================================ */
.two-column {
    display: flex;
    gap: 60px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-top: 4px solid #6a0dad;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ================================
   IMPACT
================================ */
.impact {
    background: #6a0dad;
    color: white;
    padding: 70px 0;
}

.impact-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
}

.impact h2 {
    font-size: 40px;
    color: #d4af37;
}

/* ================================
   GALLERY
================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.gallery-item img {
    height: 220px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item h4 {
    padding: 12px;
    text-align: center;
}

/* ================================
   CONTACT
================================ */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form button {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    background: #d4af37;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #b38c2e;
}

.contact-info {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

/* ================================
   SOCIAL LINKS (VERTICAL ICONS)
================================ */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #d4af37;
    font-weight: 500;
}

.social-links li a i {
    width: 38px;
    height: 38px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: #4a0a87;
    color: #bbb;
    text-align: center;
    padding: 20px 0;
}

/* ================================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets */
@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column {
        flex-direction: column;
    }

    .impact-grid {
        flex-direction: column;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    nav a {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 30px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .impact h2 {
        font-size: 32px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0;
    }

    .section {
        padding: 50px 0;
    }
}