/* ===============================
   HEADER FIXED ALIGNMENT
================================= */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background-color: #ded5bb;
  

  
  
}

/* LOGO AND TITLE SIDE-BY-SIDE */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text h1 {
  font-size: 2.5rem;
  color: #4E344E;
  font-weight: 100;
  margin: 0;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}




.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;

  background: linear-gradient(180deg, #e2ded2, #ffffff);

  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.1),
    0 8px 22px rgba(0, 0, 0, 0.212);

 
}




/* ===============================
   HERO SECTION
================================= */
.hero {
  position: relative;
  display: flex;
  justify-content: top;
  align-items: center;
  flex-direction: column;
  padding: 120px 0%;
  min-height: 70vh; /* full screen height */
  width: 100%;
  background: url('nnnn.jpg') center/cover no-repeat; /* change path as needed */
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 4em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

.hero-text p {
  font-size: 1.3em;
  color: #f1f1f1;
  margin-bottom: 40px;
}

.hero-image {
  display: none; /* optional – hide small side image */
}


/* ===============================
   COMMUNITY SECTION
================================= */
.community {
  text-align: center;
  padding: 80px 5%;
  background-color: #d4caaa;
}

.community h2 {
  font-size: 2.2em;
  color:#3E2723;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.community p {
  color: #555;
  font-size: 1em;
  margin-bottom: 40px;
}

.community-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  background-color: #f9f5e6;
  color: #2a4d8f;
  font-size: 1.1em;
}

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

/* ===============================
   REFLECTIONS SECTION
================================= */
.reflections {
  background-color: #dddacf;
  padding: 80px 5%;
}

.reflections h2 {
  color: #2a4d8f;
  font-size: 2em;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.reflection-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reflection-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.reflection-item img {
  width: 35%;
  height: 140px;
  object-fit: cover;
}

.reflection-text {
  padding: 20px;
  flex: 1;
}

.reflection-text h4 {
  color: #2a4d8f;
  margin-bottom: 10px;
}

.btn-read {
  background-color: #d4af37;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-read:hover {
  opacity: 0.9;
}

/* ===============================
   FAMILY SECTION
================================= */
.family-section {
  margin-top: 60px;
}

.family-section h3 {
  font-size: 1.8em;
  color: #2a4d8f;
  margin-bottom: 15px;
}

.family-section p {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
}

/* ===============================
   FOOTER
================================= */
footer {
  background-color: #293378;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 0.95em;
}


/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    margin-top: 20px;
  }

  .community-cards {
    flex-direction: column;
    align-items: center;
  }

  .reflection-item {
    flex-direction: column;
  }

  .reflection-item img {
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-top {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
}

/* ===================== GLOBAL STYLES & RESETS ===================== */
:root {
    --color-purple-primary: #4E344E; /* Navbar, Footer */
    --color-blue-secondary: #4E344E; /* Headings, Links */
    --color-gold-accent: #f7b731; /* Hover, Highlights */
    --color-bg-light: #1c1616; /* Main Background */
    --color-text-dark: #686868;
    --padding-section: 80px 5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
}

h1, h2 {
    color: var(--color-blue-secondary);
    font-family: 'Georgia', serif;
}

/* Base Button Style */
.btn {
    display: inline-block;
    background-color: var(--color-blue-secondary);
    color: #fff !important; /* !important to override default link color */
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.btn:hover {
    background-color: var(--color-purple-primary);
    transform: translateY(-2px);
}

/* ===================== NAVBAR ALIGNMENT ===================== */
.navbar {
    background-color: var(--color-purple-primary);
    width: 100%;
    /* No sticky position here for simplicity; set on index page */
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center; /* Center the links */
    gap: 10px;
    padding: 12px 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4E344E;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold-accent);
   
}

/* ===================== HERO SECTION DESIGN ===================== */
.hero-community {
    /* Simple header banner style */
    background-color: var(--color-blue-secondary);
    color: #fff;
    text-align: center;
    padding: 100px 5%;
}

.hero-community h1 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
}

.hero-community p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* ===================== MAIN PROGRAM SECTION (SPLIT LAYOUT) ===================== */

.program-section {
    padding: var(--padding-section);
    background-color: #fff;
}

.program-container {
    display: flex;
    align-items: flex-start; /* Aligns content to the top */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto; /* Centers the whole container */
}

