body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  text-align: center;
}

.welcome {
  padding: 2rem;
  background: #ecf0f1;
}

.slideshow-container {
  position: relative;
  margin: auto;
  max-width: 700px;
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slides {
  display: none;
  font-size: 1.2rem;
  color: #fdfeff;
}

footer {
  background: #2c3e50;
  color: white;
  padding: 1rem;
  margin-top: 2rem;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Header */
header {
  background: #2c3e50;
  color: white;
  padding: 0.8rem 2rem;
  position: relative;  
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: white;
  object-fit: cover;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
   top: 70px;   /* below header */
  right: 0;
  z-index: 1100;    /* even above hero */
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f1c40f; /* gold on hover */
}

/* Navigation bar setup */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 10px 30px;
}


.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: yellow;
}

/* Contact button */
.contact-btn {
  background: yellow;
  color: black !important;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #f4d03f;  /* darker yellow on hover */
}
/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  transition: 0.4s;
}

/* X animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dropdown - Desktop */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
  z-index: 1200;
  border-radius: 6px;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.dropdown-content li a:hover {
  background-color: #f1c40f;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}


/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 240px;
    padding: 15px;
    border-radius: 5px 0 0 5px;
  }

  nav .nav-links.show {
    display: flex;
  }

  nav .nav-links li {
    margin: 10px 0;
    text-align: left;
  }

  /* Mobile Dropdowns */
  .dropdown-content {
    position: static;
    background: #808080;
    box-shadow: none;
    border-radius: 0;
    display: none;
    width: 100%;
  }

  .dropdown.active .dropdown-content {
    display: block; /* opens properly inside */
  }
}


/* Welcome */
.welcome {
  padding: 2rem;
  background: #ecf0f1;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  margin: 2rem auto;
  max-width: 700px;
  background: rgb(241, 178, 4);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slides {
  display: none;
  font-size: 1.2rem;
  color: #34495e;
}

.verse {
  position: relative;
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical center */
  text-align: center;
  padding: 80px 20px;        /* space around the text */
  color: white;
  font-size: 1.8em;
  background-image: url('./Photos/background\ 5.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.verse-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* Dark overlay */
  z-index: 1;
}

.verse p {
  position: relative;
  z-index: 2;   /* keep text above overlay */
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}


/* Footer */
footer {
  background: #2c3e50;
  color: white;
  padding: 1rem;
  margin-top: 2rem;
}
.footer-content { max-width:1100px; 
    margin:0 auto; 
    display:flex; 
    flex-wrap: wrap; 
    justify-content:space-between; 
}
.footer-col { flex:1; 
    min-width:200px; 
    margin:10px; 
}
a { color:white; 
    text-decoration:none; 
}
a:hover { text-decoration:underline; 
}

.socials {
  margin-top: 1rem;
}

.socials a {
  display: inline-block;
  margin: 0 1rem;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.socials a i {
  margin-right: 8px; /* space between icon and text */
  font-size: 1.2rem;
}

/* Hover effect */
.socials a:hover {
  color: #f1c40f; /* gold on hover */
}





.hero { position: relative; height: 70vh; color: white; }
    .hero .slide { position: absolute; width:100%; height:100%; top:0; left:0; background-size:cover; background-position:center; opacity:0; transition: opacity 1s ease-in-out; }
    .hero .slide.active { opacity:1; }
    .hero .overlay { position: absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.4); }
    .hero .hero-content { position: relative; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; text-align:center; padding:0 20px; }
    .hero h1 { font-size: 3em; margin:0; }
    .hero p { font-size:1.2em; margin:20px 0; }
    .hero button { padding: 10px 30px; background:#e67e22; border:none; color:white; border-radius:5px; font-size:1em; cursor:pointer; }
    .hero button:hover { background:#d35400; }

   .cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 320px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.service-list {
  list-style-type: disc;  /* bullet points */
  padding-left: 20px;     /* indent nicely */
  text-align: left;       /* align items left */
  margin: 0;              /* remove extra gaps */
}

.service-list li {
  margin-bottom: 6px;
  color: #2c2c2c;
  font-size: 0.95rem;
}






