/* css/contact.css */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  color: #000000;
  padding-top: 50px; /* adjust to your header height */
}

header {
  width: 100%;
  background-color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 5px 80px;
  height: 20px; /* or whatever height you want */
  flex-wrap: wrap;
  padding-bottom: 30px;
  z-index: 10
}

.logo {
  position: absolute;
  left: calc(20px + 1.5cm);
  margin-bottom: 10px; /* pushes nav downward if needed */
  z-index: 11
}

.logo img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  z-index: 11
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 10px;
  }
}

nav {
  display: flex;
  gap: 30px;
}

#menu-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  border: none;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.contact-hero {
  text-align: center;
  padding: 40px 40px;
  background: #f4f4f4;
}

.contact-hero h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.contact-form-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #333;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #555;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #222;
  color: #fff;
  padding: 40px 60px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 0 20px;
  min-width: 200px;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}

.footer-brand {
  font-family: 'Gemina', Arial, sans-serif;
  color: white;
  font-size: 1.8rem;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 10px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  nav.show {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}

.contact-form-container {
  max-width: 500px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #333;
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
}

.contact-form-container input,
.contact-form-container textarea {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form-container button {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-container button:hover {
  background-color: #555;
}

/* Reset contact-form-section to prevent stretching */
.contact-form-section {
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}

/* Fix for full-width issue */
.contact-form-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 90%;
}

.footer-logo-img {
  max-height: 180px; /* desktop size */
  width: auto;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  display: block;
}

@media (max-width: 991px) {
  .footer .container {
    flex-direction: column;
    align-items: flex-start;  /* left align instead of center */
    text-align: left;         /* text left aligned */
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo-img {
    max-height: 160px;
    filter: brightness(0) invert(1);
  }

  .footer-column {
    margin-top: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    text-align: left;         /* text left aligned */
  }
}
