@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* Custom Styles */
:root {
    --fortified-gold: #D4AF37;
    --fortified-blue: #1e3a8a;
    --fortified-dark: #1a1a1a;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.fortified-heading {
    font-family: 'Oswald', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(55, 48, 163, 0.85) 100%),
                url('../images/fortified_card.jpg') center/cover;
    min-height: 70vh;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.category-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--fortified-gold);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--fortified-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.gold-accent {
    color: var(--fortified-gold);
}

.blue-accent {
    color: var(--fortified-blue);
}

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

.about-card {
    background: white;
    border-left: 4px solid var(--fortified-gold);
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--fortified-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.btn-primary {
    background: var(--fortified-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--fortified-blue);
    transform: translateY(-2px);
}

.license-badge {
    background: var(--fortified-gold);
    color: var(--fortified-dark);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.bible-verse {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-bg {
        min-height: 60vh;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--fortified-blue);
}

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