﻿/* ================================
   I AM CHOSEN – Global Theme
   ================================ */

:root {
    --background: #050505;
    --foreground: #ffffff;
    --muted: #a3a3a3;
    --border: #333333;
    --gradient-hero: linear-gradient(180deg, #000000 0%, #141414 45%, #1e1e1e 100%);
    --gradient-section: linear-gradient(180deg, #141414 0%, #050505 100%);
    --gradient-card: linear-gradient(145deg, #1a1a1a 0%, #050505 100%);
    --gradient-cta: linear-gradient(180deg, #1e1e1e 0%, #050505 100%);
    --shadow-card: 0 18px 35px rgba(0, 0, 0, 0.7);
    --shadow-button: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Base */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #000000;
    color: var(--foreground);
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    min-height: 100vh;
}

/* Global text colors – default = white */

body,
p,
span,
a,
li,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
    font-weight: 800;
}

/* Muted / secondary text */

.text-muted,
.text-muted-foreground {
    color: #d3d3d3 !important;
}

small,
.form-text {
    color: #cccccc !important;
}

.lead {
    color: #e0e0e0;
}

/* Containers / sections */

.bg-black-true {
    background-color: #000000;
}

.gradient-hero {
    background: var(--gradient-hero);
}

.gradient-section {
    background: var(--gradient-section);
}

.gradient-card {
    background: var(--gradient-card);
}

.gradient-cta {
    background: var(--gradient-cta);
}

/* Section titles */

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: .03em;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #d3d3d3;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
}

/* ================================
   NAVBAR & LOGO
   ================================ */

.iac-navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #141414;
}

/* Navbar links – keep bright white */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: #d9d9d9 !important;
    }

/* Logo sizing */

