/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #1a237e;
    --blue: #283593;
    --light-blue: #3949ab;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --gray-dark: #424242;
    --gold: #ffd700;
    --highlight: #4fc3f7;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, #0c2461 0%, #1a237e 100%);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Stars Background */
#stars, #stars2, #stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--highlight);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--highlight);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 35, 126, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--highlight);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 35, 126, 0.9) 0%,
        rgba(26, 35, 126, 0.7) 50%,
        rgba(26, 35, 126, 0.9) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--highlight);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--gray);
    font-family: 'Open Sans', sans-serif;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--gray-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--highlight);
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    color: var(--highlight);
    border-color: var(--highlight);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button .arrow {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--highlight);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 15px;
    font-family: 'Open Sans', sans-serif;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-light);
    font-family: 'Open Sans', sans-serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Showcase Styles */
.video-showcase {
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--highlight);
    margin-bottom: 10px;
}

.video-showcase-caption {
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: 10px;
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}

.video-embed {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Theme Section */
.theme-section {
    background: linear-gradient(135deg, rgba(39, 60, 117, 0.3) 0%, rgba(26, 35, 126, 0.5) 100%);
    margin: 40px 20px;
    border-radius: 20px;
}

.theme-content {
    max-width: 800px;
    margin: 0 auto;
}

.theme-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.theme-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.theme-icon {
    font-size: 3rem;
    color: var(--highlight);
}

.scripture-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--highlight);
}

.scripture {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.scripture-reference {
    display: block;
    text-align: right;
    color: var(--highlight);
    font-weight: 600;
}

.theme-reflection p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-light);
    font-family: 'Open Sans', sans-serif;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8) 0%, rgba(39, 60, 117, 0.9) 100%);
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-btn:hover {
    background: rgba(79, 195, 247, 0.2);
    border-color: var(--highlight);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--highlight);
    color: var(--dark-blue);
    border-color: var(--highlight);
    font-weight: 600;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--highlight);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: rgba(26, 35, 126, 0.9);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-info {
    padding: 25px;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.4;
}

.gallery-caption {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.gallery-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-view-more {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(79, 195, 247, 0.2);
    color: var(--white);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.gallery-view-more:hover {
    background: var(--highlight);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
}

.gallery-view-more svg {
    fill: currentColor;
}

/* Videos Section */
.videos-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.videos-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.video-item:last-child {
    margin-bottom: 0;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--highlight);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.video-icon {
    font-size: 2rem;
    color: var(--highlight);
}

.video-wrapper, .video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.video-wrapper iframe, .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-light);
    font-family: 'Open Sans', sans-serif;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.impact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.impact-item p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, rgba(39, 60, 117, 0.3) 0%, rgba(26, 35, 126, 0.5) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 40px 20px;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-header {
    margin-bottom: 40px;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.thank-you-divider {
    width: 100px;
    height: 4px;
    background: var(--highlight);
    margin: 0 auto;
    border-radius: 2px;
}

.thank-you-message {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--highlight);
}

.thank-you-message h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.final-message {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--highlight);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--highlight);
    margin-bottom: 10px;
    font-style: italic;
}

.closing-text {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

.yacc-community {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.yacc-community h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.community-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.community-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.community-icon:nth-child(1) { animation-delay: 0s; }
.community-icon:nth-child(2) { animation-delay: 0.5s; }
.community-icon:nth-child(3) { animation-delay: 1s; }
.community-icon:nth-child(4) { animation-delay: 1.5s; }

.community-text {
    font-size: 1rem;
    color: var(--gray-light);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* Video Meta Information */
.video-meta {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.video-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--highlight);
    font-weight: 500;
}

/* Footer Social Media Styles */
.footer-social {
    margin: 30px 0;
    text-align: center;
}

.footer-social h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0.1) 100%);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-icon.youtube:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.2) 100%);
    border-color: #ff0000;
}

.social-icon.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2) 0%, rgba(24, 119, 242, 0.1) 100%);
    border-color: rgba(24, 119, 242, 0.3);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.3) 0%, rgba(24, 119, 242, 0.2) 100%);
    border-color: #1877f2;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* YouTube icon color */
.social-icon.youtube svg {
    color: #ff0000;
}

/* Facebook icon color */
.social-icon.facebook svg {
    color: #1877f2;
}

/* Footer */
.main-footer {
    background: rgba(10, 15, 70, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-info {
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-message {
    font-size: 1.1rem;
    color: var(--highlight);
    font-style: italic;
    font-family: 'Open Sans', sans-serif;
}

.footer-contact {
    margin-bottom: 30px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    fill: var(--highlight);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--highlight);
}

.footer-credits {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.documentation-info p,
.creator-info p {
    margin-bottom: 10px;
    color: var(--gray-light);
    font-family: 'Open Sans', sans-serif;
}

.creator-info strong {
    color: var(--highlight);
    font-weight: 600;
}

.footer-copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.footer-copyright .next-yacc {
    font-size: 1rem;
    color: var(--highlight);
    font-weight: 600;
    margin-top: 10px;
    font-style: italic;
}

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    z-index: 2001;
    background: rgba(26, 35, 126, 0.95);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
    background: var(--highlight);
    color: var(--dark-blue);
    transform: rotate(90deg);
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-image-container:hover .modal-image {
    transform: scale(1.02);
}

.modal-image-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.modal-category {
    padding: 8px 20px;
    background: rgba(26, 35, 126, 0.9);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.modal-caption {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.modal-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--highlight);
}

.modal-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
}

.modal-stat-icon {
    font-size: 1rem;
}

.modal-stat-text {
    color: var(--gray-light);
    font-weight: 500;
}

.modal-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-nav-btn:hover {
    background: var(--highlight);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.modal-nav-btn svg {
    fill: currentColor;
}

#prevBtn svg {
    transform: rotate(180deg);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-results h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.no-results p {
    color: var(--gray-light);
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-icons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .social-icon {
        width: 200px;
        justify-content: center;
    }
    
    .modal-image-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .theme-card {
        padding: 25px;
    }

    .video-item {
        padding: 20px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-content {
        grid-template-columns: 1fr;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-message {
        padding: 25px;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
    
    .thank-you-message h3 {
        font-size: 1.5rem;
    }
    
    .video-showcase-title {
        font-size: 1.5rem;
    }
    
    .community-icons {
        gap: 15px;
    }
    
    .community-icon {
        font-size: 2rem;
    }
    
    .modal-image-container {
        height: 250px;
    }
    
    .modal-info {
        padding: 25px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-caption {
        font-size: 1rem;
    }
    
    .modal-navigation {
        flex-direction: column;
    }
    
    .modal-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .video-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .video-stat {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .theme-card {
        padding: 20px;
    }

    .scripture {
        font-size: 1rem;
    }

    .video-item {
        padding: 15px;
    }

    .impact-item {
        padding: 20px;
    }

    .gallery-filter {
        gap: 5px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .thank-you-message {
        padding: 20px;
    }
    
    .video-showcase {
        padding: 20px;
    }
    
    .community-icons {
        gap: 10px;
    }
    
    .community-icon {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 180px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .modal-image-container {
        height: 200px;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-details {
        padding: 15px;
    }
    
    .modal-stat {
        width: 100%;
        justify-content: center;
    }
    
    .video-stat {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}