:root {
    /* Church Brand Colors - Adjust these to match your logo */
    --primary-color: #d26643;      /* Deep Navy Blue */
    --primary-dark: #1e0c3a;       /* Darker Blue for hover */
    --primary-light: #d26643;      /* Very light blue background */

    --secondary-color: #df643b;    /* Gold/Amber */
    --secondary-light: #efae56;    /* Very light amber background */

    --accent-color: #059669;       /* Forest Green */
    --accent-light: #ecfdf5;       /* Very light green background */
}

/* Custom Font Configuration */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Animation for background blobs */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

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

/* Navigation transition */
#navbar {
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.active {
    max-height: 400px;
    opacity: 1;
}

/* Hover card effects */
.group:hover .group-hover\:text-white {
    color: white;
}

/* Button press effect */
a:active {
    transform: scale(0.98);
}

/* Focus visible for accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 0.9em;
    }

    /* Reduce animation on mobile for performance */
    .animate-blob {
        animation-duration: 10s;
    }
}

/* Print styles */
@media print {
    nav, footer, .no-print {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
