/* Reset + base styling */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}


/* NAV */
header {
  /* background-color: #111; */
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 120px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FFD700; /* Gold highlight */
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .navbar.active .nav-links {
    display: flex;
  }
}

/* Hamburger default hidden */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 5px;
}

/* Responsive nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    position: relative;
  }
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #111;
}

/* Banner */
.contact-banner {
  background-color: #eee;
  padding: 100px 20px 60px;
  text-align: center;
}

.contact-banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

.contact-banner p {
  font-size: 1.2rem;
  color: #555;
}

/* Info Section */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 60px 20px;
  background-color: #fff;
  gap: 30px;
}

.info-box {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #f3f3f3;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.info-box h2 {
  color: #FFD700;
  margin-bottom: 15px;
}

.info-box a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.info-box a:hover {
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  padding: 60px 20px;
  background-color: #fff;
  max-width: 600px;
  margin: auto;
}

.info-box {
  flex: 1 1 100%;
  max-width: 300px;
  height: 250px; /* Equal height for all boxes */
  background-color: #f3f3f3;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box h2 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.info-box a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.info-box a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .info-box {
    height: 230px;
    padding: 20px;
  }

  .info-box h2 {
    font-size: 1.1rem;
  }

  .info-box p {
    font-size: 0.95rem;
  }
}



















  /* Footer */
  .footer {
    background-color: #1c1c1c;
    color: #ccc;
    padding: 60px 20px 20px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
  }
  
  .footer h3, .footer h4 {
    color: #FFD700;
    margin-bottom: 15px;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-center ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-center ul li {
    margin-bottom: 10px;
  }
  
  .footer-center ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-center ul li a:hover {
    color: #FFD700;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #777;
    font-size: 0.85rem;
  }
  
  .footer a {
    color: #ccc; /* or #ccc if you want a subtle look */
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  