/* ===== BASE ===== */
body {
    background: linear-gradient(135deg, #78350f 0%, #713f12 50%, #7c2d12 100%);
    min-height: 100vh;
    font-family: 'Georgia', serif;
    color: #fefce8;
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    border-bottom: 4px solid #ca8a04;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fefce8;
    margin: 0;
}
.site-header .subtitle {
    color: #fde68a;
    font-size: 0.85rem;
}
.site-header .location-info {
    color: #fef3c7;
    font-size: 0.85rem;
    text-align: right;
    line-height: 1.8;
}
.cross-icon {
    font-size: 2.5rem;
    color: #eab308;
}

/* ===== CARDS ===== */
.card-church {
    background: rgba(120, 53, 15, 0.4);
    backdrop-filter: blur(4px);
    border: 2px solid #ca8a04;
    border-radius: 0.5rem;
}
.card-church-purple {
    background: rgba(88, 28, 135, 0.4);
    backdrop-filter: blur(4px);
    border: 2px solid #a855f7;
    border-radius: 0.5rem;
}
.card-church-blue {
    background: rgba(30, 58, 138, 0.4);
    backdrop-filter: blur(4px);
    border: 2px solid #3b82f6;
    border-radius: 0.5rem;
}

/* Info blocks inside top card */
.info-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.4rem;
    padding: 1.2rem 1.5rem;
}
.info-block.border-yellow { border-left: 4px solid #facc15; }
.info-block.border-red    { border-left: 4px solid #f87171; }
.info-block.border-purple { border-left: 4px solid #c084fc; }
.info-block.border-gold   { border-left: 4px solid #eab308; }

.info-block .label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fde68a;
    font-family: sans-serif;
}
.info-block .value {
    font-size: 1.05rem;
    color: #fefce8;
    margin-top: 0.3rem;
}
.info-block .value.green { color: #86efac; font-weight: 700; }

/* Saint / clergy items */
.saint-item, .clergy-item {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #facc15;
    border-radius: 0.4rem;
    padding: 0.9rem 1.2rem;
}
.clergy-item .role {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fde68a;
    font-family: sans-serif;
}
.clergy-item .name {
    font-size: 1.05rem;
    color: #fefce8;
    margin-top: 0.25rem;
}

/* Section titles */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fefce8;
    margin-bottom: 1.4rem;
}
.section-title i {
    margin-right: 0.5rem;
    color: #fde68a;
}

/* Troparion / Kondakion text */
.hymn-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fefce8;
    margin-bottom: 0.8rem;
}
.hymn-text {
    font-size: 0.88rem;
    color: #fef3c7;
    line-height: 1.75;
}

/* ===== TABLE ===== */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}
.schedule-table thead tr {
    border-bottom: 2px solid #eab308;
}
.schedule-table th {
    color: #fde68a;
    font-family: sans-serif;
    font-weight: 600;
    padding: 0.75rem 1rem;
}
.schedule-table td {
    color: #fef3c7;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(120, 53, 15, 0.5);
}
.schedule-table tbody tr {
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}
.schedule-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.45);
}

/* ===== FOOTER ===== */
.site-footer {
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid #ca8a04;
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
}
.site-footer .foot-1 { color: #fde68a; font-size: 0.9rem; }
.site-footer .foot-2 { color: #ca8a04; font-size: 0.78rem; margin-top: 0.4rem; }
.site-footer .foot-3 { color: #92400e; font-size: 0.75rem; margin-top: 0.6rem; }