/* CSS Custom Properties */
:root {
    --primary-red: #e1201b;
    --dark-red: #b71c1c;
    --light-red: #ff6b6b;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #666666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-dark: linear-gradient(135deg, #000000 0%, #333333 50%, #e1201b 100%);
    --gradient-red: linear-gradient(135deg, #e1201b 0%, #ff6b6b 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.3);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(225, 32, 27, 0.3));
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    background: rgba(225, 32, 27, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--gradient-red);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Verse of the Day Section */
.verse-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: var(--white);
    padding: 2rem 0;
    border-bottom: 3px solid var(--primary-red);
}

.verse-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.verse-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.verse-text {
    flex: 1;
}

.verse-text h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
}

.verse-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 1rem 0;
    color: var(--white);
    position: relative;
}

.verse-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: 'Playfair Display', serif;
}

.verse-reference {
    display: block;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    font-style: normal;
    text-align: right;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-sticker {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: grayscale(100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    color: var(--white);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-sub {
    display: block;
    color: var(--primary-red);
    font-size: 2rem;
    margin-top: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-mission {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-large {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(220, 20, 60, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--gradient-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.definition {
    margin: 2rem 0;
    font-size: 1.5rem;
}

.definition-word {
    color: var(--primary-red);
    font-style: italic;
    font-weight: 600;
}

.definition-type {
    color: var(--gray);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Group Photo Section */
.group-photo-section {
    padding: 6rem 0;
    background: var(--white);
}

.group-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.photo-placeholder {
    border: 3px dashed var(--primary-red);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    background: var(--light-gray);
    transition: var(--transition);
}

.photo-placeholder:hover {
    background: rgba(225, 32, 27, 0.05);
    border-color: var(--dark-red);
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.photo-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.photo-placeholder small {
    color: var(--gray);
}

.group-text h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.group-text h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
}

.group-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    color: var(--white);
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.founder-section .section-title {
    color: var(--white);
}

.vision-points {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.vision-point {
    background: rgba(225, 32, 27, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-red);
    transition: var(--transition);
}

.vision-point:hover {
    background: rgba(225, 32, 27, 0.2);
    transform: translateY(-5px);
}

.vision-point h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin: 0;
}

.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-red);
    border-radius: var(--border-radius);
}

.founder-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--primary-red);
    font-style: normal;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-red);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Gallery Styles */
.gallery-hero,
.events-hero,
.login-hero,
.admin-hero,
.import-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.gallery-title,
.events-title,
.login-title,
.admin-title,
.import-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-subtitle,
.admin-subtitle,
.import-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Featured Gallery */
.featured-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.gallery-scroll-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--light-gray);
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

.gallery-item {
    flex: 0 0 300px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.image-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    border: 2px dashed var(--gray);
    border-radius: var(--border-radius);
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Category Tabs */
.categories-section {
    padding: 2rem 0;
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-button:hover,
.tab-button.active {
    background: var(--primary-red);
    color: var(--white);
}

/* All Photos Gallery */
.all-photos-section {
    padding: 4rem 0;
    background: var(--white);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.modal-description {
    color: var(--gray);
    line-height: 1.6;
}

/* Events Page */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.coming-soon-content {
    text-align: center;
    max-width: 500px;
}

.coming-soon-content i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.coming-soon-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1877f2;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.facebook-link:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

/* Login Page */
.login-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.login-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 400px;
    width: 100%;
}

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.credentials-display {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.credentials-display h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.credentials-display p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.error-message {
    background: rgba(225, 32, 27, 0.2);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid var(--primary-red);
}

/* Admin Dashboard */
.admin-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #333333 50%, #e1201b 75%, #ff6b6b 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #333333 50%, #e1201b 75%, #ff6b6b 100%); }
    50% { background: linear-gradient(135deg, #1a1a1a 0%, #333333 25%, #e1201b 50%, #ff6b6b 75%, #ff8e8e 100%); }
}

.admin-hero .container {
    position: relative;
    z-index: 2;
}

.admin-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.admin-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.admin-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.stats-section {
    padding: 4rem 0;
    background: var(--light-gray);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-content h3 {
    font-size: 2rem;
    color: var(--black);
    margin: 0;
}

.stat-content p {
    color: var(--gray);
    margin: 0;
}

.actions-section {
    padding: 4rem 0;
    background: var(--light-gray);
    position: relative;
}

.actions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.action-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--black);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.action-card:hover::before {
    left: 100%;
}

.action-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.action-card h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.action-card p {
    color: var(--gray);
    margin: 0;
}

.recent-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.recent-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.recent-section .section-title {
    position: relative;
    margin-bottom: 3rem;
}

.recent-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.recent-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.recent-item {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(220, 20, 60, 0.1);
    position: relative;
}

.recent-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.recent-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.recent-item:hover::before {
    transform: scaleX(1);
}

.recent-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.recent-info {
    padding: 1rem;
}

.recent-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.recent-info p {
    color: var(--primary-red);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.recent-info small {
    color: var(--gray);
    font-size: 0.8rem;
}

.no-images {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.no-images i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.category-stats-section {
    padding: 4rem 0;
    background: var(--light-gray);
    position: relative;
}

.category-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.category-stats {
    max-width: 600px;
    margin: 0 auto;
}

.category-stat {
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(220, 20, 60, 0.1);
    transition: var(--transition);
}

.category-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.category-stat h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 4px;
    transition: width 1s ease;
}

.stat-count {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Help Section */
.help-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}

.help-content {
    max-width: 1000px;
    margin: 0 auto;
}

.help-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.help-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-red);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.help-tips {
    background: rgba(225, 32, 27, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(220, 20, 60, 0.2);
}

.help-tips h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.help-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-tips li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.help-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Upload Section */
.upload-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.upload-container {
    max-width: 800px;
    margin: 0 auto;
}

.upload-area {
    border: 3px dashed var(--primary-red);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: var(--dark-red);
    background: rgba(225, 32, 27, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.upload-content i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    display: block;
}

.upload-content h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.upload-content p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.upload-content small {
    color: var(--gray);
    font-size: 0.9rem;
}

.upload-progress {
    margin-top: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: var(--gray);
    font-weight: 600;
}

.upload-results {
    margin-top: 2rem;
}

.upload-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.upload-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border: 1px solid #28a745;
}

.upload-message.error {
    background: rgba(225, 32, 27, 0.1);
    color: #721c24;
    border: 1px solid var(--primary-red);
}

.upload-message.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border: 1px solid #ffdb08;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Import Page */
.import-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.import-content {
    max-width: 600px;
    margin: 0 auto;
}

.import-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.info-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.info-card code {
    background: var(--light-gray);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-red);
}

.import-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.import-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    font-weight: 500;
    cursor: pointer;
}

.import-form input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.import-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.import-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.import-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.back-button,
.view-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.back-button:hover,
.view-button:hover {
    background: var(--primary-red);
    color: var(--white);
}

.success-message {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid #28a745;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .verse-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .verse-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .verse-quote::before {
        left: -15px;
        top: -5px;
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .group-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-points {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-scroll {
        padding: 1rem 0;
    }
    
    .gallery-item {
        flex: 0 0 250px;
    }
    
    .stats-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .recent-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .import-actions {
        flex-direction: column;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .upload-content i {
        font-size: 3rem;
    }
    
    .upload-content h3 {
        font-size: 1.2rem;
    }
    
    .upload-content p {
        font-size: 1rem;
    }
    
    .admin-title {
        font-size: 2.5rem;
    }
    
    .admin-subtitle {
        font-size: 1.1rem;
    }
    
    .help-steps {
        grid-template-columns: 1fr;
    }
    
    .help-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-title,
    .events-title,
    .login-title,
    .admin-title,
    .import-title {
        font-size: 2rem;
    }
    
    .gallery-item {
        flex: 0 0 200px;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Success Banner */
.success-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    z-index: 3000;
    animation: slideInRight 0.5s ease;
    max-width: 300px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-content i {
    font-size: 1.2rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    color: var(--white);
    font-size: 1.5rem;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.fab-main.active {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--black);
    font-weight: 500;
}

.fab-item:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(-5px);
}

.fab-item i {
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-red);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
    background: var(--white);
    color: var(--black);
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background: var(--light-gray);
    cursor: not-allowed;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}

/* Photo Upload Area */
.photo-upload-area {
    border: 2px dashed var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.photo-upload-area:hover {
    border-color: var(--primary-red);
    background: rgba(225, 32, 27, 0.05);
}

.photo-upload-area.drag-over {
    border-color: var(--primary-red);
    background: rgba(225, 32, 27, 0.1);
    transform: scale(1.02);
}

.upload-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.upload-preview i {
    font-size: 2rem;
    color: var(--gray);
}

.upload-preview p {
    margin: 0;
    color: var(--black);
    font-weight: 500;
}

.upload-preview small {
    color: var(--gray);
    font-size: 0.8rem;
}

.uploaded-image {
    position: relative;
    display: inline-block;
}

.uploaded-image img {
    max-width: 200px;
    max-height: 150px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.remove-photo {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.remove-photo:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-cancel,
.btn-save,
.btn-danger {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel {
    background: var(--light-gray);
    color: var(--gray);
}

.btn-cancel:hover {
    background: var(--gray);
    color: var(--white);
}

.btn-save {
    background: var(--gradient-red);
    color: var(--white);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-danger {
    background: #dc3545;
    color: var(--white);
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(220, 20, 60, 0.1);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-event-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}

.sticker-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.event-date {
    background: var(--gradient-red);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.event-description {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.event-detail i {
    color: var(--primary-red);
    width: 16px;
}

.event-status {
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-upcoming {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-ongoing {
    background: rgba(255, 193, 7, 0.1);
    color: #ffdb08;
}

.status-completed {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}
