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

h5 {
  font-size: 25px;
}

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

/* HEADER */
.main-header {
  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: #333;
  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(--text-dbrown);
}

/*Hero Content*/
.hero-section {
  position: relative;
  background-image: url("../assets/hiroshima-japan-japanese-places-monuments-316e6f-1024.jpg"); /* BURAYA kendi görsel URL’ni koy */
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.617); /* Karartma */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
}

/*Misson Section*/
.mission-vision-section {
  padding: 60px 20px;
  background-color: var(--background-light);
  text-align: center;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--text-dbrown);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dbrown);
}

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

/*İnfo Section*/
.info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-dbrown);
}

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

.info-image {
  flex: 1;
  text-align: right;
}

.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*Policies-Section*/
.policies-section {
  background-color: var(--background-light);
  padding: 60px 20px;
}

.policies-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.policies-left {
  flex: 1 1 300px;
  max-width: 400px;
}

.policies-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dbrown);
}

.policies-image {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.policies-right-columns {
  display: flex;
  gap: 20px;
  flex: 2 1 800px;
  flex-wrap: wrap;
}

.policy-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 400px;
}

.policy-box {
  background-color: var(--background-light);
  display: flex;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.circle-number {
  background-color: var(--background-cream);
  color: var(--text-white);
  font-weight: bold;
  width: 60px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
}

.policy-text h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text-dbrown);
}

.policy-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.sustainability-section {
  background-color: var(--background-light);
  padding: 60px 20px;
}

.sustainability-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  align-items: flex-start;
}

.sustainability-policies {
  flex: 2;
  min-width: 600px;
}

.sustainability-policies h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-dbrown);
}

.sustainability-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.policy-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.policy-item {
  background-color: var(--background-light);
  display: flex;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-number {
  background-color: var(--background-cream);
  color: var(--text-white);
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 1rem;
  margin-right: 15px;
}

.policy-content h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--text-dbrown);
}

.policy-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.sustainability-image-container {
  flex: 1;
  min-width: 300px;
}

.sustainability-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

/* TELEFON UYUMLULUĞU @media ile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
  }

  .menu-item a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }

  .navbar-icons {
    margin-top: 10px;
    gap: 10px;
  }

  .hero-section {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 90%;
    padding: 20px;
  }

  .info-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .info-text h2 {
    font-size: 22px;
  }

  .info-text p {
    font-size: 14px;
  }

  .info-image img {
    width: 90%;
  }

  .policies-container,
  .sustainability-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .policies-left,
  .sustainability-policies {
    max-width: 100%;
  }

  .policy-column {
    min-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-section {
    margin: 10px 0;
    width: 90%;
  }

  .footer-section ul {
    text-align: center;
  }

  .photo-grid {
    justify-content: center;
  }

  .photo-grid img {
    width: 60px;
    height: 60px;
  }

  .footer-bottom {
    font-size: 12px;
    padding-top: 10px;
  }
}
