/* ============================================
   ONE MISSION FAMILY - Custom Styles
   ============================================ */

/* Global Styles */
:root {
    --navy: #1A2A44;
    --orange: #E67E22;
    --red: #C0392B;
    --gold: #F1C40F;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #f8faff;
}

/* Hero Slider */
.hero-slider {
    min-height: 70vh;
}

.hero-slider .carousel-item {
    min-height: 70vh;
}

/* Buttons */
.btn-orange {
    background: var(--orange);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #cf6d17;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Cards */
.card-hover {
    transition: all 0.3s ease;
    border-radius: 1.2rem;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

/* Community Feed */
.community-feed {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

/* Gallery */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: all 0.3s ease;
}

/* Counters */
.counter-number {
    font-size: 2.8rem;
    font-weight: 700;
}

/* Testimonials */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Timeline */
.timeline-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Event Cards */
.event-date {
    background: var(--navy);
    color: white;
    border-radius: 12px;
    padding: 10px;
}

.countdown-item {
    min-width: 60px;
}

/* Forms */
.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

/* Dark Mode */
.dark-mode {
    background: #1e1e2f;
    color: #eee;
}

.dark-mode .card,
.dark-mode .community-feed,
.dark-mode .bg-light {
    background: #2a2a3f !important;
    color: #eee !important;
}

.dark-mode .text-muted {
    color: #aaa !important;
}

.dark-mode .bg-white {
    background: #2a2a3f !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 50vh;
    }
    
    .hero-slider .carousel-item {
        min-height: 50vh;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    .countdown-item {
        min-width: 45px;
        padding: 5px !important;
    }
    
    .countdown-item span {
        font-size: 0.9rem;
    }
}