
/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background: #f2f1ed;
  color: #333;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  letter-spacing: -0.5px;
}

h2 {
  letter-spacing: -0.3px;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.05rem;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.2px;
}

strong {
  font-weight: 600;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background-color: #1f1f2e;
  color: #fff;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.logo-img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

nav ul li a {
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  letter-spacing: 0.3px;
}

nav ul li a:hover {
  background-color: #ffb703;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('images/church-background.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  padding: 3rem;
  border-radius: 10px;
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
  color: #e8e8e8;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-buttons a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin: 0 0.5rem;
  background-color: #ffb703;
  color: #000;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons a:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* SECTION HEADINGS */
section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin: 3rem 0 1.5rem;
  color: #1f1f2e;
  font-weight: 700;
  position: relative;
}

section h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #ffb703;
  display: block;
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* ABOUT */
.about {
  padding: 3rem 1rem;
  background-color: #fff;
}

.about p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* MEDIA */
.media {
  background-color: #f8f6f3;
  padding: 3rem 1rem;
}

.media-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  padding-top: 1rem;
}

.media-container img {
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.media-container img:hover {
  transform: scale(1.05);
}

.media-text {
  max-width: 500px;
}

.media-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.media-text p {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.05rem;
}

/* EVENTS */
.events {
  background-color: #fff;
  padding: 3rem 1rem;
}

.event {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.event img {
  max-width: 220px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.event img:hover {
  transform: scale(1.05);
}

.event h3 {
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* CONNECT */
.connect {
  background-color: #1f1f2e;
  padding: 3rem 1rem;
  text-align: center;
  color: #fff;
}

.connect h2 {
  color: #fff;
}

.connect-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect-links a {
  background-color: #ffb703;
  color: #000;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.connect-links a:hover {
  transform: translateY(-3px);
}

/* BUTTONS */
.btn {
  background-color: #ffb703;
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
}

.btn:hover {
  background-color: #ff9900;
  transform: translateY(-2px);
}

.btn.outline {
  background-color: transparent;
  border: 2px solid #ffb703;
  color: #ffb703;
}

.btn.outline:hover {
  background-color: #ffb703;
  color: #000;
}

/* FOOTER */
footer {
  background-color: #0d0d18;
  color: #ddd;
  padding: 2.5rem 1rem;
  text-align: center;
  border-top: 3px solid #ffb703;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.footer-content ul li {
  margin-bottom: 0.8rem;
}

.footer-content a {
  color: #ffb703;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  text-decoration: underline;
  color: #ff9900;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-container {
    flex-direction: column;
  }

  .event {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

.content-boxes .box p {
  margin-bottom: 20px;
}

.content-boxes .btn {
  margin-top: 15px;
  display: inline-block;
}