@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Caveat:wght@700&display=swap');

:root {
    --color-red: #ea2b33;
    --color-blue: #3498DB;
    --color-yellow: #F1C40F;
    --color-pink: #E81E63;
    --color-bg: #f8f9fc;
    --color-text: #2c3e50;
    --color-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text);
    background-color: #fafafa;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Colors */
.red { color: var(--color-red); }
.blue { color: var(--color-blue); }
.yellow { color: var(--color-yellow); }
.pink { color: var(--color-pink); }

.italic-serif {
    font-family: 'Caveat', cursive;
}
.script-quote {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    line-height: 1.2;
    color: #555;
}

/* Navbar */
.navbar {
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-logo img {
    height: 50px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-text strong {
    font-size: 1.1rem;
    color: #d35400;
}
.logo-text span {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 500;
    color: #444;
    position: relative;
}
.nav-links a.active, .nav-links a:hover {
    color: var(--color-red);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-red);
}

.btn-nav {
    background: var(--color-red);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 43, 51, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 20px;
    min-height: 600px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* A slight gradient overlay to make text readable */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 60px;
}

.hero-left {
    max-width: 500px;
}
.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 2.5rem;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-small-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
    text-align: right;
}
.hero-right .quote {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    line-height: 1.1;
    color: #444;
}
.hero-right .quote span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}
.jubilee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}
.jubilee-badge .big-25 {
    font-family: 'Caveat', cursive;
    font-size: 6rem;
    color: #cda434; /* gold */
    line-height: 0.8;
}
.jubilee-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    line-height: 1.2;
}
.jubilee-text .years {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    text-transform: lowercase;
    font-weight: 400;
}

