/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ========== NAVBAR ========== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 28px 32px;
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: bold;
    font-size: 1.7rem;
    text-decoration: none;
  }
  
  .nav-brand img {
    height: 100px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 20px 22px;
    font-size: 1.2rem;
  }
  
  .nav-links li a:hover {
    background-color: #111;
  }
  
  /* ========== CTA BANNER ========== */
  .cta-banner {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #7a003c;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 18px 12px;
    font-size: 1.1rem;
  }
  
  /* ========== HERO SECTION ========== */
  .hero {
    position: relative;
    height: 70vh;
    background-image: url("home_bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
  }
  
  .hero-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 50px 70px;
    border-radius: 12px;
    text-align: center;
    max-width: 750px;
  }
  
  .hero-subtext {
    font-size: 1.3rem;
    color: #444;
  }
  
  .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 14px 0;
  }
  
  /* ========== GET TO KNOW US SECTION ========== */
  .about-preview {
    background-color: #f7f7f7;
    padding: 120px 20px; /* BIG vertical spacing */
    display: flex;
    justify-content: center;
  }
  
  .about-content {
    max-width: 1000px; /* wider reading column */
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
  }
  
  .about-content p {
    font-size: 1.2rem;
    line-height: 1.9; /* easier reading */
    margin-bottom: 36px;
    color: #444;
  }
  
  .about-highlight {
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 20px;
  }
  
  /* RECTANGULAR BUTTON */
  .about-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 48px;
    background-color: #7a003c;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 2px; /* sharp rectangle */
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .about-btn:hover {
    background-color: #5e002e;
    transform: translateY(-3px);
  }
  
  /* ========== RESPONSIVE ========== */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-card {
      padding: 36px 28px;
    }
  
    .about-content {
      max-width: 90%;
    }
  
    .about-content p {
      font-size: 1.1rem;
    }
  }
  
  /* =========================
   SITE FOOTER
========================= */

.site-footer {
  background-color: #222;
  color: #ddd;
  margin-top: 80px;
}

/* Main footer layout */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Brand (logo + name) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
}

/* Footer sections */
.footer-section h4 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  background-color: #1a1a1a;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* =========================
   RESPONSIVE FOOTER
========================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}
