@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

.wrapper {
  max-width: 1400px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  background-color: rgba(255, 245, 224, 1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: rgba(255, 245, 224, 1);
  position: relative;
}

.logo img {
  height: 250px;
  width: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: rgba(75, 93, 53, 1);
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: rgba(247, 181, 42, 1);
}

.contact-hero {
  text-align: center;
  padding: 100px 20px;
  background-image: url("images/contact jumbo.png"); 
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero h3,
.contact-hero p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.contact-hero h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color:rgba(51,25,1,1.00);
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 245, 224, 1);
}

.contact-hero h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(74, 42, 10, 1);
}

.contact-section {
  padding: 40px;
  background-color: rgba(251, 214, 172, 0.2);
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  color: rgba(74, 42, 10, 1);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid rgba(75, 93, 53, 0.4);
  border-radius: 8px;
}

.contact-form button {
  background-color: rgba(247, 181, 42, 1);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: rgba(222, 160, 36, 1);
}


.site-footer {
  background-color: rgba(75, 93, 53, 1);
  color: rgba(255, 255, 255, 1.00);
  padding: 20px 40px;
  margin-top: 60px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-right a {
  color: #f5f5f5;
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-right a:hover {
  color: rgba(247, 181, 42, 1);
}


@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right a {
    margin: 0 10px;
  }
}
