/* ============================================
   Ιερός Ναός Αγίου Παύλου - Βυζαντινό Theme
   ============================================ */

/* CSS Variables */
:root {
    --gold-primary: #c9a227;
    --gold-light: #d4af37;
    --gold-dark: #b8860b;
    --burgundy: #722f37;
    --burgundy-dark: #5c1f24;
    --burgundy-light: #8b3a44;
    --burgundy-darker: #4a1418;
    --cream: #faf8f0;
    --cream-dark: #f5f0e1;
    --text-dark: #2c2416;
    --text-light: #5c5040;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* Byzantine Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(114, 47, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   Header
   ============================================ */
.main-header {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 0;
    position: relative;
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.header-ornament {
    height: 8px;
    background: linear-gradient(90deg,
        var(--gold-dark) 0%,
        var(--gold-light) 25%,
        var(--gold-primary) 50%,
        var(--gold-light) 75%,
        var(--gold-dark) 100%
    );
}

.header-ornament.top {
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.4);
}

.header-content {
    padding: 30px 20px 25px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 20%),
        linear-gradient(to top, rgba(0,0,0,0.1) 0%, transparent 20%);
}

.cross-icon {
    font-size: 48px;
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 2px 10px rgba(201, 162, 39, 0.4); }
    50% { text-shadow: 0 2px 20px rgba(212, 175, 55, 0.7); }
}

.main-header h1 {
    font-family: 'GFS Didot', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
    background: linear-gradient(180deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.nav-tab {
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 15px 18px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
}

.nav-tab.active {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-light);
    border-bottom-color: var(--gold-primary);
}

.tab-icon {
    font-size: 1.3rem;
}

.tab-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: calc(100vh - 400px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-family: 'GFS Didot', serif;
    font-size: 2.2rem;
    color: var(--burgundy);
    font-weight: 400;
    margin-bottom: 15px;
}

.header-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

/* ============================================
   Home Page
   ============================================ */
.hero-section {
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.95), rgba(26, 35, 126, 0.7), transparent);
    color: var(--white);
    padding: 60px 30px 30px;
    text-align: center;
}

.hero-overlay h2 {
    font-family: 'GFS Didot', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Byzantine Border */
.byzantine-border {
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, transparent 100%);
}

.byzantine-border::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    right: 20px;
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    border-radius: 5px;
}

/* Welcome Text */
.welcome-text {
    text-align: center;
}

