
/* ============================
   VARIABLES
============================ */
:root {
    --primary: #14325f;
    --accent: #d4af37;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #1f2d3d;
    --text-muted: #4a4a4a;
    --border-light: rgba(200,212,242,0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
    --transition: 0.4s ease;
    --font-heading: "Cinzel", "Georgia", serif;
    --font-body: "Segoe UI", Arial, sans-serif;
}

/* ============================
   GENERAL
============================ */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 80px;
    line-height: 1.7;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    width: 100%;
    height: 80px;
    padding: 0 50px;
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.home-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.logo-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 12px;
    position: relative;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    color: var(--accent);
}

.menu a:hover { color: var(--accent); }
.menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.menu a:hover::after { width: 100%; }

/* MOBILE NAV */
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; }
@media(max-width:768px){
    .mobile-toggle{display:block;}
    .menu{position:absolute; top:80px; left:0; width:100%; background:var(--bg-white); display:none; padding:25px 0; box-shadow: var(--shadow-lg);}
    .menu.open{display:block;}
    .menu ul{flex-direction:column; align-items:center; gap:25px;}
}
/* ============================
   HERO / SLIDESHOW
============================ */
.welcome-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slideshow img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0;
    animation: fadeSlide 36s infinite;
}

/* Animation */
@keyframes fadeSlide {
    0% { opacity: 0; }
    8% { opacity: 1; }
    25% { opacity: 1; }
    33% { opacity: 0; }
    100% { opacity: 0; }
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 6s; }
.slideshow img:nth-child(3) { animation-delay: 12s; }
.slideshow img:nth-child(4) { animation-delay: 18s; }
.slideshow img:nth-child(5) { animation-delay: 24s; }
.slideshow img:nth-child(6) { animation-delay: 30s; }

/* Overlay */
.welcome-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,50,95,0.4), rgba(20,50,95,0.85));
    z-index: 1;
}

/* Hero Text */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.content h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

.text2 h3 {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 35px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btn {
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.hero-btn.primary {
    background: var(--accent);
    color: var(--primary);
}

.hero-btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* ============================
   MISSION & VISION
============================ */
.mission-vision {
    background: linear-gradient(to bottom, #f9fbff, #f1f4ff);
    padding: 50px
}

.mv-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 70px;
}

.mv-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.mv-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

.mv-card.mission { border-top: 6px solid var(--primary); }
.mv-card.vision  { border-top: 6px solid var(--primary); }
.mv-card.values  { border-top: 6px solid var(--primary); }


/* ============================
   NEWSLETTER
============================ */
.newsletter-section {
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.newsletter-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.newsletter-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.newsletter-card:hover {
    transform: translateY(-12px);
}

.newsletter-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.newsletter-card h3 {
    padding: 20px 20px 10px;
    font-family: var(--font-heading);
    color: var(--primary);
}

.newsletter-card p {
    padding: 0 20px 15px;
    color: var(--text-muted);
}

.read-more {
    display: inline-block;
    padding: 12px 20px 25px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

/* ============================
   PRAYER BOX
============================ */
.prayer-box {
    max-width: 560px;
    margin: 100px auto;
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.prayer-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}

.prayer-verse {
    font-style: italic;
    font-size: 16px;
    background: #fdf8f0;
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    margin-bottom: 30px;
}

.prayer-form input,
.prayer-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.prayer-form button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}


/* ============================
   FOOTER
============================ */
.footer {
    background: linear-gradient(to right, #10294d, #14325f);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
}

.footer-copy {
    font-size: 13px;
    color: #d4d4d4;
}

/* ============================
   MOBILE TWEAKS
============================ */
@media (max-width: 768px) {
    .content h2 { font-size: 1.8rem; }
    .text2 h3 { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
}
