/* Genel Ayarlar */
body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Menü */
header {
  background-color: #ffffff;
  border-bottom: 3px solid #b50d0d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header img {
  height: 70px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #b50d0d;
}

/* Hero */
.hero {
  width: 100%;
  height: 80vh;
  background: url("images/hero.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Bölümler */
section {
  padding: 80px 60px;
}

section h2 {
  text-align: center;
  color: #b50d0d;
  font-size: 2rem;
  margin-bottom: 30px;
}

section p {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* Odalar */
#odalar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

#odalar h2 {
  flex-basis: 100%;
  width: 100%;
  margin: 0 0 1rem 0;
  text-align: center; 
}

#odalar .oda {
  flex: 1 1 calc(25% - 1rem); 
  box-sizing: border-box;
  min-width: 200px;
}

#odalar .oda img {
  display: block;
  width: 100%;
  height: auto;
}

/* Galeri */
#galeri .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

#galeri img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

#galeri img:hover {
  transform: scale(1.05);
}

/* Formlar */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: 600;
}

form input, form select, form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

form input:focus, form select:focus, form textarea:focus {
  border-color: #b50d0d;
  outline: none;
}

form button {
  background-color: #b50d0d;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #8a0a0a;
}

/* Footer */
footer {
  background-color: #b50d0d;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-weight: 500;
}

/* WhatsApp Butonu */
.whatsapp-btn {
  position: fixed;
  left: 20px;     
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 10000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Gezilecek Yerler */
.gezilecek-yer {
  display: flex;
  flex-direction: column; 
  align-items: center;   
  font-weight: 800;
  text-align: center;    
  gap: 15px;            
}

.gezilecek-yer img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gezilecek-yer h3 {
  font-size: 1.2rem;
  color: #b50d0d;
  margin: 0;
}

/* İletişim */
#iletisim {
  width: 100%;
  background-color: #ffffff;
  color: black;
  padding: 15px 0;
}

#iletisim .contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

#iletisim .contact-link {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, transform 0.3s;
}

#iletisim .contact-link:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

/* Oda Özellikleri */
.oda-ozellikleri ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.oda-ozellikleri ul li {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1rem;
  flex: 1 1 calc(25% - 20px);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.oda-ozellikleri ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Responsive - Tablet ve Mobil */
@media (max-width: 1024px) {
  .oda-ozellikleri ul li {
    flex: 1 1 calc(33% - 20px); /* 3 sütun */
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  #odalar .oda {
    flex: 1 1 calc(50% - 1rem);
  }

  section {
    padding: 60px 30px;
  }

  #iletisim {
    padding: 40px 20px;
  }

  #iletisim .contact-container {
    gap: 20px;
  }

  #iletisim h2 {
    font-size: 1.8rem;
  }

  #iletisim a[href*="wa.me"] {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .oda-ozellikleri ul li {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }

  #odalar .oda {
    flex: 1 1 100%;
  }

  .oda-ozellikleri ul li {
    flex: 1 1 100%;
  }

  form {
    padding: 0 15px;
  }

  .gezilecek-yer img {
    width: 80%;
  }

  #iletisim .contact-container {
    flex-direction: column;
    gap: 10px;
  }
}