.decorative-cross {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.welcome-text h3 {
    font-family: 'GFS Didot', serif;
    font-size: 1.8rem;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.welcome-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h4 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 5px 0;
}

/* ============================================
   Church History Page
   ============================================ */
.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.history-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.history-text h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.history-text p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Timeline */
.timeline {
    margin-top: 30px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 25px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.timeline-item::before {
    content: '☦';
    position: absolute;
    left: -35px;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.year {
    background: var(--burgundy);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 15px;
    min-width: 70px;
    text-align: center;
}

.event {
    color: var(--text-light);
}

/* Chapel Section */
.chapel-section {
    margin-bottom: 40px;
}

.chapel-section h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Clergy Section */
.clergy-section h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
}

.clergy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.clergy-card {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.clergy-card:hover {
    transform: translateY(-3px);
}

.clergy-card h4 {
    font-family: 'GFS Didot', serif;
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.clergy-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   Saint Page
   ============================================ */
.saint-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.saint-icon-large {
    text-align: center;
}

.icon-frame {
    width: 200px;
    height: 260px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border: 4px solid var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.saint-symbol {
    font-size: 80px;
    color: var(--gold-light);
}

.feast-day {
    background: var(--gold-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
}

.saint-text h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.saint-text h4 {
    color: var(--burgundy-dark);
    font-size: 1.2rem;
    margin: 25px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-primary);
    display: inline-block;
}

.saint-text p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Quote Section */
.quote-section {
    margin-top: 40px;
}

blockquote {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
}

blockquote::before {
    content: '❝';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: var(--gold-light);
    opacity: 0.5;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: var(--gold-light);
    font-size: 1rem;
}

/* ============================================
   Schedule Page
   ============================================ */
.schedule-notice {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.schedule-card {
    background: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
}

.schedule-card.special .schedule-header {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
}

.schedule-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.day-icon {
    font-size: 1.8rem;
}

.schedule-header h4 {
    font-family: 'GFS Didot', serif;
    font-size: 1.3rem;
}

.schedule-body {
    padding: 25px;
}

.service {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.service:last-child {
    border-bottom: none;
}

.service-name {
    color: var(--text-dark);
    font-weight: 500;
}

.service-time {
    color: var(--burgundy);
    font-weight: 600;
}

.schedule-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-prompt {
    margin-top: 15px;
    font-weight: 600;
    color: var(--burgundy);
}

/* ============================================
   Calendar / Εορτολόγιο Page
   ============================================ */
.calendar-intro {
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.month-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.month-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
}

.month-header h3 {
    font-family: 'GFS Didot', serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.month-feasts {
    padding: 20px;
}

.feast-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.feast-item:last-child {
    border-bottom: none;
}

.feast-item.major {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.1), transparent);
    padding: 12px 10px;
    border-radius: 5px;
    border-bottom: none;
    margin-bottom: 8px;
}

.feast-item.patron {
    background: linear-gradient(90deg, rgba(114, 47, 55, 0.1), transparent);
    font-weight: 600;
}

.feast-date {
    background: var(--gold-primary);
    color: var(--white);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.feast-item.major .feast-date {
    background: var(--burgundy);
}

.feast-name {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-top: 8px;
}

/* Κινητές Εορτές */
.movable-feasts {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 3px solid var(--gold-primary);
}

.movable-feasts h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.movable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.movable-item {
    background: var(--cream);
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movable-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow);
}

.movable-item.highlight {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    border-color: var(--burgundy-dark);
}

.movable-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.movable-item h4 {
    font-family: 'GFS Didot', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--burgundy);
}

.movable-item.highlight h4 {
    color: var(--gold-light);
}

.movable-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.movable-item.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* Legend */
.feast-legend {
    background: var(--cream);
    border-left: 4px solid var(--gold-primary);
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.feast-legend h4 {
    color: var(--burgundy);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.legend-badge {
    font-size: 1.3rem;
    font-weight: bold;
}

.legend-badge.major {
    color: var(--burgundy);
}

.legend-badge.patron {
    color: var(--gold-primary);
}

/* ============================================
   Activities / Δράσεις Page
   ============================================ */
.activities-intro {
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.activity-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

.activity-card h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.activity-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.activity-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--gold-primary);
}

.activity-details p {
    margin: 5px 0;
    text-align: left;
}

.activities-contact {
    margin-top: 50px;
}

.contact-box {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-box h3 {
    font-family: 'GFS Didot', serif;
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info-box p {
    margin: 10px 0;
    font-size: 1.05rem;
}

/* ============================================
   Metropolitan Page
   ============================================ */
.metropolitan-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.metropolitan-image {
    text-align: center;
}

.image-frame {
    width: 250px;
    height: 320px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border: 4px solid var(--gold-primary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.metropolitan-title-badge {
    margin-top: 15px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    font-size: 0.9rem;
}

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

.placeholder-icon {
    font-size: 80px;
    color: var(--gold-primary);
}

.metropolitan-text h3 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.metropolitan-name {
    color: var(--gold-dark);
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
}

.metropolitan-bio p {
    margin-bottom: 15px;
    text-align: justify;
}

.metropolitan-bio h5 {
    color: var(--burgundy);
    font-family: 'GFS Didot', serif;
    font-size: 1.2rem;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-primary);
}

.metropolitan-bio h5:first-child {
    margin-top: 0;
}

.metropolitan-bio ul {
    margin: 15px 0;
    padding-left: 25px;
}

.metropolitan-bio li {
    margin-bottom: 10px;
    color: var(--text-light);
    position: relative;
}

.metropolitan-bio li::marker {
    color: var(--gold-primary);
}

.credentials-list,
.service-list,
.academic-list {
    list-style: none;
    padding-left: 0;
}

.credentials-list li,
.service-list li,
.academic-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.credentials-list li::before,
.service-list li::before,
.academic-list li::before {
    content: '☦';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    padding: 20px 25px;
    margin: 25px 0;
}

.highlight-box p {
    margin-bottom: 10px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.diocese-info {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--gold-primary);
}

.diocese-info h5 {
    color: var(--burgundy);
    margin-bottom: 10px;
}

.message-box a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
}

.message-box a:hover {
    text-decoration: underline;
}

.metropolitan-message {
    margin-top: 30px;
}

.message-box {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.message-icon {
    font-size: 2.5rem;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item.large img {
    height: 350px;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 40px 20px 15px;
    font-size: 0.95rem;
}

.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 20px;
    background: var(--cream);
    border-radius: 8px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-family: 'GFS Didot', serif;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 5px 0;
}

.contact-card a {
    color: var(--burgundy-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold-dark);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.map-container iframe {
    display: block;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    color: var(--white);
    margin-top: 50px;
}

.footer-content {
    text-align: center;
    padding: 40px 20px 30px;
}

.footer-cross {
    font-size: 36px;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.footer-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-subtitle {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: var(--gold-primary);
    margin: 0 auto 20px;
}

.footer-contact {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    color: var(--gold-light);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .history-content,
    .saint-content,
    .metropolitan-content {
        grid-template-columns: 1fr;
    }

    .history-image,
    .saint-icon-large,
    .metropolitan-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto 30px;
    }

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

    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .main-header h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .nav-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .nav-tab {
        padding: 12px 15px;
        min-width: auto;
    }

    .tab-text {
        font-size: 0.8rem;
    }

    .content-section {
        padding: 25px 20px;
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-overlay h2 {
        font-size: 1.8rem;
    }

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

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

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    blockquote {
        padding: 25px 20px;
        font-size: 1rem;
    }

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

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

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

@media (max-width: 480px) {
    .main-header h1 {
        font-size: 1.5rem;
    }

    .cross-icon {
        font-size: 36px;
    }

    .nav-tab {
        padding: 10px 12px;
    }

    .tab-icon {
        font-size: 1.1rem;
    }

    .tab-text {
        display: none;
    }

    .byzantine-border {
        padding: 20px 15px;
    }

    .icon-frame {
        width: 160px;
        height: 200px;
    }

    .image-frame {
        width: 200px;
        height: 260px;
    }
}

/* Print Styles */
@media print {
    .main-nav,
    .hero-section {
        display: none;
    }

    .tab-content {
        display: block !important;
        page-break-after: always;
    }

    .content-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
