    /*  body  */
body {
    margin: 1;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #151c4a; /* Midnight Blue */
} 

    /* Navbar container */
nav {
    background-color: #edfcff; /* Light background for modern look */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 2px solid #eee;
    border-radius: 15px;
}
    
    /* Define the font once */
@font-face {
    font-family: 'wisdom';
    src: url('../css/fonts/wisdom.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    
}

    /* Apply it to the logo */
.logo {
    font-family: 'wisdom', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
}

    /* Menu items */
.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    margin: 0;
    padding: 2;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #5561ab; /* Accent color like the orange highlight */
}

.main-menu {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding: 20px;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-family: sans-serif;
  /* Smoothly animate the transition in and out */
  transition: transform 0.3s ease-in-out;
  display: inline-block;
}

/* Zoom effect on hover */
.main-menu a:hover {
  transform: scale(1.2); /* Increases size by 20% */
}

    /* Call-to-action button */
.login-btn {
    background-color: #151c4a;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #5561ab;
    transform: scale(1.2); /* Increases size by 20% */
}

/* Apply only to logo */
.logo {
  font-family: 'wisdom', sans-serif;
}
.content-block {
    display: flex;
    margin: 20px;
    padding: 40px;
    border-radius: 20px; /* Rounded corners shown in image */
    align-items: center;
}

.identity { background-color: #f5efe6; } /* Light tan */
.faith { background-color: #5c7c64; color: white; } /* Muted green */

.image-box, .text-box {
    flex: 1;
    padding: 20px;
}

img {
    width: 100%;
    border-radius: 15px;
}
.hero-container {
  /* Set full viewport height and background image */
  height: 15vh;
  background: url('your-background-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

}

.main-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Helps readability over image */
}

.card-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  padding: 0 20px;
}

.info-card {
  /* Semi-transparent blue background */
  background-color: rgba(64, 150, 238, 0.7); 
  padding: 30px;
  border-radius: 15px; /* Rounds the corners */
  flex: 1; /* Makes all cards equal width */
  text-align: left;
  min-height: 250px;
}

.info-card h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.zoom-menu {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.zoom-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-family: sans-serif;
  /* Smoothly animate the transition in and out */
  transition: transform 0.3s ease-in-out;
  display: inline-block;
}

/* Zoom effect on hover */
.zoom-menu a:hover {
  transform: scale(1.2); /* Increases size by 20% */
}


/* Responsiveness for mobile: stacks cards vertically */
@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
  }
}