/* Info Bar */
.info-bar { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); background: white; padding: 20px 40px; border-radius: 50px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 80%; max-width: 1000px; z-index: 10; }
.info-item { display: flex; align-items: center; gap: 15px; font-size: 0.95rem; }
.info-item .icon { font-size: 1.5rem; color: #ea2b33; }
.info-divider { width: 1px; height: 40px; background: #eee; }

/* Countdown Timer */
.countdown-section { padding: 60px 20px 10px; background-color: #fafafa; text-align: center; }
.countdown-container { max-width: 800px; margin: 0 auto; background: white; padding: 30px 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; }
.countdown-title { font-size: 1.5rem; color: #1a1a2e; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.countdown-timer { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.time-box { display: flex; flex-direction: column; align-items: center; background: #f8f9fa; padding: 15px 25px; border-radius: 12px; min-width: 100px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.time-number { font-size: 2.5rem; font-weight: 800; color: #ea2b33; line-height: 1; margin-bottom: 5px; }
.time-label { font-size: 0.9rem; color: #666; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.btn-primary {
    background: var(--color-red);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(234, 43, 51, 0.4);
    transform: translateY(-2px);
}
.small-alert {
    font-size: 0.7rem;
    color: #666;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.section-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
}
.section-heading {
    font-size: 3rem;
    line-height: 1.1;
    color: #222;
    margin: 10px 0 20px;
}
.section-text {
    color: #555;
    margin-bottom: 25px;
}
.btn-outline {
    border: 2px solid var(--color-red);
    color: var(--color-red);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}
.btn-outline:hover {
    background: var(--color-red);
    color: white;
}
.about-center {
    text-align: center;
    position: relative;
}
.large-quote {
    font-size: 8rem;
    color: rgba(232, 30, 99, 0.2);
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
    z-index: -1;
}
.about-right {
    position: relative;
}
.map-img {
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.map-caption {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    transform: rotate(-10deg);
    color: #333;
}

/* Program Highlights */
.program-section {
    background: #f4f6fa;
    padding: 80px 20px;
    text-align: center;
}
.program-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.program-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}
.icon-red { background: rgba(234, 43, 51, 0.1); color: var(--color-red); }
.icon-blue { background: rgba(52, 152, 219, 0.1); color: var(--color-blue); }
.icon-green { background: rgba(46, 204, 113, 0.1); color: #2ecc71; }
.icon-yellow { background: rgba(241, 196, 15, 0.1); color: var(--color-yellow); }
.icon-purple { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }
.icon-pink { background: rgba(232, 30, 99, 0.1); color: var(--color-pink); }
.program-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}
.program-card p {
    font-size: 0.9rem;
    color: #777;
}

/* Footer Banner */
.global-movement {
    background: url('../assets/hero_bg.png') center/cover;
    position: relative;
}
.dark-overlay {
    background: rgba(0,0,0,0.7);
    padding: 100px 20px;
}
.movement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}
.movement-left h2 {
    font-size: 3rem;
    margin: 10px 0;
}
.movement-left p {
    font-size: 1.1rem;
    color: #ddd;
}
.light { color: #ccc; }
.script-quote.light { color: white; transform: rotate(-5deg); font-size: 3rem;}

/* Bottom Facts */
.bottom-facts {
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
    gap: 20px;
}
.fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #333;
}
.fact-icon {
    font-size: 2rem;
    background: rgba(0,0,0,0.05);
    padding: 15px;
    border-radius: 50%;
}

/* Shared utility for Forms/Admin from previous design */
.container { max-width: 800px; margin: 40px auto; padding: 20px; }
.glass-form, .glass-panel { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--border-radius); padding: 30px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.hidden { display: none !important; }
label { display: block; font-weight: 600; margin-bottom: 8px; }
input[type="text"], input[type="number"], input[type="email"], select, textarea { width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0; border-radius: 8px; font-family: inherit; font-size: 1rem; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group label, .checkbox-grid label { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }

/* Admin Dashboard Specific */
.admin-body { background: var(--color-bg); }
.admin-header { display: flex; justify-content: space-between; padding: 20px 30px; background: white; }
.admin-content { display: flex; height: calc(100vh - 76px); }
.sidebar { width: 250px; background: white; padding: 20px 0; }
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar li { padding: 15px 30px; cursor: pointer; font-weight: 600; color: #666; }
.sidebar li.active { background: #eef2f5; color: var(--color-blue); border-left: 4px solid var(--color-blue); }
.main-panel { flex: 1; padding: 30px; overflow-y: auto; }
.table-container { background: white; border-radius: 8px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; z-index: 1000; }
.modal-content { background: white; padding: 30px; border-radius: var(--border-radius); width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; position: relative; }
.close-btn { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; cursor: pointer; }

/* Loading Overlay */
.loading-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: white; display: flex; justify-content: center; align-items: center; z-index: 9999; transition: opacity 0.5s; }
.spinner { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid var(--color-red); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Shared Section Styles */
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.alt-bg { background-color: #fcfcfc; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 40px; }

/* Why Join CEP */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-card { text-align: center; padding: 20px; background: white; border-radius: 20px; box-shadow: var(--shadow); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-5px); }
.feature-card h3 { color: var(--color-blue); margin-bottom: 10px; font-size: 1.2rem; }

/* Testimonials */
.testimonial-container { display: flex; gap: 40px; align-items: center; }
.testimonial-left { flex: 1; position: relative; padding: 40px; }
.testimonial-right { flex: 2; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.test-card { background: white; padding: 30px; border-radius: 20px; box-shadow: var(--shadow); position: relative; }
.avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.test-card p { font-style: italic; color: #555; margin-bottom: 15px; }
.test-card strong { color: var(--color-text); }
.test-card span { font-size: 0.8rem; color: #888; }

/* Program Steps (Overview) */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; position: relative; }
.step-card { background: white; padding: 30px 20px; border-radius: 20px; box-shadow: var(--shadow); text-align: center; position: relative; margin-top: 20px; }
.step-num { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; border: 4px solid #fafafa; }
.bg-red { background: var(--color-red); } .bg-blue { background: var(--color-blue); } .bg-green { background: #2ecc71; } .bg-yellow { background: var(--color-yellow); } .bg-purple { background: #9b59b6; }
.step-date { display: block; font-weight: 700; color: #555; margin-bottom: 10px; font-size: 0.9rem; }

/* Jubilee Layout */
.jubilee-layout { display: flex; gap: 40px; align-items: center; }
.jubilee-left { flex: 1; text-align: center; }
.large-25 { font-family: 'Caveat', cursive; font-size: 10rem; color: #800000; line-height: 0.8; }
.large-25-text { font-size: 1rem; font-weight: 700; letter-spacing: 2px; color: #555; line-height: 1.4; margin-top: 20px; }
.jubilee-center { flex: 2; }
.vision-box { display: flex; gap: 20px; background: rgba(234, 43, 51, 0.05); padding: 25px; border-radius: 15px; margin-top: 30px; border-left: 4px solid var(--color-red); }
.jubilee-right { flex: 1; text-align: right; }
.jubilee-right img { width: 100%; max-width: 300px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }

/* About Text/Image Content */
.about-text-content { flex: 1; }
.about-image-content { flex: 1; }
.mt-20 { margin-top: 20px; display: inline-block; }
.text-right { text-align: right; }

/* Footer */
.final-footer { background: #111; color: #888; padding: 20px 0; font-size: 0.9rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; padding: 0 20px; }
.footer-right a { margin-left: 15px; transition: color 0.2s; }
.footer-right a:hover { color: white; }

/* Jubilee Objectives */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
}
.objective-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.objective-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e0e0e0;
}
.objective-item p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin-top: 15px;
}

/* Intercession Page Styles */
.prayer-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 40px; align-items: stretch; }
.prayer-card { background: white; border-radius: 12px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #f0f0f0; }
.prayer-tabs { display: flex; border-bottom: 1px solid #eee; margin-bottom: 20px; }
.prayer-tab { background: none; border: none; padding: 10px 20px; font-weight: 500; color: #888; cursor: pointer; border-bottom: 2px solid transparent; }
.prayer-tab.active { color: var(--color-red); border-bottom-color: var(--color-red); }
.prayer-item { padding: 15px; border-bottom: 1px solid #f5f5f5; transition: background 0.2s; }
.prayer-item:hover { background: #fdfdfd; }
.prayer-item:last-child { border-bottom: none; }
.prayer-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #888; margin-bottom: 8px; }
.prayer-text { font-size: 0.95rem; color: #444; line-height: 1.5; margin-bottom: 15px; }
.prayer-actions { display: flex; justify-content: space-between; align-items: center; }
.btn-pray { background: white; border: 1px solid #ddd; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
.btn-pray:hover, .btn-pray.prayed { border-color: var(--color-red); color: var(--color-red); }
.theme-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.theme-tag { background: #f0f4f8; color: var(--color-blue); font-size: 0.8rem; padding: 5px 12px; border-radius: 20px; }
.glow-dot { position: absolute; width: 8px; height: 8px; background: #f1c40f; border-radius: 50%; box-shadow: 0 0 10px #f1c40f, 0 0 20px #f1c40f; animation: glow-pulse 2s infinite alternate; }
@keyframes glow-pulse { from { opacity: 0.4; transform: scale(1); } to { opacity: 1; transform: scale(1.5); } }

/* Live Intercession Counters */
.counter-card { background: rgba(255,255,255,0.8); border: 1px solid #eaeaea; border-radius: 12px; padding: 20px 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); backdrop-filter: blur(5px); }
.btn-pray-counter { display: inline-block; background: var(--color-blue); color: white; border: none; padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; }
.btn-pray-counter:hover:not(:disabled) { background: #1a4d8c; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-pray-counter:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-pray-counter.ripple::after { content: ''; position: absolute; top: 50%; left: 50%; width: 100px; height: 100px; background: rgba(255,255,255,0.4); border-radius: 50%; transform: translate(-50%, -50%) scale(0); animation: ripple 0.6s linear; }
@keyframes ripple { to { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } }

/* Masonry Grid & Community Wall */
.masonry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; align-items: start; }
.community-card { background: white; border-radius: 12px; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); border: 1px solid #f5f5f5; animation: fadeUp 0.5s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.community-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #888; margin-bottom: 10px; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.community-location { font-size: 0.8rem; color: var(--color-blue); font-weight: 600; display: flex; align-items: center; gap: 5px; }

/* Mobile Responsiveness */
@media (max-width: 900px) {
    /* Navbar specific */
    .nav-container { flex-direction: column; gap: 15px; padding: 15px 10px; }
    .logo-text { display: none; }
    .nav-links { gap: 15px; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }

    /* Hero */
    .hero-content { flex-direction: column; padding: 30px 15px; gap: 30px; text-align: center; }
    .hero-title { font-size: 3rem; margin-bottom: 15px; }
    .hero-subtitle { font-size: 1.6rem; margin-bottom: 15px; }
    .hero-small-text { font-size: 0.75rem; letter-spacing: 1px; }
    .hero-bg::after { background: rgba(255,255,255,0.9); }
    .hero-left { max-width: 100%; }
    .hero-right { align-items: center; text-align: center; gap: 20px; }
    
    /* Info bar */
    .info-bar { position: relative; bottom: 0; width: 100%; border-radius: 0; flex-direction: column; gap: 25px; padding: 30px 20px; text-align: center; }
    .info-divider { display: none; }
    .info-item { flex-direction: column; gap: 10px; }
    
    /* Layouts */
    .about-container { flex-direction: column; text-align: center; }
    .movement-content { flex-direction: column; text-align: center; gap: 30px; }
    .testimonial-container { flex-direction: column; text-align: center; }
    .jubilee-layout { flex-direction: column; text-align: center; }
    .vision-box { flex-direction: column; text-align: left; }
    .footer-container { flex-direction: column; gap: 15px; text-align: center; }
    .section-heading { font-size: 2.2rem; }
    
    .objectives-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .objective-item:not(:last-child)::after { display: none; }
    
    .prayer-layout { grid-template-columns: 1fr; gap: 30px; }
    .intercession-page .hero-section { display: none !important; }
    .intercession-page .info-bar { display: none !important; }
    .intercession-page .prayer-layout { display: flex !important; flex-direction: column-reverse; gap: 30px; }
    .intercession-page .intercession-content { padding-top: 30px !important; }

    /* Admin specific */
    .admin-content { flex-direction: column; height: auto; }
    .sidebar { width: 100%; padding: 10px 0; overflow-x: auto; background: #fff; border-bottom: 1px solid #eee; }
    .sidebar ul { display: flex; white-space: nowrap; gap: 10px; padding: 0 15px; }
    .sidebar li { padding: 10px 15px; font-size: 0.9rem; border-radius: 20px; color: #666; border-left: none !important; }
    .sidebar li.active { background: var(--color-blue); color: white; }
    .main-panel { padding: 15px; }
    .glass-panel, .glass-form { padding: 15px; }
    .table-container { overflow-x: auto; }
}

/* Custom Select Styles */
.custom-select-wrapper { position: relative; margin-bottom: 15px; text-align: left; }
.custom-select-display {
    width: 100%; border: 1px solid #ddd; border-radius: 8px; padding: 12px; font-family: inherit; background: white; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: border-color 0.2s;
}
.custom-select-display:hover { border-color: #bbb; }
.custom-select-options {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); z-index: 100; margin-top: 5px; max-height: 250px; overflow-y: auto;
}
.custom-select-options.active { display: block; }
.custom-select-option { padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f5f5f5; transition: background 0.2s; color: #333; font-size: 0.95rem; }
.custom-select-option:last-child { border-bottom: none; }
.custom-select-option:hover { background: #f8f9fa; color: var(--color-red); }

/* Jubilee Countdown Animations */
.jubilee-logo-countdown {
    width: 100px;
    height: auto;
    margin: -50px auto 15px; /* Pulls the logo up slightly */
    display: block;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.animate-pulse {
    animation: pulse-glow 2s infinite alternate;
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite ease-in-out;
}
@keyframes pulse-glow {
    0% { transform: scale(0.95); filter: drop-shadow(0 0 15px rgba(234, 43, 51, 0.2)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(234, 43, 51, 0.6)); }
}
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); color: var(--color-red); }
}
