/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar .logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.nav-links li a:hover {
  color: #ffd700;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
}

/* Sections with backgrounds */
.hero {
  background: url('https://i.imgur.com/XmEHW80.jpeg') center/cover no-repeat;
  height: 100vh;
}

.section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.overlay {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
}

/* Section Backgrounds */
.creed-section {
  background: url('https://i.imgur.com/IvwkoPs.jpeg') center/cover no-repeat;
}

.saints-section {
  background: url('https://i.imgur.com/Q9gDlvU.jpeg') center/cover no-repeat;
}

.faq-section {
  background: url('https://i.imgur.com/IvwkoPs.jpeg') center/cover no-repeat;
}

.resources-section {
  background: url('https://i.imgur.com/Q9gDlvU.jpeg') center/cover no-repeat;
}

.contact-section {
  background: url('https://i.imgur.com/IvwkoPs.jpeg') center/cover no-repeat;
}

/* Fade-in animation */
.section, .hero {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Text styling */
h2, p, ul, li {
  text-align: center;
  color: #ffffff;
}

ul {
  list-style: none;
  padding: 0;
}

ul li a {
  color: #ffd700;
  text-decoration: none;
}

ul li a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