.program-img {
    flex-basis: 40%; /* Image takes 40% of the space */
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.program-text {
    flex-basis: 60%; /* Text takes 60% of the space */
    padding-top: 10px;
}

.program-text h2 {
    color: var(--color-purple-primary);
    margin-top: 0;
    font-size: 1.8em;
    text-align: left;
    border-bottom: 2px solid var(--color-gold-accent);
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.program-text strong {
    color: var(--color-purple-primary);
}

.program-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.program-text ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===================== FOOTER ALIGNMENT ===================== */
.footer {
    background-color: var(--color-purple-primary);
    color: #fff;
    text-align: center;
    padding: 20px 5%;
    font-size: 0.9em;
}

.footer p {
    margin: 5px 0;
}







/* ==========================
     PREMIUM GOLD THEME
     WITH ANIMATIONS
   ========================== */

/* Fade-in on load */
.gold-welcome {
  width: 100%;
  padding: 120px 50px;
  background: #f8f4e8;
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gold-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT SECTION */
.gold-left {
  flex: 1;
  border-left: 4px solid #4E344E;
  padding-left: 30px; 

  /* slide-up animation */
  animation: slideUp 1.2s ease-out;
}

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

.gold-tag {
  font-size: 18px;
  letter-spacing: 3px;
  color: #4E344E;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.4s ease;
}

.gold-title {
  font-size: 42px;
  font-weight: 500;
  color:#000000;
  line-height: 1.1;
  transition: 0.4s ease;
}

.gold-title span {
  color: #602e60;
  transition: 0.4s ease;
}

.gold-text,
.gold-small {
  transition: 0.4s ease;
}

.gold-left:hover .gold-title span {
  text-shadow: 0 0 12px rgb(234, 223, 9);
}

/* BUTTON */
.gold-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 38px;
  background: #4E344E;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 70;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.gold-btn:hover {
  background: #996199;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(246, 214, 110, 0.55);
}

/* RIGHT IMAGE SIDE */
.gold-right {
  flex: 1;
  text-align: center;

  /* zoom-in animation */
  animation: zoomIn 1.3s ease-out;
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.gold-frame {
  background: linear-gradient(135deg, #4E344E, #9b5d9b);
  padding: 8px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);

  /* floating effect */
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.gold-frame img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.gold-frame:hover img {
  transform: scale(1.03);
}

.gold-caption {
  margin-top: 12px;
  font-size: 15px;
  color: #555;
  font-style: italic;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gold-container {
    flex-direction: column;
    text-align: center;
  }

  .gold-left {
    padding-left: 0;
    border-left: none;
  }

  .gold-title {
    font-size: 38px;
  }
}











/* --------------------community reflection-------------------------------- */
/* ===================== GLOBAL COLORS & FONTS (Deep Blue/Violet Scheme) ===================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* NEW Deep Blue/Violet Palette */
    --color-primary-dark: #4E344E;       /* Primary Brand: Deep Blue/Violet */
    --color-accent-gold: #4E344E;       /* Accent Color: Gold/Yellow */
    
    /* Retained from Asymmetrical */
    --color-light-grey-bg: #F5F5F5;  /* Section Background */
    --color-card-white: #FFFFFF;     /* Card Background */
    --color-charcoal-text: #a8a5a5;  /* Text Color (Dark) */
    --color-text-light: #fff;        /* Text Color (Light) */
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --padding-large: 100px 5%;
}

/* ===================== BASE STYLES ===================== */

body {
    font-family: var(--font-body);
}

.asym-header {
    /* Changed from Moss Dark to Primary Dark */
    color: var(--color-primary-dark); 
    font-family: var(--font-heading);
    font-size: 3.5em; 
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.asym-header-light {
    /* Changed from Peach Vivid to Accent Gold */
    color: var(--color-accent-gold); 
    font-family: var(--font-heading);
    font-size: 3.5em;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.section-subtitle-asym {
    color: var(--color-charcoal-text);
    font-size: 1.2em;
    margin-bottom: 70px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.container-full-width {
    padding: 0;
    width: 100%;
    margin: 0;
}


/* ---------------------------------------------------- */
/* 1. COMMUNITY/PROGRAMS SECTION (ASYNMETRICAL) */
/* ---------------------------------------------------- */
.community-asymmetrical {
    padding: var(--padding-large);
    background-color: var(--color-card-white);
    text-align: center;
}

.asym-grid-programs {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 70px;
}

.program-item-asym {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
    text-align: left;
    /* Retaining bounce effects */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); 
    border-radius: 8px; 
}

.program-item-asym:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); 
}

.asym-text-content {
    flex: 1 1 55%;
    padding: 20px;
}

.asym-media-content {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Specific styling for media/text alignment */
.item-left-text .asym-media-content {
    /* Changed border color to Accent Gold */
    border-left: 10px solid var(--color-accent-gold); 
}
.item-right-text .asym-media-content {
    /* Changed border color to Accent Gold */
    border-right: 10px solid var(--color-accent-gold); 
    order: -1; 
}


.asym-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.asym-title {
    /* Changed from Moss Dark to Primary Dark */
    color: var(--color-primary-dark); 
    font-family: var(--font-heading);
    font-size: 2.5em;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 15px;
}

.asym-description {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--color-charcoal-text); /* Use Text Color variable */
}

.btn-asym-read {
    display: inline-block;
    /* Changed background color to Accent Gold */
    background-color: var(--color-accent-gold); 
    color: var(--color-charcoal-text); /* Changed text color for better contrast on gold */
    padding: 12px 30px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-asym-read:hover {
    background-color: #784774; /* Slightly darker gold on hover */
    color: var(--color-charcoal-text);
}


/* ---------------------------------------------------- */
/* 2. REFLECTIONS SECTION (MAGAZINE GRID) */
/* ---------------------------------------------------- */
.reflections-asymmetrical {
    padding: var(--padding-large);
    background-color: var(--color-light-grey-bg);
    text-align: center;
}

.reflection-magazine-grid {
    display: grid;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 400px;
    gap: 20px;
}

.reflection-post-mag {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.post-image-mag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.reflection-post-mag:hover .post-image-mag {
    transform: scale(1.05);
}

.post-text-content-mag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: var(--color-text-light);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.post-category {
    /* Changed background color to Accent Gold */
    background-color: var(--color-accent-gold); 
    color: var(--color-charcoal-text); /* Changed text color for contrast */
    padding: 2px 8px;
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 2px;
}

.post-text-content-mag h4 {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 2em;
    line-height: 1.1;
    margin: 10px 0;
    text-align: left;
}
.small-post .post-text-content-mag h4 {
    font-size: 1.5em;
}

.post-text-content-mag p {
    font-size: 0.9em;
    margin-bottom: 10px;
    text-align: left;
}

.btn-read-mag {
    /* Changed text color to Accent Gold */
    color: var(--color-accent-gold); 
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    display: block;
    text-align: left;
    transition: color 0.3s ease;
}

.btn-read-mag:hover {
    color: var(--color-text-light);
}


/* ===================== SCHEDULE SECTION STYLES (White Background) ===================== */

.schedule-asymmetrical {
    padding: var(--padding-large);
    background-color: var(--color-light-grey-bg);
    text-align: center;
    color: var(--color-charcoal-text);
}

.schedule-container-asym {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header and Intro */
.asym-header-light {
    color: var(--color-accent-gold);
    font-family: var(--font-heading);
    font-size: 3.5em;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.schedule-intro-asym {
    color: var(--color-charcoal-text);
    font-weight: 300;
}

/* Grid */
.schedule-striped-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Schedule Cards */
.schedule-list-block-asym {
    background-color: var(--color-card-white);
    color: var(--color-charcoal-text);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 3px solid transparent;
    transition: all 0.3s ease-out;
}

.schedule-list-block-asym:hover {
    transform: translateY(-5px);
    border: 3px solid var(--color-accent-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Title */
.schedule-block-title-asym {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1.8em;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--color-accent-gold);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Tag */
.tag-asym {
    background-color: var(--color-accent-gold);
    color: var(--color-charcoal-text);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-body);
}

/* List Items */
.service-list-asym {
    list-style: none;
    padding: 0;
    margin: 0;
}

.striped-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 10px;
    margin: 5px -10px;
    font-size: 1em;
    border-radius: 4px;
}

.striped-item:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.03);
}

.highlight-item {
    background-color: rgba(44, 54, 120, 0.05);
    font-weight: 500;
}

.time-slot-asym {
    font-weight: 700;
    color: var(--color-accent-gold);
    flex-basis: 30%;
}

.service-name-asym {
    font-weight: 400;
    flex-basis: 70%;
}

.schedule-note-asym {
    margin-top: 20px;
    font-size: 0.9em;
    font-style: italic;
    color: #757575;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

/* CTA Button */
.btn-cta-asym {
    background-color: var(--color-accent-gold);
    color: var(--color-charcoal-text);
    border: 2px solid var(--color-accent-gold);
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-asym:hover {
    background-color: transparent;
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

/* Responsive */
@media (max-width: 600px) {
    .asym-header-light {
        font-size: 2.5em;
    }
}


/* ===================== FOOTER: CHURCH PROFESSIONAL LAYOUT (Deep Blue/Violet) ===================== */

.footer-church-professional {
    /* Solid Primary Dark background */
    background-color: var(--color-primary-dark); 
    color: var(--color-text-light);
    padding-top: 60px;
    font-family: var(--font-body);
}

.footer-container-pro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.footer-col-pro {
    flex-basis: 22%; /* Four equal columns */
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-col-mission {
    /* Give the mission column a bit more space */
    flex-basis: 30%; 
}

/* --- Branding --- */
.footer-logo-pro {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-bottom: 5px;
}

.footer-brand-title-pro {
    color: var(--color-text-light);
    font-size: 1.6em;
    font-family: var(--font-heading);
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.footer-mission-text-pro {
    font-size: 0.9em;
    opacity: 0.8;
    line-height: 1.6;
}

/* --- Headings --- */
.footer-heading-pro {
    color: var(--color-accent-gold); /* Gold Heading */
    font-size: 1.25em;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* --- Links --- */
.footer-links-list-pro {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list-pro li {
    margin-bottom: 12px;
}

.footer-links-list-pro a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95em;
    opacity: 0.8;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list-pro a:hover {
    opacity: 1;
    color: var(--color-accent-gold); 
    padding-left: 5px; /* Subtle hover animation */
}

/* --- Contact Info --- */
.footer-contact-item-pro {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact-item-pro i {
    color: var(--color-accent-gold);
    margin-right: 12px;
    font-size: 1.1em;
}

.footer-social-pro {
    margin-top: 20px;
}
.footer-social-pro a {
    color: var(--color-text-light);
    margin-right: 18px;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

.footer-social-pro a:hover {
    color: var(--color-accent-gold);
}


/* --- Bottom Credit Row --- */
.footer-bottom-pro {
    background-color: #242d62; /* Slightly darker shade for contrast */
    padding: 15px 5%;
    font-size: 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-credit-pro {
    color: var(--color-accent-gold);
    font-weight: 500;
    margin: 0;
}

.footer-copyright-pro {
    margin: 0;
    opacity: 0.7;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1000px) {
    .footer-container-pro {
        /* Switch to 2 columns */
        justify-content: space-around;
        gap: 30px;
    }
    .footer-col-pro {
        flex-basis: 45%; 
        min-width: 45%;
    }
    .footer-col-mission {
        flex-basis: 100%; /* Mission takes full width on smaller screens */
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-container-pro {
        /* Switch to 1 column */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col-pro {
        min-width: 100%;
        text-align: center;
    }
    .footer-contact-item-pro {
        justify-content: center;
    }
    .footer-bottom-pro {
        flex-direction: column;
        padding: 15px 5%;
    }
    .footer-credit-pro, .footer-copyright-pro {
        margin: 5px 0;
    }
}


/* ================= ASYMMETRICAL MOSAIC ================= */
.asymmetrical-mosaic {
  padding: 100px 20px;
  background-color: #fcfcfc;
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
  overflow: hidden;
}

/* ================= HEADER ================= */
.mosaic-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.mosaic-header h1 {
  font-size: 2.8em;
  font-weight: 500;
  line-height: 1.1;
  color: #4E344E;
}

.mosaic-header p {
  font-size: 1.25em;
  color: #6c7a89;
  margin-top: 20px;
}

/* ================= GRID ================= */
.mosaic-grid-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================= CARDS ================= */
.mosaic-card {
  background-color: #cdb9cd;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #4E344E;
}

.mosaic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-number {
  font-size: 3em;
  font-weight: 800;
  color: #8e8e92;
  display: block;
  margin-bottom: 5px;
}

.mosaic-card h3 {
  font-size: 1.5em;
  color: #4E344E;
  margin-bottom: 15px;
}

.mosaic-card p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

/* ================= ASYMMETRY ================= */
.card-large {
  grid-column: span 2;
}

.card-small {
  grid-column: span 1;
  padding: 35px 25px;
}

.card-offset-bottom {
  grid-column: 2 / span 2;
  margin-top: -80px;
  background-color: #ffffff;
  border-top-color: #4E344E;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .mosaic-grid-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .card-large,
  .card-small,
  .card-offset-bottom {
    grid-column: span 1;
    margin-top: 0;
  }
}

/* Footer main */
.footer-church {
  background-color: #f7f3e8; /* Pale warm background */
  color: #444;
  padding: 60px 20px 20px 20px;
  font-family: 'Roboto', sans-serif;
}

/* Footer container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Makes it responsive */
  gap: 40px; /* Space between columns */
  justify-content: space-between;
}

/* Footer columns */
.footer-col {
  flex: 1 1 200px; /* Responsive columns with minimum width */
}

.footer-about {
  flex: 1 1 250px;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.footer-title {
  font-family: 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 10px;
}

/* Column headings */
.footer-col h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Links list */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #a67c52; /* Subtle gold accent */
}

/* --- Footer Bottom Section (Copyright) --- */
.footer-bottom {
    text-align: center;
    padding: 20px 20px;
    font-size: 0.8rem;
    color: #a0a0a0;
    background-color: #4E344E; /* Slightly darker shade for the bottom bar */
}

.footer-bottom p {
    margin: 5px 0;
}

/* --- Responsiveness: Adjust for Tablets and Smaller Screens --- */
@media (max-width: 992px) {
    .footer-container {
        /* Change to 2 columns for a better flow on medium screens */
        grid-template-columns: 1fr 1fr; 
    }

    .footer-about {
        /* Make the logo/about column span two columns */
        grid-column: span 2; 
    }
}

/* --- Responsiveness: Adjust for Mobile Phones --- */
@media (max-width: 576px) {
    .footer-container {
        /* Switch to a single column stack for small screens */
        grid-template-columns: 1fr; 
        padding-bottom: 20px;
    }
    
    .footer-about {
        grid-column: span 1; 
        text-align: center;
    }
    
    .footer-about .footer-logo {
        margin: 0 auto 10px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        text-align: center;
    }
}


.footer-bottom {
  padding: 10px 0;
}



/*contact css */

/*
========================================
1. GLOBAL & RESET STYLES
========================================
*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Ensure global box-sizing consistency (Important for responsiveness) */
* {
    box-sizing: border-box;
}

/*
========================================
2. HERO SECTION (Responsive Font/Spacing)
========================================
*/
.page-contact-hero {
    /* Background Setup (Remains consistent) */
    background: url("contactus.png") no-repeat center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    text-align: center;
    
    /* Responsive Styling (Mobile Default) */
    color: #ffffff;
    padding: 2rem 1rem; /* Smaller padding for mobile */
    margin-bottom: 2rem;
    border-radius: 0 0 1rem 1rem;
    
    /* Responsive Font Size using clamp() for smooth scaling */
    /* Min: 2.5rem | Preferred: 7vw | Max: 5.5rem */
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800; 
}

/* Desktop adjustment for radius and margin */
@media (min-width: 1024px) {
    .page-contact-hero {
        padding: 40px;
        margin-bottom: 50px;
        border-radius: 0 0 20px 20px;
    }
}


/*
========================================
3. MAIN CONTACT CONTAINER STYLES
========================================
*/
.contact-container {
    width: 100%;
    max-width: 850px; 
    padding: 2rem 1rem; /* Responsive padding (2rem top/bottom, 1rem left/right) */
    margin: 0 auto;
    background-color: #ffffff; 
}

/* --- Top Info Section Styling (GRID/Flex) --- */

/* Mobile Default: Stacked Columns (Flex or single column grid) */
.info-grid {
    display: flex; /* Using flexbox for better mobile control */
    flex-direction: column; 
    gap: 1.5rem; /* Smaller gap for mobile */
    margin-bottom: 2rem;
}

.info-card h2 {
    font-size: 1.25rem; /* Smaller font for mobile */
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.info-card p {
    font-size: 1rem; /* Standard font size */
    color: #555;
    margin: 0.3rem 0;
}

.separator {
    border: none;
    border-top: 1px solid #eee;
    margin: 2rem 0; /* Responsive margin */
}

/* --- Form Heading Styling --- */
h1 {
    font-size: 2.5rem; /* Smaller font for mobile */
    color: #333;
    margin-bottom: 2rem;
    font-weight: 800;
}

/* --- Form Elements Styling --- */
.contact-form .form-group {
    margin-bottom: 1.5rem; /* Responsive margin */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 0; /* Smaller vertical padding */
    border: none; 
    border-bottom: 1px solid #ccc;
    font-size: 1rem;
    color: #555;
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #333; 
}

/* --- Submit Button Styling --- */
.contact-form button {
    width: 100%;
    padding: 1rem; /* Smaller padding for mobile */
    background-color: #4E344E; 
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px; /* Slightly reduced letter spacing */
}

.contact-form button:hover {
    background-color: #773a77;
}


/*
========================================
4. MEDIA QUERIES (Tablet/Desktop Layout)
========================================
*/

/* Tablet and larger screens (min-width: 768px) */
@media (min-width: 768px) {
    .contact-container {
        padding: 40px; /* Revert to original padding for large screens */
    }

    /* Info Grid Layout: Switch to Two Columns */
    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }

    .info-card h2 {
        font-size: 1.5em; /* Revert to original font size */
    }

    .separator {
        margin: 50px 0;
    }

    /* Form Heading */
    h1 {
        font-size: 3em; /* Revert to original large font size */
        margin-bottom: 50px;
    }

    /* Submit Button */
    .contact-form button {
        padding: 20px;
        font-size: 1.2em;
        letter-spacing: 2px;
    }
}






/*about css */



/* --- Dropdown Specific Styles --- */
/* ===================================
   DROPDOWN CONTAINER
=================================== */
.dropdown {
  position: relative;
  display: inline-block;
}

/* ===================================
   MENU BOX
=================================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 190px;
  margin: 0;
  padding: 6px 0;
  list-style: none;

  background-color: #fff; /* same color */
  border-radius: 8px;
  border: 1px solid #eee; /* same tone */

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transform: scale(0.95);
  transform-origin: top left;
  transition: all 0.25s ease;

  z-index: 50;
}

/* SHOW MENU */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ===================================
   MENU ITEMS
=================================== */
.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  font-size: 15px;
  color: #333; /* same color */
  text-decoration: none;

  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: background 0.25s ease, padding-left 0.25s ease;
}

/* Hover effect (same colors, fresh feel) */
.dropdown-menu a:hover {
  background-color: #f5f5f5; /* same color */
  padding-left: 22px;
}

/* Optional right side chevron */
.dropdown-menu a::after {
  content: "›";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dropdown-menu a:hover::after {
  opacity: 1;
}


/* what we  belive */

/* ===========================
   Section and Container
=========================== */
.mwci-section {
    padding: 60px 20px;
    background: linear-gradient(120deg, #4E344E, #e0e6f1); /* subtle gradient */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   Header Styling
=========================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.8em;
    color: #ffffff;
    font-weight: 70;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.intro-text {
    font-size: 1.15em;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================
   Beliefs Grid (Flexbox)
=========================== */
.beliefs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* ===========================
   Belief Item Styling
=========================== */
.belief-item {
    background:#ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 35px 25px;
    text-align: center;
    flex: 1 1 300px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.belief-item::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(140, 0, 255, 0.1);
    top: -110%;
    left: -10%;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}
.belief-item:hover::before {
    top: -10%;
    left: -10%;
}
.belief-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

/* Icon Styling with subtle animation */
.icon-placeholder {
    font-size: 3.2em;
    margin-bottom: 18px;
    color: #4E344E;
    transition: transform 0.4s ease, color 0.4s ease;
}
.belief-item:hover .icon-placeholder {
    transform: scale(1.2) rotate(10deg);
    color: #007bff;
}

/* Text Styling */
.belief-item h3 {
    font-size: 1.6em;
    color: #4E344E;
    margin-bottom: 10px;
    font-weight: 600;
}
.belief-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .belief-item {
        flex: 1 1 45%; /* two items per row */
    }
}
@media (max-width: 768px) {
    .belief-item {
        flex: 1 1 100%; /* stacked */
    }
}



/* reflaction page */


/* our_pastor page */
/* Full grey background */
.pastor-main-section {
    background: #4E344E;
    padding: 90px 0;
    padding-top: 0px;
}

/* Main container */
.pastor-main-wrapper {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    background: white;
    height: 1000px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* LEFT SIDE — IMAGE */
.pastor-main-left {
    width: 50%;
    height: 70%;
}

.pastor-main-left img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

/* RIGHT SIDE — CONTENT */
.pastor-main-right {
    width: 50%;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Role Tag */
.pastor-main-role {
    font-size: 15px;
    background: #f2f2f2;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    color: #8e8e92;
    margin-left: 0px;
    margin-right: 460px;
}

/* Pastor Name */
.pastor-main-name {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #4E344E;
}

/* Description */
.pastor-main-description {
    font-size: 18px;
    color: #8c8c8c;
    line-height: 1.6;
    margin-bottom: 25px;
    margin-top: 10px;
    
    
}


/* Founder / Pastor Section Text Styling */
.highlight {
    font-weight: 700;
    color: #5f3e5f;
}

.highlight-dark {
    font-weight: 700;
    color: #684563;
}

.scripture-block {
    margin: 2px 0;
    padding: 18px 24px;
    background: #ebd3eb;
    border-left: 5px solid #4E344E;
    border-radius: 6px;
}

.scripture {
    font-size: 15px;
    line-height: 1.7;
    color: #4E344E;
}

.gap {
    margin-top: 0px;
}








/* RESPONSIVE */
@media (max-width: 900px) {
    .pastor-main-wrapper {
        flex-direction: column;
        height: auto;
    }

    .pastor-main-left, 
    .pastor-main-right {
        width: 100%;
    }

    .pastor-main-right {
        padding: 40px;
        text-align: center;
    }
}









/* ================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width: 900px) {

    .pastor-wrapper {
        flex-direction: column;
    }

    .pastor-left,
    .pastor-right {
        width: 100%;
    }

    .pastor-right {
        padding: 40px 30px;
        text-align: center;
    }

    .pastor-name {
        font-size: 32px;
    }
}

/* FULL BACKGROUND */
.leaders-section {
    background: #eeeeee;
    padding: 80px 0;
}

/* CONTAINER */

.leadership-title {
    display: inline-block;
    margin: 40px auto 50px auto;
    padding: 12px 30px;
    background: #ffffff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #8e8e92;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
     display: block;
    text-align: center;
    width: fit-content;
    display: block;
    text-align: center;
    width: fit-content;

    margin: 120px auto 50px auto;  /* ⬅️ increase this number to move it DOWN */
    

}


/* ===============================
   LEADERS SECTION MAIN AREA
================================= */
.leaders-section {
    background: #eeeeee;
    padding: 80px 0;
}

/* ===============================
   SECTION TITLE DESIGN
================================= */
.leadership-title {
    display: block;
    margin: 120px auto 50px auto;
    padding: 12px 30px;
    background: #ffffff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #8e8e92;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
    width: fit-content;
}

/* ===============================
   GRID CONTAINER (3 PER ROW)
================================= */
.leaders-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ⬅️ EXACTLY 3 per row */
    gap: 35px;
}

/* ===============================
   LEADER CARD BOX
================================= */
.leader-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===============================
   IMAGE INSIDE CARD
================================= */
.leader-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* ===============================
   INFORMATION BOX
================================= */
.leader-info {
    padding: 25px 30px;
}

.leader-name {
    font-size: 26px;
    margin: 0 0 8px;
    font-weight: 700;
}

.leader-role {
    color: #666;
    margin: 0 0 20px;
    font-size: 16px;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================= */

/* Tablet: 2 per row */
@media (max-width: 900px) {
    .leaders-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-photo {
        height: 300px;
    }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
    .leaders-container {
        grid-template-columns: 1fr;
    }

    .leader-photo {
        height: 260px;
    }
}


/* our belief */
.hero-belief {
   position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 120px 0%;
  min-height: 70vh; /* full screen height */
  width: 100%;
  background: url('images/ourbelief1.png') center/cover no-repeat;
  text-align: center;

  /* ADD TEXT STYLES */
  color: #ffffff;      /* change text color */
  font-size: 32px;     /* change font size */
  font-weight: 600;    /* optional - make bold */
  
  
}

/* ===== TOP QUOTE SECTION ===== */
.belief-quote-section {
  background: #f3f3f3;
  padding: 70px 20px;
  text-align: center;
}

.belief-quote-box {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 40px 20px;
  position: relative;
}

.belief-quote-box::before {
  content: "❝";
  font-size: 40px;
  color: #cccccc;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #f3f3f3;
  padding: 0 10px;
}

.belief-quote {
  font-size: 24px;
  font-style: italic;
  color: #777;
  line-height: 1.6;
}

/* ===== MAIN CONTENT SECTION ===== */
.belief-content-section {
  background: #ffffff;
  padding: 100px 20px;
}

.belief-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.belief-heading {
  font-size: 30px;
  color: #4E344E;
  margin-bottom: 20px;
  margin-top: 1px;
}

.belief-description {
  font-size: 18px;
  color: #4e4d4d;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* BULLET LIST */
.belief-list {
  list-style-type: disc;
  padding-left: 40px;      /* indent bullets */
  margin-top: 20px;
}

.belief-list li {
  margin-bottom: 35px;     /* spacing between belief items */
}

.belief-list h3 {
  font-size: 24px;
  color: #2c3678;
  margin-bottom: 8px;
  font-weight: 600;
}

.belief-list p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}



.belief-btn-center {
  text-align: center;
  margin-top: 50px;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;

  background: linear-gradient(135deg, #4E344E, #7a4f7a);
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;

  border-radius: 50px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(78, 52, 78, 0.35);
  transition: all 0.35s ease;
}

.btn-learn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(78, 52, 78, 0.45);
  filter: brightness(1.05);
}



/*services next page button*/
.btn-services {
    text-align: center;
    margin-top: 20px;
}

.btn-modern {
    font-size: 1rem;
    font-weight: 600;
    color: #8B5E3C; /* brown theme */
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.btn-modern .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-modern:hover {
    color: #C19A6B; /* lighter brown on hover */
}

.btn-modern:hover .arrow {
    transform: translateX(5px); /* arrow slides on hover */
}







/*about bg image */
.hero-about {
    position: relative;
    width: 100%;
    height: 70vh; /* adjust as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* Optional overlay for better text visibility */
.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 1;
}

.hero-about-content {
    position: relative;
    z-index: 2;
}

.hero-about-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(11, 11, 11, 0.5);
    margin: 0;
}



/* vision bg css */
/* ===========================
   HERO VISION SECTION
=========================== */
.hero-vision {
    position: relative;
    width: 100%;
    height: 65vh; /* Adjust height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* Dark overlay */
    overflow: hidden;
}

.hero-vision h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-vision {
        height: 50vh;
    }

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

/* ===================== VISION SECTION ===================== */
.vision-section {
    background-color: #ffffff;
    padding: 60px 8%;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.vision-left {
    flex: 1 1 480px;
}

.vision-title {
    font-size: 2.8rem;
    color: #4E344E;
    margin-bottom: 20px;
}

.vision-text {
    font-size: 1.35rem;
    color: #444;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 25px;
}

.vision-points {
    list-style: none;
    padding: 0;
}

.vision-points li {
    font-size: 1.1rem;
    color: #4E344E;
    margin-bottom: 10px;
}

.vision-right {
    flex: 1 1 400px;
}

.vision-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .vision-container {
      flex-direction: column;
      text-align: center;
  }
}









/*mission css */
/* ===================== MISSION SECTION ===================== */
.mission-section {
    background-color: #ffffff; /* soft cream tone */
    padding: 60px 8%;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-left {
    flex: 1 1 400px;
}

.mission-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

.mission-right {
    flex: 1 1 480px;
}

.mission-title {
    font-size: 2.8rem;
    color: #4E344E; /* rich brown */
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    margin-bottom: 25px;
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #4E344E;
}

/* Mobile */
@media (max-width: 768px) {
  .mission-container {
      flex-direction: column;
      text-align: center;
  }
}





/*home page about leran more*/
/* Center the button container */
.btn-about {
    text-align: center;  
    margin-top: 30px;
}

/* Button Style */
.btn-modern {
    display: inline-block;
    padding: 14px 28px;
    background: #6b573a; /* warm brown */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

/* Arrow style */
.btn-modern .arrow {
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-modern:hover .arrow {
    transform: translateX(6px);
}

.section-whatwedo {
    padding: 90px 20px;
    background: #f6efe7;     /* Soft warm/brown theme */
}

.wwd-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-whatwedo h2 {
    font-size: 42px;
    font-weight: 70;
    color: #4E344E; 
    margin-bottom: 15px;
}

.section-whatwedo p {
    font-size: 18px;
    line-height: 1.7;
    color: #787678;
    margin-bottom: 40px;
}
.btn-wwd {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #4E344E;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;

  position: relative;
  transition: color 0.3s ease;
}

/* Subtle underline */
.btn-wwd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #4E344E;
  transition: width 0.3s ease;
}
.btn-wwd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4E344E;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;

  /* 3D text effect using layered shadows */
  text-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 2px 0 rgba(0,0,0,0.08);
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Underline effect */
.btn-wwd::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: currentColor;
  transition: width 0.35s ease-out;
}

/* Arrow effect */
.btn-wwd span {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover: lift text and arrow */
.btn-wwd:hover {
  color: #6b4a6b;
  transform: translateY(-2px);
  text-shadow: 0 4px 6px rgba(0,0,0,0.15), 0 2px 3px rgba(0,0,0,0.1);
}

.btn-wwd:hover::after {
  width: 100%;
}

.btn-wwd:hover span {
  transform: translateX(8px) scale(1.1);
}

/* Active: press text down */
.btn-wwd:active {
  transform: translateY(0) scale(0.98);
  text-shadow: 0 1px 0 rgba(220, 17, 17, 0.08), 0 2px 0 rgba(0,0,0,0.06);
}





















.cta {
  padding: 80px 20px;      /* Top–Bottom | Left–Right */
  text-align: center;
  background-color: #d5c5a6; /* optional – remove if not needed */
}

.cta h2 {
  max-width: 720px;
  margin: 0 auto 28px;     /* space between text and button */
  line-height: 1.4;
}

.cta .btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .cta {
    padding: 60px 16px;
  }

  .cta h2 {
    font-size: 22px;
  }
}


.church-planting-img {
  width: 320px;     /* control size here */
  height: auto;     /* keep ratio */
  max-width: 100%;
}
@media (max-width: 768px) {
  .church-planting-img {
    width: 250px;
  }
}
