/* 
   Theme: Parish Bootstrap Modern
   Base: Bootstrap 5
   Overrides: Custom Colors & Typography
*/

/* Custom Colors */
:root {
    --bs-primary: #003366;
    /* Navy Blue */
    --bs-secondary: #C5A059;
    /* Gold */
}

/* Typography */
.font-serif {
    font-family: 'Merriweather', serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.hero-overlay {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.5));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.page-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 0;
    margin-bottom: 3rem;
}

/* Link Hover Effects */
.hover-secondary:hover {
    color: var(--bs-secondary) !important;
    padding-left: 5px;
    transition: all 0.2s ease;
}

/* Card Hover */
.church-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.church-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.church-card img {
    height: 250px;
    object-fit: cover;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

.bg-accent {
    background-color: #f8f9fa;
}

/* Custom Button */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background-color: var(--bs-primary);
    color: #fff;
}