/* Additional Admin Styles */
.search-filter-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.eagle-icon::before {
    content: "🦅";
    font-family: "Apple Color Emoji", "Segoe UI Emoji";
}
.search-filter-form .filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto auto;
    gap: 1rem;
    align-items: end;
}

.bulk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.bulk-actions form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.registration-checkbox {
    transform: scale(1.2);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #6b7280;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #4b5563;
}

.page-navigation {
    margin-bottom: 2rem;
}

/* Registration Details Styles */
.registration-details-section {
    padding: 8rem 0 5rem;
    background: #f8fafc;
    margin-top: 70px;
}

.registration-header {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-header h1 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.registration-view, .registration-edit {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.view-actions, .edit-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-end;
}

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

.info-section {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.info-section h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item strong {
    min-width: 140px;
    color: #1e3a8a;
    font-weight: 600;
}

.info-item span {
    color: #666;
    flex: 1;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.active {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.form-sections {
    display: grid;
    gap: 2rem;
}

.form-section {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.form-section h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Email Blast Styles */
.email-blast-section {
    padding: 8rem 0 5rem;
    background: #f8fafc;
    margin-top: 70px;
}

.recipient-stats {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.recipient-stats h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.email-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.email-form {
    max-width: 800px;
    margin: 0 auto;
}

.recipient-options {
    margin-top: 1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.radio-label:hover {
    background: #e5e7eb;
}

.radio-label input[type="radio"] {
    margin: 0;
}

.filter-options {
    margin-top: 1rem;
    padding: 1rem;
    background: #e5e7eb;
    border-radius: 5px;
}

.message-help {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 5px;
    border-left: 4px solid #3b82f6;
}

.message-help h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.message-help ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.message-help code {
    background: #e5e7eb;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: monospace;
}

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

.template-btn {
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.template-btn:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

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

.email-preview-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.email-preview-section h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.preview-emails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-email {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 5px;
    border-left: 4px solid #fbbf24;
}

.preview-header, .preview-subject {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.preview-message {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.preview-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 5px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Events Page Styles */
.main-event {
    padding: 5rem 0;
    background: white;
}

.event-highlight {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.event-badge {
    background: #fbbf24;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.event-content h3 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-theme {
    font-size: 1.5rem;
    color: #fbbf24;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 5px;
}

.detail i {
    color: #1e3a8a;
    font-size: 1.2rem;
}

.event-description {
    margin-bottom: 2rem;
}

.event-highlights h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.event-highlights ul {
    list-style: none;
    padding: 0;
}

.event-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.event-highlights i {
    color: #059669;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-widget, .speakers-preview {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.countdown-widget h4, .speakers-preview h4 {
    margin-bottom: 1rem;
    color: #F4FDFF;
}

.mini-countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
}

.time-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.time-box label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.speaker-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.speaker-mini img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.speaker-mini div strong {
    display: block;
    margin-bottom: 0.25rem;
}

.speaker-mini div span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-schedule {
    padding: 5rem 0;
    background: #f8fafc;
}

.event-schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-item .time {
    background: #1e3a8a;
    color: white;
    padding: 1.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-item .activity {
    padding: 1.5rem;
    flex: 1;
}

.schedule-item .activity h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.schedule-item .activity p {
    color: #666;
    margin: 0;
}

.future-events {
    padding: 5rem 0;
    background: white;
}

.future-events h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
}

.event-date {
    background: #1e3a8a;
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: bold;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.25rem 0;
}

.event-date .year {
    font-size: 0.8rem;
    opacity: 0.8;
}

.event-info {
    padding: 1.5rem;
    flex: 1;
}

.event-info h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.event-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #999;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-info-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Bookstore Styles */
.coming-soon-section {
    padding: 8rem 0 5rem;
    background: white;
    margin-top: 70px;
}

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

.coming-soon-icon i {
    font-size: 5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

.coming-soon-content h2 {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.coming-soon-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.preview-items h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
}

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

.preview-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-top: 4px solid #fbbf24;
}

.preview-item i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.preview-item h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.preview-item p {
    color: #666;
    line-height: 1.6;
}

.notify-section {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.notify-section h3 {
    margin-bottom: 1rem;
}

.notify-section p {
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
}

.featured-preview {
    padding: 5rem 0;
    background: #f8fafc;
}

.featured-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-image i {
    font-size: 3rem;
    color: #fbbf24;
}

.resource-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.author {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price {
    background: #fbbf24;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.scripture-promise {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-resources {
    padding: 5rem 0;
    background: white;
}

.why-resources h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border-top: 4px solid #1e3a8a;
}

.benefit-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.resource-contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.resource-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.resource-contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-option {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-option i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.contact-option h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-option p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-section {
    padding: 5rem 0;
    background: white;
}

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

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form .form-row {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
}

.newsletter-promise {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
    .search-filter-form .filter-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bulk-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .bulk-actions form {
        flex-wrap: wrap;
    }
    
    .event-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-details {
        grid-template-columns: 1fr;
    }
    
    .event-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mini-countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .time-box {
        min-width: 50px;
        padding: 0.75rem;
    }
    
    .time-box span {
        font-size: 1.2rem;
    }
    
    .schedule-item {
        flex-direction: column;
    }
    
    .schedule-item .time {
        min-width: auto;
        padding: 1rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .preview-grid, .resources-grid, .benefits-grid, .contact-options {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .notify-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .newsletter-form .form-row {
        flex-direction: column;
        max-width: 300px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .template-buttons {
        grid-template-columns: 1fr;
    }
    
    .view-actions, .edit-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        gap: 0.5rem;
    }
    
    .radio-label {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}
    /* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header i {
    margin-right: 1rem;
    color: #fbbf24;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Page Styles */
.mission-section, .vision-section {
    padding: 5rem 0;
}

.mission-section {
    background: white;
}

.vision-section {
    background: #f8fafc;
}

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

.mission-text h2, .vision-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.mission-text p, .vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.mission-text ul, .vision-text ul {
    list-style: none;
    padding: 0;
}

.mission-text li, .vision-text li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.mission-text li:before, .vision-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
    font-size: 1.2rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #fbbf24;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.leadership-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.leader-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fbbf24;
}

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

.leader-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: #fbbf24;
    font-weight: bold;
    margin-bottom: 1rem;
}

.leader-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-contact {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.leader-contact p {
    color: #1e3a8a;
    font-weight: bold;
}

.leader-contact i {
    margin-right: 0.5rem;
    color: #fbbf24;
}

/* Eagles Section */
.eagles-section {
    padding: 5rem 0;
    background: white;
}

.eagles-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.eagles-explanation {
    max-width: 800px;
    margin: 0 auto;
}

.eagle-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.eagle-point i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.eagle-point h4 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.eagle-point p {
    color: #666;
    line-height: 1.6;
}

/* Scripture Foundation */
.scripture-foundation {
    padding: 5rem 0;
    background: #f8fafc;
}

.scripture-foundation h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.scripture-verses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.verse-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #1e3a8a;
}

.verse-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.verse-card cite {
    font-size: 1rem;
    color: #fbbf24;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2, .contact-form-section h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Social Links */
.social-links h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook { background: #3b5998; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: #e4405f; }
.social-link.youtube { background: #ff0000; }

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Quick Contact */
.quick-contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.quick-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.quick-option {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-option i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.quick-option h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.quick-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.faq-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.faq-item h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-details h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.location-details p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.location-details i {
    margin-right: 0.5rem;
    color: #fbbf24;
    width: 20px;
}

.directions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #1e3a8a;
}

.directions h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.directions p {
    color: #666;
    line-height: 1.6;
}

.map-placeholder {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

/* Registration Form Styles */
.registration-section {
    padding: 8rem 0 5rem;
    background: #f8fafc;
    margin-top: 70px;
}

.registration-header {
    text-align: center;
    margin-bottom: 3rem;
}

.registration-header i {
    font-size: 4rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.registration-header h1 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.registration-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Chart Styles */
.statistics-charts {
    padding: 3rem 0;
    background: #f8fafc;
}

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

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chart-container h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.country-name {
    min-width: 100px;
    font-weight: bold;
    color: #1e3a8a;
}

.progress-bar {
    flex: 1;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    transition: width 0.3s ease;
}

.country-count {
    min-width: 30px;
    text-align: right;
    font-weight: bold;
    color: #666;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a, .pagination span {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #1e3a8a;
    color: white;
}

/* Actions Grid */
.actions-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .mission-content, .vision-content, .contact-content, .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .values-grid, .quick-options, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        flex-direction: column;
        align-items: center;
    }
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: #fbbf24;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #fbbf24;
}

.register-btn {
    background: #F4FDFF !important;
    color: #1e3a8a !important;
    padding: 0.5rem 1rem !important;
    border-radius: 5px !important;
    font-weight: bold !important;
}

.register-btn:hover {
    background: #f59e0b !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="eagles" patternUnits="userSpaceOnUse" width="100" height="100" patternTransform="rotate(45)"><path d="M50 10c-5 0-10 5-10 10s5 10 10 10 10-5 10-10-5-10-10-10z" fill="rgba(251,191,36,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23eagles)"/></svg>') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
}

.hero-icon {
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #F4FDFF
}

.year {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Countdown Timer */
.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.countdown-container h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F4FDFF;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    text-align: center;
}

.time-unit span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    background: #1e3a8a;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.time-unit label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #F4FDFF;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-btn.primary {
    background: #F4FDFF;
    color: #1e3a8a;
}

.cta-btn.primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1e3a8a;
}

.cta-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Theme Slider Section */
.theme-slider {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #1e3a8a);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    overflow: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.slider-container {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sliding-text {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-text {
    position: absolute;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 1s ease-in-out;
    background: linear-gradient(45deg, #F4FDFF, #F4FDFF, white);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    white-space: nowrap;
}

@keyframes textShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.slide-text.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: slideIn 1s ease-out, textShine 2s ease-in-out infinite;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.5) rotateX(90deg);
    }
    50% {
        transform: translateY(-10px) scale(1.05) rotateX(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.slide-text.exit {
    opacity: 0;
    transform: translateY(-50px) scale(1.2);
    transition: all 0.8s ease-in-out;
}

.theme-description {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-description h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #F4FDFF;
    text-align: center;
    font-weight: bold;
}

.theme-description p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

/* Conference Details */
.conference-details {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.detail-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
}

.detail-item i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.detail-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.detail-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Speakers Section */
.speakers {
    padding: 5rem 0;
    background: white;
}

.speakers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.speaker-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fbbf24;
}

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

.speaker-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.speaker-title {
    font-size: 1.1rem;
    color: #fbbf24;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.speaker-location {
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.speaker-bio {
    color: #666;
    line-height: 1.6;
}

/* Scripture Section */
.scripture {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.scripture-content {
    max-width: 800px;
    margin: 0 auto;
}

.scripture-icon {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 2rem;
}

.scripture blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.scripture cite {
    font-size: 1.2rem;
    color: #fbbf24;
    font-weight: bold;
}

/* Registration CTA */
.registration-cta {
    padding: 5rem 0;
    background: #f8fafc;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 2rem;
    color: #fbbf24;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

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

.footer-section i {
    margin-right: 10px;
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #3b82f6;
    padding-top: 1rem;
    text-align: center;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.submit-btn {
    background: #1e3a8a;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e40af;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.data-table th {
    background: #1e3a8a;
    color: white;
    font-weight: bold;
}

.data-table tr:hover {
    background: #f8fafc;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-edit {
    background: #fbbf24;
    color: #1e3a8a;
}

.btn-delete {
    background: #ef4444;
    color: white;
}

.btn-small:hover {
    transform: translateY(-1px);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    font-weight: bold;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3a8a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .year {
        font-size: 2.2rem;
    }

    .hero h3 {
        font-size: 1.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .time-unit span {
        font-size: 2rem;
        min-width: 60px;
        padding: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Theme Slider Mobile */
    .slide-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .slider-container {
        height: 150px;
        padding: 2rem 0;
    }

    .theme-description h3 {
        font-size: 2rem;
    }

    .theme-description p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Admin Dashboard Styles */
.admin-header {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1e3a8a;
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}

/* Styling for the Canva Video Section */
.canva-video-section {
    padding: 50px 20px; /* Adds space above/below and on the sides */
    background-color: #f7f7f7; /* A light grey background to make the section stand out */
    text-align: center;
}

.canva-video-section .section-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

/* This is the magic for making the iframe responsive */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px; /* You can adjust this */
    margin: 0 auto; /* Centers the video container */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Button Styling */
.open-popup-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 5px;
}

.open-popup-btn:hover {
    background-color: #0056b3;
}

/* The Popup (background) - hidden by default */
.popup {
    display: none; 
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* Class added with JS to show the popup */
.popup.active {
    display: block;
}

/* Popup Content Box */
.popup-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

/* The Close Button (x) */
.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}