* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', 'Gayathri', 'Noto Sans Syriac Western', serif;
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
    color: #2c2416;
    line-height: 1.7;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(139, 69, 19, 0.02) 0px, transparent 1px, transparent 2px, rgba(139, 69, 19, 0.02) 3px),
        repeating-linear-gradient(90deg, rgba(139, 69, 19, 0.02) 0px, transparent 1px, transparent 2px, rgba(139, 69, 19, 0.02) 3px);
    pointer-events: none;
    z-index: 0;
}

header {
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    color: #f5e6d3;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #d4af37;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cross-symbol {
    font-size: 2.5rem;
    color: #d4af37;
    font-weight: bold;
}

.site-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #f5e6d3;
}

.syriac-title {
    font-family: "Noto Sans Syriac Western", 'Gayathri', sans-serif;
    font-size: 1.1rem;
    color: #d4af37;
    direction: rtl;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #f5e6d3;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

nav a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.breadcrumb {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
    font-size: 1rem;
    color: #7d2222;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: #5c1a1a;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.page-header {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.apostles-header-banner {
    background:
        linear-gradient(135deg, rgba(92, 26, 26, 0.95) 0%, rgba(125, 34, 34, 0.95) 100%),
        url('images/jesus-desiples.jpg');
    border: 4px solid #d4af37;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apostles-header-banner h1 {
    font-size: 3.5rem;
    color: #f5e6d3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.apostles-header-banner .subtitle {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-style: italic;
}

.apostles-header-banner .syriac-name {
    font-family: "Noto Sans Syriac Western", 'Gayathri', sans-serif;
    font-size: 2rem;
    color: #d4af37;
    direction: rtl;
    margin-bottom: 1.5rem;
}

.apostles-intro {
    font-size: 1.3rem;
    color: #f5e6d3;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

.main-content {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 1;
}

.content-full {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.2rem;
    color: #5c1a1a;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.apostle-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(92, 26, 26, 0.02) 100%);
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.apostle-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.apostle-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.apostle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d4af37;
    flex-shrink: 0;
}

.apostle-names h3 {
    font-size: 2rem;
    color: #5c1a1a;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.apostle-subtitle {
    font-size: 1.2rem;
    color: #7d2222;
    font-style: italic;
}

.apostle-feast {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 600;
    margin-top: 0.3rem;
}

.apostle-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c2416;
    text-align: justify;
}

.apostle-content p {
    margin-bottom: 1rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(92, 26, 26, 0.05) 100%);
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: #5c1a1a;
    margin-bottom: 0;
    line-height: 1.8;
}

.twelve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.twelve-item {
    background: linear-gradient(135deg, rgba(92, 26, 26, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 1.5rem;
    border: 2px solid #d4af37;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.twelve-item:hover {
    transform: translateY(-5px);
}

.twelve-number {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.twelve-name {
    font-size: 1.2rem;
    color: #5c1a1a;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, #5c1a1a 0%, #7d2222 100%);
    color: #f5e6d3;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 3px solid #d4af37;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: #f5e6d3;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #d4af37;
}

.contact-info p {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 1rem;
    color: #d4af37;
    font-style: italic;
}

@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .apostle-header {
        flex-direction: column;
        text-align: center;
    }

    .apostle-content {
        text-align: left;
    }

}