@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  background-color: rgba(255, 255, 255, 0);
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;

  font-style: normal;
}

a {
  text-decoration: none;
}

.space {
  max-width: 1200px;
  margin: 10px auto;
  padding: 100px 0px;
}

/* Header */
.header {
  margin-bottom: 60px;
}

.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  width: 12rem;
  height: auto;
  fill: #103f35;
}

.logo:hover .logo-path {
  fill: #f9b221;
}

.nav {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #7a7575;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  letter-spacing: 2px;
  font-style: normal;
  text-transform: lowercase;
}

.nav a:hover {
  color: #f9b221 !important;
}

.nav a.active {
  color: black;
}

.socials {
  margin-top: 7rem;
  display: flex;
  gap: 35px;
  justify-content: flex-start;
}

.socials img {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.socials img:hover {
  opacity: 1;
  color: #f9b221 !important;
}

/* Contact Section */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-left {
  width: 560px; /* Sabit genişlik */
  height: 560px; /* Sabit yükseklik */
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-right {
  flex-grow: 1; /* Sağ tarafın geri kalan kısmı almasını sağlıyor */
  padding: 20px;
  margin-left: 3rem;
}

.contact-right h1 {
  text-transform: lowercase;
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: #103f35;
  margin-bottom: 20px;
}

.contact-right p {
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: 2px;
  color: #103f35;
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-right .socials {
  margin-top: 10px;
}

@media (max-width: 400px) {
  .logo-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav {
    gap: 0.4rem;
  }

  .nav a {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .logo-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    margin-bottom: 1rem;
    width: 10rem;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-right {
    margin-left: 0;
    padding: 20px 10px;
  }

  .socials {
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
  }
}

.lang-btn {
  background-color: white;
  color: #7a7575;
  position: absolute;
  top: 8%;
  right: 10.8%;
  border: none;
  padding: 6px 1px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: 2px;
}
