@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;
}

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

h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 30px;
  font-weight: 700;
}

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

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

/* HEADER */
.main-header {
  background: url("../assets/spa-composition-with-aromatherapy-body-care-items.jpg")
    center/cover; /* 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.5);
  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);
}

/* HEADER BUTON */
.page-header {
  background-color: var(--background-light);
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.services-text {
  text-align: center;
}

.services-text h2 {
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--text-dbrown);
  text-transform: uppercase;
  margin-top: 20px;
}

.services-text p {
  font-size: 20px;
  color: var(--text-dark);
  margin: 10px 0 40px;
  line-height: 1.5;
}

.spa-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 40px;
}

.package {
  background: var(--background-light);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.package img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

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

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

.btn {
  display: block;
  margin: 40px 20px;
  background: none;
  border: none;
  color: var(--button-dgreen);
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn:hover {
  border-bottom: 2px solid var(--button-dgreen);
}

.full-text {
  display: none;
}

.read-more {
  display: block;
  margin-top: 1em;
  background: none;
  border: none;
  color: var(--dred);
  cursor: pointer;
  font-weight: bold;
  padding: 0;
}

/* 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 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);
}
