/* ============================================
   GMIBM - Sinode Gereja Masehi Injili di Bolaang Mongondow
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary: #4a1d6b;
    --primary-dark: #2d1048;
    --primary-light: #7b4fc4;
    --gold: #c9a84c;
    --gold-light: #e0c878;
    --gold-dark: #a88a30;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.text-left {
    text-align: left;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-header.text-left .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 16px auto 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-digital {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-digital:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(74, 29, 107, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar.scrolled {
    background: rgba(45, 16, 72, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(42,74,127,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(247,248,250,0.3), transparent);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
    pointer-events: none;
}

/* Cross pattern background */
.hero-pattern {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(201,168,76,0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Countdown Section
   ============================================ */
.countdown-section {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.countdown-desc {
    font-size: 1.2rem;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.countdown-item {
    background: var(--primary);
    color: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    min-width: 100px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.countdown-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.countdown-date {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    border-top: 3px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.about-icon {
    width: 72px;
    height: 72px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.about-card:hover .about-icon {
    background: var(--primary);
    color: var(--gold-light);
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.about-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Vision & Mission Section
   ============================================ */
.vision-section {
    padding: 100px 0;
    background: var(--white);
}

.vision-main {
    max-width: 900px;
    margin: 0 auto;
}

.vision-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 48px;
    box-shadow: var(--shadow-lg);
}

.vision-title {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.4;
}

.vision-title span {
    color: var(--gold-light);
    font-size: 2.4rem;
    display: block;
    margin-top: 8px;
}

.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    transition: all var(--transition);
}

.pillar:hover {
    background: #eef1f6;
    transform: translateX(4px);
}

.pillar-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
    min-width: 60px;
    line-height: 1;
}

.pillar h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.pillar p {
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.mission-box {
    background: var(--gray-100);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray-200);
}

.mission-box h3 {
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.mission-box p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   Event Section
   ============================================ */
.event-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.event-cards {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.event-card.featured {
    grid-row: span 1;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.event-card-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 36px 28px;
    text-align: center;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.event-day {
    font-size: 0.9rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-date {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.event-time {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.event-card-body {
    padding: 32px;
}

.event-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.event-card.featured .event-icon {
    background: var(--primary);
    color: var(--gold-light);
}

.event-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.event-card-body p {
    color: var(--gray-600);
    font-size: 0.93rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.event-detail i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto 24px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.map-actions {
    text-align: center;
}

/* ============================================
   Committee Section
   ============================================ */
.committee-section {
    padding: 100px 0;
    background: var(--off-white);
}

.committee-bps {
    text-align: center;
    margin-bottom: 48px;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
}

.committee-bps h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.bps-members {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.bps-member {
    text-align: center;
}

.bps-role {
    font-size: 0.85rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.bps-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.committee-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.committee-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Wide committee card spans full width */
.committee-card--wide {
    grid-column: 1 / -1;
}

/* Committee roles layout */
.committee-roles {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.committee-role {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    align-items: flex-start;
    border-left: 3px solid var(--gold);
}

.role-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
    flex-shrink: 0;
}

.role-value {
    font-size: 0.93rem;
    color: var(--gray-700);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .committee-role {
        flex-direction: column;
        gap: 4px;
    }

    .role-label {
        min-width: auto;
    }

    .committee-card--wide {
        grid-column: span 1;
    }
}

.committee-title {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.committee-coordinator {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.committee-coordinator strong {
    color: var(--primary);
}

.committee-list {
    list-style: none;
    padding: 0;
}

.committee-list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    border-bottom: 1px dashed var(--gray-200);
    position: relative;
    padding-left: 16px;
}

.committee-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.committee-list li:last-child {
    border-bottom: none;
}

.committee-download {
    text-align: center;
}

.committee-download .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.committee-download .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Digital Section
   ============================================ */
.digital-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.digital-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.digital-content .section-title {
    color: var(--white);
}

.digital-content .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.digital-content .section-header .section-title::after {
    background: var(--gold);
}

.digital-content .event-badge {
    background: rgba(201,168,76,0.3);
    color: var(--gold-light);
}

.digital-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.digital-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
}

.digital-feature i {
    color: var(--gold-light);
    font-size: 1.2rem;
}

.digital-app-card {
    background: var(--white);
    color: var(--gray-800);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.digital-app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.digital-app-card h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.digital-app-name {
    font-size: 1rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 16px;
}

.digital-app-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: #eef1f6;
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.contact-info-card h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-form {
    background: var(--off-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 29, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-icon {
    margin-bottom: 16px;
}

.footer-brand-icon .brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--gold-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .event-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .event-card.featured {
        grid-column: span 2;
    }

    .digital-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(45, 16, 72, 0.98);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        padding: 16px 12px;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .event-cards {
        grid-template-columns: 1fr;
    }

    .event-card.featured {
        grid-column: span 1;
    }

    .committee-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bps-members {
        gap: 24px;
    }

    .vision-title span {
        font-size: 1.8rem;
    }

    .pillar {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .countdown-timer {
        gap: 6px;
    }

    .countdown-item {
        padding: 12px 8px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }
}