/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Mulish", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

img,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* ========== COLORS & FONTS ========== */
:root {
  --primary: #19197c; /* Royal Blue */
  --secondary: #800020; /* Burgundy */
  --accent: gold;
  --text-color: #333;

  --font-primary: "Libre Baskerville", serif;
  --font-secondary: "Cormorant Garamond", serif;
  --font-body: "Mulish", sans-serif;
}

/* ========== HEADER / NAV ========== */
nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

nav a {
  padding: 0.6rem 1rem;
  color: #fff;
  background-color: var(--primary);
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: var(--accent);
  color: var(--secondary);
}

/* ========== TITLES ========== */
h2,
h3 {
  font-family: var(--font-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  color: var(--secondary);
  text-align: center;
  margin: 1rem 0;
}

.centered-box h2 {
  font-size: 1.6rem;
  color: var(--accent);
}

/* ========== SERVICE TIMES ========== */
.centered-box {
  background: linear-gradient(135deg, var(--secondary), #660017);
  color: #fff;
  padding: 1.5rem;
  margin: 1rem auto;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.centered-box p {
  margin: 0.4rem 0;
  font-size: 1rem;
}

.qr-code-wrapper {
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
  display: inline-block;
  margin: 1rem auto;
}

/* ========== LOCATIONS GRID ========== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.location-card {
  background: var(--primary); /* Royal Blue */
  color: #fff;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.location-card:hover {
  background: var(--secondary); /* Burgundy */
  color: var(--accent); /* Gold */
  transform: scale(1.02);
}

.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.location-card h3,
.location-card p {
  transition: color 0.3s ease;
}

.location-card:hover h3,
.location-card:hover p {
  color: var(--accent); /* Gold */
}

.map iframe {
  width: 100%;
  height: 180px;
  border-radius: 6px;
}

/* ========== DONATE BUTTON ========== */
.donate-button {
  display: inline-block;
  background: var(--accent);
  color: var(--secondary);
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin: 1rem 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.donate-button:hover {
  transform: scale(1.05);
  background: #ffd700;
}

/* ========== SOCIAL SECTION ========== */
.social-section-modern {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 600px;
}

.social-btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
}

.fb-like-btn {
  background: #1877f2;
}
.youtube-btn {
  background: #cc0000;
}

.fb-like-btn:hover,
.youtube-btn:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
  .centered-box h2 {
    font-size: 1.3rem;
  }
  .location-card img {
    height: 140px;
  }
}
/* Center header */
.app-header {
  text-align: center;
  padding: 1.5rem;
}

.app-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.app-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #800020;
}

.app-subtitle {
  font-size: 1.2rem;
  color: #555;
}

/* Menu grid */
.app-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem;
}

.menu-btn {
  display: block;
  background: #19197c;
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background 0.3s;
}

.menu-btn i {
  margin-right: 0.5rem;
}

.menu-btn:hover {
  background: gold;
  color: #19197c;
}

.menu-btn.donate {
  background: #800020;
}

/* Footer */
.footer {
  background: #19197c;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
/* Footer with multiple buttons */
.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-buttons .menu-btn {
  flex: 1 1 auto;
  max-width: 200px;
  background: #19197c;
  color: white;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.footer-buttons .menu-btn:hover {
  background: gold;
  color: #19197c;
}
/* ===== GIVE PAGE STYLES ===== */

/* Scripture Quote */
.scripture-quote {
  background: rgba(128, 0, 32, 0.9); /* Burgundy */
  color: white;
  font-size: 1.2rem;
  font-style: italic;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 700px;
  margin: 1.5rem auto;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.scripture-reference {
  display: block;
  margin-top: 0.8rem;
  font-weight: bold;
  color: gold;
  font-size: 1rem;
}

/* Centered Donation Box */
.centered-box {
  background: #19197c; /* Royal blue */
  color: white;
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.centered-box h2 {
  color: gold;
  margin-bottom: 0.8rem;
}

.centered-box p {
  margin-bottom: 1rem;
}

/* Donate Button */
.donate-button {
  display: inline-block;
  background: gold;
  color: #800020;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.3s ease;
}

.donate-button:hover {
  background: #ffd700;
  transform: scale(1.05);
}

/* QR Card */
.qr-card {
  background: linear-gradient(135deg, #800020, #a83244);
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.qr-title {
  font-size: 1.5rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.qr-img {
  width: 180px;
  margin-top: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* ===== UPCOMING ITINERARY ===== */
.itinerary-box {
  background: #800020; /* Burgundy */
  color: white;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.itinerary-box h2 {
  color: gold;
  margin-bottom: 0.5rem;
}

.itinerary-box p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
}
/* Special styling for the Give button */
.menu-btn.give {
  background: linear-gradient(
    135deg,
    #800020,
    #19197c
  ); /* Burgundy to Royal Blue */
  color: gold;
  font-weight: bold;
}

.menu-btn.give:hover {
  background: gold;
  color: #19197c; /* Royal Blue text on hover */
}
