* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: "Dogjaw W01 Regular";
  background-color: black;
  scroll-behavior: smooth;
  color: white;
}

.logo {
  position: absolute;
  top: 10px;
  left: 25px;
  width: 90px;
  z-index: 100000;
}

.nav {
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "Dogjaw W01 Regular";
  padding: 18px;
  border-radius: 8px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav ul {
  list-style-type: none;
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 0;
}

.nav ul li a {
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #e62b2b;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
}

.header {
  background-image: url("https://mir-s3-cdn-cf.behance.net/project_modules/fs/24ba22188096121.659680fce3128.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.header h1 {
  width: 100%;
  height: 65vh;
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
  margin: 0;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  display: flex;
  justify-content: left;
  align-items: center;
  color: #e1ddddea;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 30px auto;
  background-color: #1a1a1a;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.container h2 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
  font-size: 1.8rem;
}

.contact-details {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-details div {
  width: 48%;
  padding: 20px;
  background-color: #333;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  color: #fff;
}

.contact-details h3 {
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  color: #cccbcbea;
  font-size: 1.5rem;
}

.contact-details p {
  margin: 5px 0;
  line-height: 1.8;
}

.form-container {
  margin-top: 40px;
  margin-left: 17px;
  width: 72vw;
}

form {
  display: flex;
  flex-direction: column;
}

input,
textarea {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #666;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  background-color: #333;
  color: white;
}

textarea {
  resize: vertical;
  height: 150px;
}

button {
  padding: 15px;
  background-color: #fff;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

button:hover {
  background-color: #eeeff7b3;
}

iframe {
  width: 97%;
  height: 600px;
  border: none;
  margin-top: 40px;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
  }
  .contact-details div {
    width: 100%;
  }
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  margin-top: 50px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

footer p {
  font-size: 0.9rem;
}

footer p a {
  color: #e62b2b;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}
