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

body {
  font-family: 'Segoe UI', sans-serif;
  background: white;
  color: black;
  line-height: 1.6;
}

/* Top Banner */
.top-banner-message {
  background: black;
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
}

.highlight {
  color: #f5c518;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

/* Desktop Nav */
nav.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  background-color: black;
  position: relative;
  z-index: 10;
}

nav.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav.main-nav a:hover {
  color: #f5c518;
}

nav.main-nav a.active {
  color: #f5c518;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: black;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  z-index: 1000;
}

.mobile-menu a {
  color: white;
  font-size: 18px;
  margin: 10px 0;
  text-decoration: none;
}

.mobile-menu.active {
  display: flex;
}

.menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* Generic Page Section */
.page-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-content p {
  font-size: 1.1rem;
}

/* === FOOTER LINKS === */
.footer-bottom ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
/* === CONTACT FORM STYLING === */
.contact-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-container h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #111;
}

.contact-container p {
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-container input,
.contact-container textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.contact-container input:focus,
.contact-container textarea:focus {
  border-color: #ffd700;
  outline: none;
}

.contact-container textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-container button {
  padding: 12px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-container button:hover {
  background-color: #ffd700;
  color: #000;
}
