@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:wght@300&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --main-color: #d6a696;
  --black-color: #0e0e0e;
  --border: 0.1rem solid rgba(255, 255, 255, 0.4);
  --main-color-hover: #bf8a78;
}
* {
  font-family: "Merriweather", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s ease;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}
body {
  background-color: var(--main-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 180px;
}
/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 8px var(--main-color);
  padding: 10px 20px;
  z-index: 1000;
  height: 160px;
}

/* Logo ortalanmış */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  height: 160px;
}

/* Telefon butonu sağ üstte sabit */
.phone-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.phone-button a {
  display: flex;
  align-items: center;
  background-color: var(--main-color);
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.phone-button a i {
  margin-right: 0.8rem;
}

.phone-button a:hover {
  background-color: var(--main-color-hover);
}

@media (max-width: 768px) {
  .logo img {
    height: 120px;
  }

  .phone-button a {
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 100px;
  }

  .phone-button a {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

.logo img {
  height: 160px;
}
/* Menu */
.menu {
  flex: 1;
}
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  justify-items: center;
  padding: 1rem;
}
.menu .box-container .box {
  width: 100%;
  height: 25rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.8rem;
  box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
}
.menu .box-container .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 16 / 9;
}
.menu .box-container .box:hover img {
  transform: scale(1.1);
}
/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
}
footer .social-icons a {
  margin: 0 1rem;
  color: white;
  font-size: 3rem;
  transition: color 0.2s;
}
footer .social-icons a:hover {
  color: var(--main-color-hover);
}
/* Responsive Design */
@media (max-width: 768px) {
  header {
    height: 150px;
    padding: 5px 10px;
  }

  .logo img {
    height: 150px;
  }
  .menu .box-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .menu .box-container .box {
    height: 15rem;
  }
  footer {
    padding: 15px;
    font-size: 1.4rem;
  }
  footer .social-icons a {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  header {
    height: 150px;
    padding: 3px;
  }
  .logo img {
    height: 150px;
  }
  .menu .box-container {
    gap: 0.8rem;
  }
  .menu .box-container .box {
    height: 13rem;
  }
  footer {
    padding: 10px;
    font-size: 1.2rem;
  }
  footer .social-icons a {
    font-size: 1.8rem;
    margin: 0 0.5rem;
  }
}
