style.css
/*
  Custom stylesheet for the Unity Baptist Church website.
  Colors, typography and layout reflect an old‑world luxury meets modern chic aesthetic.
*/

:root {
  --primary-color: #264653;
  --secondary-color: #e9c46a;
  --light-color: #fdfcf5;
  --dark-color: #2a3d45;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html,
body {
 height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100vh;
  background: url("congregation-at-worship-stockcake.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  color: #544D4D;
  z-index: 0;
}

/* Overlay for opacity */
body::before {
  content: "";
  position: fixed; /* stays locked while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* 10% dark overlay */
  z-index: -1; /* stays behind all page content */
}

header {
  background-color: var(--primary-color);
  color: #36454F;
  position: ;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 0px; /* controls spacing between logo and text */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* space between image and text */
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #615F5E;
}

.logo img {
  width: 70px;   /* adjust as needed */
  height: auto;
  display: block;
}

/* Body text */
body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #36454F;
  margin: 0;
  padding: 0;
}

/* Navigation links */
.main-nav a {
  font-family: 'Montserrat', sans-serif; /* modern, bold, chic */
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase; /* optional: makes it look clean & strong */
  letter-spacing: 1px;
  color: #635B5B; 
  text-decoration: none; /* removes underline */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav ul li a {
  color: #36454F ;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a:focus {
  color: var(--secondary-color);
  outline: none;
}

/* Hero section with an embedded background image */
.hero {
  position: relative;
  min-height: 60vh;
  background-image: url("data:{mime};base64,{b64}");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(38, 70, 83, 0.6);
  z-index: 0;
}

.hero .hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #f4a261;
  color: var(--primary-color);
}

section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

details {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
}

details summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-color);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::before {
  content: '+';
  font-weight: 700;
  margin-right: 8px;
  color: var(--secondary-color);
}

details[open] summary::before {
  content: '−';
}

.service-times {
  background-color: var(--primary-color);
  color: ;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.service-times h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.video-grid iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.card {
  background-color: #fff;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

form input,
form textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  font-weight: 600;
}

form button:hover {
  background-color: #f4a261;
  color: var(--primary-color);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero h2 {{
    font-size: 1.8rem;
  }
}