/* ============================================================
   Diocese de Limoeiro do Norte - Estilo Principal
   ============================================================ */

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

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
    --primary: #8B0000;
    --primary-dark: #6B0000;
    --primary-light: #A52A2A;
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-dark: #B8962E;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --white: #FFFFFF;
    --off-white: #FAFAF6;
    --light-gray: #F0EDE8;
    --medium-gray: #C8C0B8;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
    --shadow-light: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 25px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease-in-out;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--text-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* ============================================================
   Top Bar
   ============================================================ */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-info a {
    color: var(--gold-light);
    font-size: 0.85rem;
}

.top-bar-info a:hover {
    color: var(--white);
}

.top-bar-info i {
    margin-right: 5px;
}

.top-bar-social a {
    color: var(--white);
    margin-left: 12px;
    font-size: 1rem;
    opacity: 0.8;
}

.top-bar-social a:hover {
    opacity: 1;
    color: var(--gold-light);
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 55px;
    height: 55px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    line-height: 1.2;
    font-weight: 700;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a {
    padding: 8px 16px;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background-color: rgba(139, 0, 0, 0.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.03)" d="M50 0L100 50L50 100L0 50Z"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border-radius: 30px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
}

.hero-scroll a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   Section Base
   ============================================================ */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 12px auto 0;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.section-bg-light {
    background-color: var(--off-white);
}

.section-bg-cream {
    background-color: var(--cream);
}

/* ============================================================
   About Section (Home)
   ============================================================ */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-home-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-home-image img {
    width: 100%;
    display: block;
}

.about-home-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(139,0,0,0.3));
}

.about-home-content h2 {
    margin-bottom: 20px;
}

.about-home-content p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}

/* ============================================================
   News / Cards Grid
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.news-card-image {
    height: 200px;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background-color: var(--gold);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.news-card-body {
    padding: 25px;
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.news-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.news-card-body h3 a {
    color: var(--text-dark);
}

.news-card-body h3 a:hover {
    color: var(--primary);
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.news-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.news-card-link i {
    transition: var(--transition);
    margin-left: 5px;
}

.news-card-link:hover i {
    transform: translateX(5px);
}

/* ============================================================
   Bishop Section
   ============================================================ */
.bishop-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.bishop-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.bishop-photo {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.bishop-photo img {
    width: 100%;
    display: block;
}

.bishop-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.bishop-title {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.bishop-info p {
    margin-bottom: 15px;
}

.bishop-motto {
    padding: 20px;
    background-color: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary);
}

/* ============================================================
   Events
   ============================================================ */
.events-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.event-item:hover {
    box-shadow: var(--shadow-medium);
}

.event-date {
    min-width: 70px;
    text-align: center;
    padding: 10px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 6px;
    align-self: flex-start;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.event-details h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.event-details p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-details .event-time {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.event-details .event-time i {
    margin-right: 5px;
}

/* ============================================================
   Contact Section (Home)
   ============================================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.contact-card h4 {
    margin-bottom: 10px;
}

.contact-card p, .contact-card a {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================================
   Page Header (Inner Pages)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(255,255,255,0.03)" d="M50 0L100 50L50 100L0 50Z"/></svg>');
    background-size: 40px 40px;
    opacity: 0.2;
}

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

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: var(--gold-light);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    margin: 0 8px;
}

/* ============================================================
   Content Page
   ============================================================ */
.content-page {
    padding: 60px 0;
}

.content-page h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.content-page h3 {
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-page ul, .content-page ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-page ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.content-page ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--gold);
    color: var(--text-dark);
}

.footer h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact i {
    width: 20px;
    margin-right: 8px;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--gold-light);
}

/* ============================================================
   Parishes Page
   ============================================================ */
.parishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.parish-card {
    display: flex;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.parish-card:hover {
    box-shadow: var(--shadow-medium);
}

.parish-icon {
    font-size: 2.5rem;
    color: var(--primary);
    min-width: 50px;
}

.parish-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.parish-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.parish-info .parish-priest {
    font-weight: 600;
    color: var(--text-medium);
    margin-top: 8px;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================================
   Map
   ============================================================ */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================================
   Back to Top
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    color: var(--white);
    font-size: 1rem;
}

/* ============================================================
   Responsive Design
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-heavy);
        transition: var(--transition);
        gap: 5px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 12px 15px;
        width: 100%;
        font-size: 0.95rem;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 998;
        display: none;
    }

    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .about-home {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .events-list {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .bishop-content {
        grid-template-columns: 1fr;
    }

    .parishes-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 50px 0;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   Accessibility & Utilities
   ============================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

/* Loading animation for images */
img.loading {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--cream) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
