@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Libre+Baskerville:wght@400;700&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/*Fontlar
    .cinzel-<uniquifier> {
    font-family: "Cinzel", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;

    .libre-baskerville-regular {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    } (Başlıklarda kullanılacak font)

    .libre-baskerville-bold {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
    }

    .playfair-display-<uniquifier> {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    }

    .mulish-<uniquifier> {
    font-family: "Mulish", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    }

    .raleway-<uniquifier> {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    }(Metinlerde kullanılacak olan font)
}

*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

body {
  font-family: "Libre Baskerville", serif;
  background-color: var(--background-light);
}

button {
  border: none;
  padding: 10px;
  cursor: pointer;
}

h2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 40px;
  color: var(--text-dbrown);
}

h5 {
  font-size: 25px;
}

p {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

/* HEADER */
.main-header {
  background: url("../assets/editli_bitirme/A7C00537.jpg") center/cover
    no-repeat; /* opsiyonel arka plan */
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo img {
  width: 130px;
  height: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu-item a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.menu-item a:hover {
  color: var(--button-hover); /* Spa temalı ton */
}

.navbar-icons {
  display: flex;
  gap: 15px;
}

.navbar-icons a {
  color: var(--text-dark);
  font-size: 20px;
  transition: color 0.3s;
}

.navbar-icons a:hover {
  color: var(--button-hover);
}

.search-container {
  position: absolute;
  top: 80px;
  right: 60px;
  width: 300px;
  background: var(--background-light);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.search-container input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}

.search-results .product-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.search-results .product-result:hover {
  background-color: #f3f3f3;
}

.search-results img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.product-result a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-result a:hover {
  background-color: transparent;
  border-radius: 6px;
}

/* Welcome Section */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.welcome-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.welcome-text-content h1 {
  font-size: 30px;
  line-height: 1.4;
  color: var(--text-dbrown);
}

.welcome-text-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-top: 20px;
}

.appointment-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.text-content {
  max-width: 1000px;
}

.text-content h3 {
  font-size: 25px;
  margin-bottom: 20px;
  color: var(--text-dbrown);
}

.btn {
  background-color: var(--button-dgreen);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--button-dgreen-hover);
}

.image-container img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.policies {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.policy {
  background-color: var(--background-light);
  border-radius: 10px;
  padding: 20px;
  width: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.policy img {
  width: 50px;
  margin-bottom: 15px;
}

.policy h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dbrown);
}

.policy p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Footer Style */
.footer {
  background-color: var(--background-dbrown);
  color: var(--text-cream);
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 20px;
}

.footer-section h3 {
  margin-bottom: 15px;
}

.footer-section h2 {
  color: var(--text-cream);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-grid img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.footer-section button {
  padding: 15px;
  margin: 15px 0;
  border: none;
  border-radius: 20px;
  background-color: var(--button-cream);
  color: var(--text-dbrown);
  cursor: pointer;
  font-size: 15px;
}

.footer-section button:hover {
  background-color: var(--button-cream-hover);
  cursor: pointer;
  font-size: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid var(--text-cream);
  padding-top: 20px;
}

.footer-bottom p {
  color: var(--text-cream);
}
