@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;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

svg {
  max-width: 100%;
  height: auto;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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;
}

@media (max-width: 768px) {
  .logo,
  .social {
    justify-content: center;
    text-align: center;
  }

  .social {
    flex-wrap: wrap;
  }
}

.logo {
  width: 12rem;
  height: auto;
  fill: #103f35;
}

.logo:hover .logo-path {
  fill: #f9b221;
}

p {
  letter-spacing: 2px;
}
h2 {
  letter-spacing: 2px;
}

.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: 300;
  letter-spacing: 2px;
  font-style: normal;
  text-transform: lowercase;
}

.nav a:hover {
  color: #f9b221 !important;
}

.nav a.active {
  color: #000;
}

.socials {
  margin-top: 3rem;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.socials img {
  width: 0.9rem;
  height: 0.9rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

/* main */
.content-wrapper {
  display: flex;
  flex-wrap: nowrap; /* Alt satıra kaymasını engeller */
  gap: 24px; /* Aradaki boşluk */
  box-sizing: border-box;
}

.left-column {
  width: calc(75% - 12px); /* 9/12 - gap'in yarısı */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.left-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.right-column {
  width: 25%; /* 3/12 */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.right-column h2 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-left: 10px;
  font-weight: 600;
}

.right-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .left-column img {
    width: 100%;
    height: auto;
  }

  .right-column h2 {
    font-size: 18px;
  }

  .right-column p {
    font-size: 14px;
  }

  .nav {
    gap: 0.6rem;
  }
  .lang-tr {
    font-size: 0.6rem; /* Türkçe için özel boyut */
  }
}

@media (max-width: 400px) {
  .logo-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .nav {
    gap: 0.6rem;
  }

  .nav a {
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .logo-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .header {
    margin-bottom: 2rem;
  }

  .socials {
    order: 1;
    justify-content: flex-end;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .socials img {
    width: 0.7rem;
    height: 0.7rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .space {
    padding: 40px 20px;
  }
}

.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;
}
