/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0B1F3A;
    --navy-dark: #061426;
    --navy-light: #132D52;
    --orange: #F28C28;
    --orange-dark: #D4731A;
    --orange-light: #FFB347;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --off-white: #F5F7FA;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --text: #172033;
    --text-light: #4B5563;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 70px; /* Match navbar height */
}

/* Remove padding from hero since it handles its own */
.hero {
    padding-top: 0; /* Hero handles its own spacing */
    margin-top: -70px; /* Pull hero up under navbar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }
    .hero-content {
        padding: 2rem 1.5rem;
    }
    .hero-title { 
        font-size: 2.5rem; 
    }
    .hero-message { 
        font-size: 1.5rem; 
    }
    .navbar {
        min-height: 60px;
    }
}


@keyframes heroLogoAnimation {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-15deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.08) rotate(3deg);
    }
    70% {
        transform: scale(0.98) rotate(-1deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes heroLogoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-logo-img {
    filter: drop-shadow(0 0 15px rgba(242, 140, 40, 0.6));
    /* Run entrance animation first (1.8s), then pulse forever with a delay of 1.8s */
    animation:
        heroLogoAnimation 1.8s ease-out forwards,
        heroLogoPulse 3s 1.8s infinite ease-in-out;
}


@media (max-width: 767px) {
    .hero { 
        min-height: 70vh;
        padding-top: 60px;
    }
    .hero-title { 
        font-size: 2rem; 
    }
    .hero-message { 
        font-size: 1.2rem; 
    }
    .hero-content {
        padding: 1.5rem 1rem;
    }
    .page-header {
        padding: 6rem 0 2rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; }

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(11, 31, 58, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0; /* Reduced padding */
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    min-height: 70px; /* Set fixed height */
    z-index: 1030; /* Ensure navbar stays on top */
}

.navbar-brand img { 
    height: 45px; /* Slightly smaller logo */
    width: auto; 
}
.navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    position: relative;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 70%; }

/* ===== GALLERY ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.btn-shm {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(242, 140, 40, 0.3);
}
.btn-shm:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}
.btn-outline-shm {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}
.btn-outline-shm:hover {
    background: var(--orange);
    color: var(--white);
}

/* ===== SERMON CARD WITH HOVER PLAYBACK ===== */
.sermon-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sermon-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sermon-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sermon-card:hover .sermon-thumbnail img {
    transform: scale(1.05);
}

/* Video overlay for hover */
.sermon-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.sermon-card:hover .sermon-video-overlay {
    opacity: 1;
}

/* Play button */
.sermon-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(242, 140, 40, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.sermon-play-btn:hover {
    background: #F28C28;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 140, 40, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(242, 140, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 140, 40, 0);
    }
}

/* Hover Preview Iframe */
.sermon-preview-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sermon-card:hover .sermon-preview-iframe {
    opacity: 1;
    pointer-events: auto;
}

/* Sermon info */
.sermon-info {
    padding: 1.25rem;
}

.sermon-info .badge {
    background: #F28C28;
    color: white;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.sermon-info h5 {
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.sermon-info .meta {
    color: #6B7280;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.sermon-info .meta i {
    color: #F28C28;
    margin-right: 5px;
}

.sermon-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sermon-actions .btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

/* Watch count badge */
.watch-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.watch-count i {
    color: #F28C28;
}

/* Duration badge */
.duration-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    z-index: 3;
}
/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(6, 20, 38, 0.92), rgba(11, 31, 58, 0.88)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed navbar */
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 2rem; /* Increased top padding */
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-welcome {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #F28C28 !important;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
    line-height: 1.2;
    color: #FFFFFF !important;
}

.hero-message {
    font-size: 2rem;
    font-weight: 600;
    color: #FFB347 !important;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #FFFFFF !important;
}

.hero-buttons { 
    display: flex; 
    gap: 1rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

/* ===== NEXT SERVICE CARD ===== */
.next-service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-top: 4px solid var(--orange);
}
.countdown-item {
    background: var(--navy);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 80px;
}
.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange-light);
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-subtitle {
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin: 1.5rem auto 0;
}
.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== CARDS ===== */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange);
}
.feature-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--orange);
}
.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}
.timeline-year {
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* ===== SERMON CARD WITH HOVER PLAYBACK ===== */
.sermon-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sermon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sermon-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.sermon-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.sermon-card:hover .sermon-thumbnail img {
    transform: scale(1.05);
}

/* Hover Preview Iframe */
.sermon-preview-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: #000;
}

.sermon-card:hover .sermon-preview-iframe {
    opacity: 1;
    pointer-events: auto;
}

/* Play Overlay */
.sermon-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.sermon-card:hover .sermon-video-overlay {
    opacity: 1;
}

/* Play Button */
.sermon-play-btn {
    width: 65px;
    height: 65px;
    background: rgba(242, 140, 40, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
}

.sermon-play-btn:hover {
    background: #F28C28;
    transform: scale(1.15);
}

/* Duration Badge */
.duration-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.75rem;
    z-index: 3;
    font-weight: 500;
}

/* Watch Count */
.watch-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.watch-count i {
    color: #F28C28;
    font-size: 0.7rem;
}

/* Sermon Info */
.sermon-info {
    padding: 1.25rem;
}

.sermon-info .badge {
    background: #F28C28;
    color: white;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.sermon-info h5 {
    font-weight: 700;
    color: #0B1F3A;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.sermon-info .meta {
    color: #6B7280;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.sermon-info .meta i {
    color: #F28C28;
    margin-right: 4px;
    font-size: 0.8rem;
}

.sermon-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.sermon-actions .btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

/* ===== MODAL STYLES ===== */
.modal-content {
    border: none;
}

#sermonModal .modal-dialog {
    max-width: 90%;
    margin: 1.75rem auto;
}

@media (max-width: 768px) {
    #sermonModal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }
    
    #sermonModal .modal-content {
        border-radius: 0 !important;
        min-height: 100vh;
    }
    
    .sermon-thumbnail img {
        height: 180px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GALLERY ===== */
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: var(--gray-300);
    padding: 4rem 0 0;
}
.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--gray-300); font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange); padding-left: 5px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 0.5rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-message { font-size: 1.5rem; }
    .section-title { font-size: 2rem; }
    .next-service-card { margin-top: -30px; padding: 1.5rem; }
}
@media (max-width: 767px) {
    .hero { min-height: 80vh; }
    .hero-title { font-size: 2rem; }
    .hero-message { font-size: 1.2rem; }
    .section { padding: 3rem 0; }
    .countdown-item { min-width: 60px; padding: 0.75rem; }
    .countdown-number { font-size: 1.5rem; }
    .navbar-brand img { height: 35px; }
}

/* ===== PAGE HEADER ===== */
/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 8rem 0 4rem; /* Extra top padding for navbar */
    text-align: center;
    color: #FFFFFF;
    margin-top: 0;
}

.page-header h1 { 
    color: #FFFFFF !important; 
    font-size: 3rem;
    margin-top: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.page-header .breadcrumb { 
    justify-content: center; 
}
.breadcrumb-item a { 
    color: #F28C28 !important; 
}
.breadcrumb-item.active { 
    color: rgba(255, 255, 255, 0.7) !important; 
}
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== FORMS ===== */
.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(242, 140, 40, 0.25);
}
.form-label { font-weight: 600; color: var(--navy-dark); }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* ===== LOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }