/* Brand Theme and Global Styles */
body {
    background-color: #292929;
    color: #f5f5f7;
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(41, 41, 41, 0.88), rgba(41, 41, 41, 0.88)), url("../img/bg-med.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px 40px;
}

/* Header Section */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.logo {
    max-width: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
}

.tagline {
    font-family: 'Kristi', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: #bbddff;
    /* Vibrant custom neon pink */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 51, 102, 0.4);
    margin: 15px 0 0 0;
    text-align: center;
    letter-spacing: 1.5px;
}

.tagline img {
    width: 80%;
    height: auto;
    max-width: 574px;
}

/* Intro Section & Glassmorphic Card */
.intro-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.glass-card {

    background: rgba(200, 200, 255, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 40px;
    max-width: 800px;
    width: 100%;
    /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4); */
    text-align: justify;
    box-sizing: border-box;
}

.glass-card h2 {
    font-family: 'Kristi', cursive;
    font-size: 2.2rem;
    color: #00ffff;
    /* Neon cyan contrast */
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 255, 255, 0.3);
}

.glass-card p {
    font-size: .9rem;
    line-height: 1.2;
    color: #e0e0e6;
    margin: 0;
    font-weight: 300;
}

.intro-lead {
    font-size: 1.25rem !important;
    line-height: 1.6;
    margin-bottom: 0 !important;
    color: #ffffff !important;
}

.intro-columns {
    display: flex;
    gap: 40px;
    text-align: left;
    margin-top: 25px;
}

.intro-column {
    flex: 1;
}

.intro-column h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.intro-column:first-of-type h3 {
    color: #00ffff;
    /* Neon cyan for Celebrate */
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding-bottom: 8px;
}

.intro-column:last-of-type h3 {
    color: #ff3366;
    /* Neon pink for Oppose */
    border-bottom: 1px solid rgba(255, 51, 102, 0.2);
    padding-bottom: 8px;
}

.intro-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-column li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #b0b0bb;
    position: relative;
    padding-left: 20px;
}

.intro-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.intro-column:first-of-type li::before {
    color: #00ffff;
}

.intro-column:last-of-type li::before {
    color: #ff3366;
}

.intro-column li strong {
    color: #ffffff;
}

/* Gallery Section & Grid */
.gallery-section {
    margin-bottom: 80px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-header h2 {
    width: 60%;
    max-width: 320px;
    font-family: 'Babylonica', cursive;
    font-size: 2.6rem;
    color: #000099;
    /* Neon yellow/gold */
    margin: 0 0 10px 0;
    /* text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8), 0 0 2px rgba(255, 54, 0, 0.9); */
}

.gallery-header p {
    font-size: 1.05rem;
    color: #b0b0bb;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    padding: 10px 0;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 51, 102, 0.25);
}

.gallery-item:hover::after {
    border-color: rgba(255, 51, 102, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
    filter: grayscale(15%) brightness(85%);
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(105%);
}

/* Image title overlay inside thumbnail */
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

/* Shadowbox (Lightbox Modal) styling */
.shadowbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.96);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.shadowbox.active {
    opacity: 1;
    pointer-events: auto;
}

.shadowbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1010;
}

.shadowbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.shadowbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    transition: all 0.2s ease;
    z-index: 1010;
}

.shadowbox-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.05);
}

.shadowbox-nav svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.shadowbox-prev {
    left: 30px;
}

.shadowbox-next {
    right: 30px;
}

.shadowbox-content {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.96);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadowbox.active .shadowbox-content {
    transform: scale(1);
}

.shadowbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Prevent image dragging */
    -webkit-user-drag: none;
}

.shadowbox-info {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 85%;
    max-width: 600px;
    z-index: 1010;
}

.shadowbox-caption {
    font-family: 'Cabin Sketch', cursive;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.1);
}

.shadowbox-counter {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 1px;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 50px 0 30px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsiveness & Mobile Tweaks */
@media (max-width: 768px) {
    .container {
        padding: 15px 20px;
    }

    .header {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .logo {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .intro-section {
        margin-bottom: 40px;
    }

    .glass-card {
        padding: 20px 25px;
    }

    .glass-card h2 {
        font-size: 1.7rem;
    }

    .glass-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .intro-columns {
        flex-direction: column;
        gap: 25px;
    }

    .intro-column h3 {
        font-size: 1.15rem;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 16px;
    }

    .shadowbox-nav {
        width: 46px;
        height: 46px;
    }

    .shadowbox-prev {
        left: 15px;
    }

    .shadowbox-next {
        right: 15px;
    }

    .shadowbox-close {
        top: 15px;
        right: 20px;
        font-size: 38px;
    }

    .shadowbox-caption {
        font-size: 1.4rem;
    }

    .shadowbox-content img {
        max-height: 65vh;
    }
}