/* ============================================
   INVINCIBLE LADIES FOUNDATION - MAIN STYLES
   ============================================ */

/* ---- CSS Variables (Brand Colors) ---- */
:root {
    --primary-purple: #8E2A8B;
    --dark-purple: #5A2D82;
    --deep-purple: #3E1E5B;
    --accent-gold: #FFD700;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ---- Base Reset ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ---- Navigation ---- */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    line-height: 1.2;
}

.brand-purple {
    color: var(--primary-purple);
}

.navbar-brand small {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    margin: 0 2px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple) !important;
    background: rgba(142, 42, 139, 0.08);
}

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0e6f0 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(142, 42, 139, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-tag {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--deep-purple);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-purple);
    display: block;
    margin-top: 8px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-buttons .btn-primary:hover {
    background: var(--dark-purple);
    border-color: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 42, 139, 0.3);
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: var(--transition);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ---- About Preview Section ---- */
.about-preview {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-preview h2 {
    font-size: 2.5rem;
    color: var(--deep-purple);
    margin-bottom: 25px;
}

.about-preview p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-preview .btn-primary {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    margin-top: 10px;
    transition: var(--transition);
}

.about-preview .btn-primary:hover {
    background: var(--dark-purple);
    border-color: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 42, 139, 0.3);
}

.mission-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.mission-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---- Footer ---- */
footer {
    background: var(--deep-purple);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

footer h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

footer .bi {
    color: var(--accent-gold);
    margin-right: 5px;
}

footer p:last-child {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ---- Utility Classes ---- */
.text-purple {
    color: var(--primary-purple) !important;
}

.bg-purple {
    background: var(--primary-purple) !important;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .col-lg-6:first-child {
    animation: fadeInUp 0.8s ease-out;
}

.hero .col-lg-6:last-child {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.page-header .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ---- Section Padding Utility ---- */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light) !important;
}

/* ---- Vision Box ---- */
.vision-box {
    background: white;
    color: var(--text-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-purple);
}

.vision-box h3 {
    color: var(--deep-purple);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vision-box i {
    color: var(--primary-purple);
}

/* ---- Value Cards ---- */
.value-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.value-card h4 {
    color: var(--deep-purple);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- Stats Section ---- */
.bg-purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%) !important;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ---- Founder Card ---- */
.founder-card {
    background: white;
    box-shadow: var(--shadow);
}

.founder-image-wrapper {
    flex-shrink: 0;
}

.founder-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-purple);
}

.founder-info h3 {
    color: var(--deep-purple);
    margin-bottom: 5px;
}

/* ---- Button Outline Primary ---- */
.btn-outline-primary {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

/* ---- Responsive for About Page ---- */
@media (max-width: 767px) {
    .page-header {
        padding: 70px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .founder-img {
        width: 120px;
        height: 120px;
    }
    
    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }
}/* ============================================
   PROGRAMMES PAGE STYLES
   ============================================ */

/* ---- Programme Rows (alternating layout) ---- */
.programme-row {
    padding: 40px 0;
}

.programme-img {
    transition: var(--transition);
    object-fit: cover;
    height: 350px;
    width: 100%;
}

.programme-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.programme-content {
    padding: 20px;
}

.programme-content h3 {
    color: var(--deep-purple);
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.programme-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ---- Programme List ---- */
.programme-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.programme-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.programme-list li i {
    flex-shrink: 0;
}

/* ---- Step Cards (How It Works) ---- */
.step-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 15px;
}

.step-card h4 {
    color: var(--deep-purple);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---- Max Width Utility ---- */
.max-w-700 {
    max-width: 700px;
}

/* ---- Responsive for Programmes ---- */
@media (max-width: 991px) {
    .programme-img {
        height: 300px;
    }
    
    .programme-content {
        text-align: center;
    }
    
    .programme-list li {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .programme-img {
        height: 250px;
    }
    
    .programme-content h3 {
        font-size: 1.5rem;
    }
    
    .step-card {
        margin-bottom: 15px;
    }
}/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* ---- Gallery Filter Buttons ---- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-purple);
    color: white;
}

/* ---- Gallery Cards ---- */
.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 280px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

/* ---- Gallery Overlay ---- */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(62, 30, 91, 0.9) 0%, rgba(62, 30, 91, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.gallery-info p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.gallery-info i {
    margin-right: 5px;
}

.gallery-view-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 16px;
}

/* ---- Lightbox Modal ---- */
.modal-content {
    background: transparent !important;
    border: none !important;
}

#lightboxImage {
    max-height: 80vh;
    object-fit: contain;
}

#lightboxCaption {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

/* ---- Gallery Responsive ---- */
@media (max-width: 767px) {
    .gallery-card {
        height: 220px;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(62, 30, 91, 0.85) 0%, transparent 60%);
    }
    
    .gallery-info {
        transform: translateY(0);
    }
    
    .filter-btn {
        padding: 6px 18px;
        font-size: 0.85rem;
    }
}/* ============================================
   GET INVOLVED PAGE STYLES
   ============================================ */

/* ---- Involve Cards ---- */
.involve-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-purple);
}

.involve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.involve-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.involve-card h4 {
    color: var(--deep-purple);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.involve-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* ---- Donate Section ---- */
.donate-impact {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.impact-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-purple);
    min-width: 80px;
    text-align: center;
    background: rgba(142, 42, 139, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.impact-desc {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.donate-card {
    background: white;
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.donate-btn {
    background: white;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.donate-btn:hover,
.donate-btn.active {
    background: var(--primary-purple);
    color: white;
}

/* ---- Forms ---- */
.form-card {
    background: white;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--deep-purple);
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(142, 42, 139, 0.15);
}

/* ---- Sponsor Cards ---- */
.sponsor-card {
    background: white;
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.sponsor-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin: 15px 0;
}

/* ---- FAQ Accordion ---- */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 20px;
    color: var(--deep-purple);
    background: white;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(142, 42, 139, 0.05);
    color: var(--primary-purple);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .donate-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-amount {
        font-size: 1.1rem;
        min-width: 70px;
    }
    
    .form-card {
        padding: 25px !important;
    }
}/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* ---- Contact Info Cards ---- */
.contact-info-card {
    background: white;
    transition: var(--transition);
    border-top: 4px solid var(--primary-purple);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.contact-info-card h4 {
    color: var(--deep-purple);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}

/* ---- Map Card ---- */
.map-card {
    background: white;
    min-height: 500px;
}

.map-card iframe {
    display: block;
    border-radius: 16px;
}

/* ---- Social Media ---- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    width: 55px;
    height: 55px;
    background: white;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 42, 139, 0.3);
}

/* ---- Contact Form Specifics ---- */
#contactForm .form-control,
#contactForm .form-select {
    background: #fafafa;
}

#contactForm .form-control:focus,
#contactForm .form-select:focus {
    background: white;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .map-card {
        min-height: 350px;
    }
    
    .map-card iframe {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        margin-bottom: 15px;
    }
    
    .map-card {
        min-height: 300px;
    }
    
    .map-card iframe {
        min-height: 300px;
    }
    
    .social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}/* ---- Footer Social Buttons (smaller) ---- */
.social-btn-sm {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
}