.iac-logo-nav {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.iac-logo-footer {
    width: 60px;
    height: 60px;
    color: #ffffff;
}

.iac-logo-default {
    width: 80px;
    height: 80px;
    color: #ffffff;
}

/* Optional glow for hero SVG logo */
.iac-logo-glow {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
}

/* ================================
   HERO
   ================================ */

.text-glow {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.button-glow {
    box-shadow: var(--shadow-button);
}

/* Hero blur circles */

.iac-hero-blur,
.iac-cta-blur-left,
.iac-cta-blur-right {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    filter: blur(40px);
    pointer-events: none;
}

.iac-hero-blur-left {
    top: 20%;
    left: -10%;
}

.iac-hero-blur-right {
    bottom: 15%;
    right: -10%;
}

.iac-cta-blur-left {
    top: -10%;
    left: 10%;
}

.iac-cta-blur-right {
    bottom: -10%;
    right: 10%;
}

/* Scroll indicator */

.iac-scroll-indicator {
    bottom: 30px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #666;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 4px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #999;
    border-radius: 999px;
    animation: wheel 1.4s infinite;
}

@keyframes wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* ================================
   BUTTONS
   ================================ */

.btn-pill {
    padding: .6rem 1.6rem;
    border-radius: 50rem !important;
    font-weight: 600;
    letter-spacing: .06em;
    font-size: 0.9rem;
}

.btn-white {
    background: #ffffff;
    color: #000000 !important;
    border-radius: 50rem !important;
    border: none;
}

    .btn-white:hover {
        background: #eaeaea;
        color: #000000 !important;
    }

.btn-outline-white {
    border-radius: 50rem !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    background: transparent;
}

    .btn-outline-white:hover {
        background: #ffffff !important;
        color: #000000 !important;
    }

/* ================================
   CARDS & VALUES / LEADERS
   ================================ */

.card-shadow,
.iac-program-card,
.iac-leader-card,
.iac-youth-card,
.iac-support-card {
    box-shadow: var(--shadow-card);
}

.iac-card,
.iac-value-card,
.iac-leader-card,
.iac-youth-card,
.iac-support-card {
    background-color: #101010;
    border: 1px solid #252525;
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s ease;
}

    .iac-card:hover,
    .iac-value-card:hover,
    .iac-leader-card:hover,
    .iac-youth-card:hover,
    .iac-support-card:hover {
        border-color: #ffffff30;
        transform: translateY(-3px);
    }

/* Value icon */

.iac-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Leader avatar */

.iac-leader-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Youth leaders big card */

.iac-youth-card {
    background: var(--gradient-card);
    border-radius: 24px;
}

/* ================================
   PROGRAMS
   ================================ */

.iac-program-card {
    background: var(--gradient-card);
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .iac-program-card:hover {
        transform: translateY(-4px);
        border-color: #ffffff;
    }

.iac-program-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background-color: #151515;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* ================================
   GALLERY
   ================================ */

.gallery-tile {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

    .gallery-tile:hover {
        border-color: #ffffff33;
        transform: translateY(-3px);
    }

    .gallery-tile .aspect-square {
        aspect-ratio: 1 / 1;
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
/* ================================
   GALLERY
   ================================ */

.gallery-tile {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

    .gallery-tile:hover {
        border-color: #ffffff33;
        transform: translateY(-3px);
    }

    .gallery-tile .aspect-square {
        aspect-ratio: 1 / 1;
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
/* Clickable wrapper */
.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image container */
.gallery-tile .aspect-square {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Actual gallery image */
.gallery-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

/* Slight zoom on hover */
.gallery-tile:hover .gallery-img {
    transform: scale(1.07);
}

/* Text inside overlay */
.gallery-overlay span {
    line-height: 1.2;
}

/* ================================
   CONTACT
   ================================ */

.iac-contact-card {
    background: #0f0f0f;
    border-radius: 20px;
    border: 1px solid #222222;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.iac-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background-color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.iac-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: #bbbbbb;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .iac-social-btn:hover {
        border-color: #ffffff;
        color: #ffffff;
    }

/* Inputs */

.iac-input {
    background-color: #111111;
    border-color: #333333;
    color: #ffffff;
    border-radius: 12px;
}

    .iac-input::placeholder {
        color: #777777;
    }

    .iac-input:focus {
        border-color: #ffffff;
        box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.25);
        outline: none;
    }

/* ================================
   FOOTER
   ================================ */

.iac-heart {
    color: #ffffff;
    animation: pulseSlow 2s ease-in-out infinite;
}

@keyframes pulseSlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}
/* ================================
   RESPONSIVE TWEAKS
   ================================ */

/* Large tablets & down (≤ 992px) */
@media (max-width: 992px) {
    .navbar {
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .iac-program-card,
    .iac-card,
    .iac-contact-card {
        padding: 1.5rem;
    }
}

/* Tablets & big phones (≤ 768px) */
@media (max-width: 768px) {

    /* HERO */
    .gradient-hero {
        text-align: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

        .gradient-hero .display-1,
        .gradient-hero .display-2,
        .gradient-hero .display-3 {
            font-size: 2.2rem;
            line-height: 1.1;
        }

        .gradient-hero .lead {
            font-size: 0.98rem;
        }

    .btn-pill {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .iac-scroll-indicator {
        display: none; /* hide mouse scroll icon on small screens */
    }

    /* ABOUT / PROGRAMS / PARTNER spacing */
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    /* Cards stack nicely */
    .iac-program-card,
    .iac-card,
    .iac-contact-card,
    .iac-youth-card {
        margin-bottom: 1rem;
    }

    /* Contact layout: let Bootstrap stack columns, just fix paddings */
    .iac-contact-card {
        margin-top: 1.5rem;
    }
}

/* Small phones (≤ 576px) */
@media (max-width: 576px) {

    body {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .iac-logo-nav {
        width: 32px;
        height: 32px;
    }

    .iac-logo-footer {
        width: 48px;
        height: 48px;
    }

    /* Gallery tiles tighter on mobile */
    .gallery-tile {
        border-radius: 16px;
    }

    /* Reduce blur circle sizes */
    .iac-hero-blur,
    .iac-cta-blur-left,
    .iac-cta-blur-right {
        width: 180px;
        height: 180px;
        filter: blur(30px);
    }
}
