/* General Styles */
@font-face {
  font-family: "DMSans";
  src: url("fonts/DMSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "DMSansBold";
  src: url("fonts/DMSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Unna";
  src: url("fonts/Unna-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "UnnaBold";
  src: url("fonts/Unna-Bold.woff2") format("woff2");
}
body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  color: #1c1c1c;
  background-color: #fff;
}

header {
  background: url("image/Header.jpg") center/cover no-repeat;
  height: auto;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.grid {
  padding-top: 10px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  transition: all 0.3s ease;
}
.grid1200 {
  box-sizing: border-box;
  max-width: min(1200px, 100% - 30px);
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  height: 45px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile Menu */
.mobile-menu-checkbox {
  display: none;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}
.menu-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transition: all 0.3s ease;
}

.mobile-menu-button .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Container Style */

.container{
  box-sizing: border-box; /* Paddinglerin genişliği etkilememesi için */
  max-width: 1500px; /* Maksimum içerik genişliği */
  width: 100%;
  padding: 0 20px; /* Yanlarda güvenli boşluk */
  margin: 101px auto 0;
  
}
.container h1 {
  font-family: "Unna", Arial, sans-serif;
  font-size: 3.5rem;  
  text-shadow: 2px 2px 4px #00000080;
  animation: fadeIn 1s ease-in-out;
  }

.container h2 {
  font-family: "DMSansBold", Arial, sans-serif;
  font-size: 1.5em;
  
  line-height: 1.6;
  text-shadow: 1px 1px 2px #00000080;
}
.container p {
  font-family: "DMSans", Arial, sans-serif;
  font-size: 1.25em;
  margin-bottom: 2rem;
  max-width: 1200px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px #00000080;
}

#no-results-message {
  font-size: 1.2rem;
  color: #666;
  margin-top: 2rem;
}
/* Reservation Section */

.reservierung-section {
  font-family: "DMSans", sans-serif;
  margin: 3rem auto;
  padding: 0;
  max-width: calc(1200px + 16rem); 
  width: calc(100% - 4rem); 
  border-radius: 20px;
  background-color: #002828ad;
  box-shadow: 0 10px 30px #00000080;  
}

.reservierung-container {
  
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0 30px;
  color: #fff;
  text-align: left;
}

.reservierung-container h2 {
  font-family: "DMSansBold", Arial, sans-serif;
  text-align: left;
  margin-bottom: 10px;
  font-size: 2rem;
  position: relative;
 
}
.reservierung-container h2 span {
  font-family: "DMSans", sans-serif;
  font-weight: 300;
}

.reservierung-container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
}
.info-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffffcc;
  text-align: center;
  margin: 10px;
  opacity: 0.9;
}
/* Filter Container */

.filter-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  padding-bottom: 0;
  padding-right: 0;
  backdrop-filter: blur(5px);
  
}

.filter-group {
  margin-bottom: 1rem;
  
}

.filter-label {
  display: block;
  margin-bottom: 1.4em;
  font-size: 0.9rem;
  font-weight: 500;
  
  
}

.filter-container input[type="text"],
.filter-container select {
  width: 100%; 
  padding: 10px 0 10px 10px;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #00a58e80;
  border-radius: 8px;
  font-size: 0.9rem;
  background: #0a2323cc;
  color: #ffffffcc;
  transition: all 0.3s ease;
  }

.stichwort-group,
.typ-group {
  margin-right: 23px; /* Default 20px yerine 10px */
    
}

.filter-container input[type="text"]:focus,
.filter-container select:focus {
  outline: none;
  border-color: #00a58e;
  box-shadow: 0 0 0 2px #00a58e4d;
}

.filter-container input[type="text"]::placeholder {
  color: #ffffff99;
}

/* Check-in */

.date-group{
  margin-right: 0;
  margin-left: -1.8em;
}
.date-group .date-inputs{
  display: flex;
  gap: 10px;
  border: none;       /* Bu satır dış çerçeveyi kaldırır */
  padding: 0;         /* Gerekirse iç boşluğu da kaldırır */
  background: none; 
  
}

.date-inputs {
  flex: 1;
  padding: 10px;
}

.date-input {
  flex: 1;
  padding: 10px ;
  margin: 0;
  width: 100%; 
  transition: all 0.3s ease;
  background: #0a2323cc;
  color: #ffffffcc;
  cursor: pointer;
  border: 1px solid #00a58e80;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 0.9rem;
  
}

/* Tarayıcıya özel tarih seçici stilleri */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
}

input[type="date"]::-webkit-datetime-edit {
  color: #ffffffcc;
}

input[type="date"]:focus {
  outline: none;
  border-color: #00a58e;
}

.typ-group{
  margin-right: 0;
  margin-left: -0.4em;
}


/* Search Button */
.button-container {
  display: flex;
  justify-self: end;
  align-self: center;
  padding: 16px 24px;
}


.search-btn {
  background-color: #00a58e;
  color: #fff;
  padding: 11px 17px;
  margin-top: 0;
  border: 1px solid #00a58e;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 165, 142, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}


.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Animasyon */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections unterkunfte */

#unterkuenfte {
  padding:10px;
  background-color: white;
}

#unterkuenfte .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

#unterkuenfte h2 {
  color: #143536;
  text-align: start;
  font-size: 2.5em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
#unterkuenfte h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #ff7928;
}

#unterkuenfte h4 {
  text-align: start;
  color: #143536;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 20px;
}
#unterkuenfte p {
  text-align: start;
  font-size: 0.95em;
  margin-bottom: 10px;
}

.card-container {
  border-radius: 10px;
  padding: 0;
  transition: all 0.3s ease;
  
}

.accommodation-card {
  border-radius: 16px;
  background-color: rgba(0, 165, 142, 0.19);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%; /* Container'a tam uyum */
  height: 100%; /* Eşit yükseklik */
  display: flex;
  flex-direction: column;
}
.accommodation-card:hover {
  transform: translateY(-5px);
}
/* Kart içeriği */
.accommodation-card > img:not([src*=".svg"]) {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.accommodation-card{
  transition: all 0.3s ease;
  padding: 0;
}
/* Coklu resim bolumu */

* {
      box-sizing: border-box;
    }

    input[name="slider"] {
        display: none;
    }

    .slider {
      width: 100%;
      height: 350px;
      aspect-ratio: 16/9; /* Oran korunsun */
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }
    
    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease;
    }

    .slide {
      width: 100%;
      height: 100%;
      flex-shrink: 0;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .navigation {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .bar {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #819794;
      cursor: pointer;
      transition: background 0.3s;
    }
/* s */
    input#s1:checked ~ .slides { transform: translateX(0); }
    input#s2:checked ~ .slides { transform: translateX(-100%); }
    input#s3:checked ~ .slides { transform: translateX(-200%); }
    input#s4:checked ~ .slides { transform: translateX(-300%); }

    input#s1:checked ~ .navigation label[for="s1"],
    input#s2:checked ~ .navigation label[for="s2"],
    input#s3:checked ~ .navigation label[for="s3"],
    input#s4:checked ~ .navigation label[for="s4"] {
      background: #333;
    }
/* f */
    input#f1:checked ~ .slides { transform: translateX(0); }
    input#f2:checked ~ .slides { transform: translateX(-100%); }
    input#f3:checked ~ .slides { transform: translateX(-200%); }
    

    input#f1:checked ~ .navigation label[for="f1"],
    input#f2:checked ~ .navigation label[for="f2"],
    input#f3:checked ~ .navigation label[for="f3"] {
      background: #333;
    }
    /* i */
    input#i1:checked ~ .slides { transform: translateX(0); }
    input#i2:checked ~ .slides { transform: translateX(-100%); }
    input#i3:checked ~ .slides { transform: translateX(-200%); }
    input#i4:checked ~ .slides { transform: translateX(-300%); }

    input#i1:checked ~ .navigation label[for="i1"],
    input#i2:checked ~ .navigation label[for="i2"],
    input#i3:checked ~ .navigation label[for="i3"],
    input#i4:checked ~ .navigation label[for="i4"] {
      background: #333;
    }
    /* l */
    input#l1:checked ~ .slides { transform: translateX(0); }
    input#l2:checked ~ .slides { transform: translateX(-100%); }
    input#l3:checked ~ .slides { transform: translateX(-200%); }
    input#l4:checked ~ .slides { transform: translateX(-300%); }

    input#l1:checked ~ .navigation label[for="l1"],
    input#l2:checked ~ .navigation label[for="l2"],
    input#l3:checked ~ .navigation label[for="l3"],
    input#l4:checked ~ .navigation label[for="l4"] {
      background: #333;
    }
    /* a */
    input#a1:checked ~ .slides { transform: translateX(0); }
    input#a2:checked ~ .slides { transform: translateX(-100%); }
    input#a3:checked ~ .slides { transform: translateX(-200%); }
    input#a4:checked ~ .slides { transform: translateX(-300%); }

    input#a1:checked ~ .navigation label[for="y1"],
    input#a2:checked ~ .navigation label[for="y2"],
    input#a3:checked ~ .navigation label[for="y3"],
    input#a4:checked ~ .navigation label[for="y4"] {
      background: #333;
    }
    /* y */
    input#y1:checked ~ .slides { transform: translateX(0); }
    input#y2:checked ~ .slides { transform: translateX(-100%); }
    input#y3:checked ~ .slides { transform: translateX(-200%); }
    input#y4:checked ~ .slides { transform: translateX(-300%); }

    input#y1:checked ~ .navigation label[for="y1"],
    input#y2:checked ~ .navigation label[for="y2"],
    input#y3:checked ~ .navigation label[for="y3"],
    input#y4:checked ~ .navigation label[for="y4"] {
      background: #333;
    }

/* Başlık ve rating */
.container-werbe {
  padding: 1.2rem;
  text-align: start;
}
.accommodation-card h3 {
  padding: 0;
  margin: 0;
  color: #143536;
  font-family: "DMSans", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.accommodation-card span {
  font-size: 0.9rem;
  font-weight: 603;
  color: #ff7928;
}
.accommodation-card p {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: center;
  color: #666;
}

/* İkonlar */
.icon-row {
  padding: 0;
  margin: 0;
  gap: 13px;
  width: 100%;
  overflow: hidden; /* Taşmayı engeller */
}
.icon-list {
  list-style-type: none;
  padding:5px 0;
  margin: 0;
  display: flex;
  gap: 8px;
  border-top: 1px solid #143536;
  border-bottom: 1px solid #143536;
  
}

/* Liste Elemanları */
.icon-item {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 0;
}

/* İkon Kutuları */
.icon-box {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 7px;
}

/* İkon Görselleri */
.icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* İkon Metinleri */
.icon-row .icon-text {
    font-size: 0.9em;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
}

/* Fiyat */
.price-list .btn{
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  background-color: #143536;
  white-space: nowrap;          /* Buton metninin kaymasını önle */
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-item {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  align-items: center;
 
}

.price-list .price-amount {
  font-family: "Unna", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #143536; 
}

/* Kundenstimmen section-2 */

#kundenstimmen-section {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  display: grid;
  padding: 2em;
  gap: 22px;
  background-color: #143536;
  margin-top: 25px;
}

#kundenstimmen-section h2 {
  font-family: "DMSansBold", Arial, sans-serif;
  text-align: left;
  margin-bottom: 25px;
  font-size: 2rem;
  color: white;
  grid-column: 1/ -1;
  position: relative;
  padding-bottom: 25px;
}

#kundenstimmen-section h2 span {
  font-family: "DMSans", sans-serif;
  font-weight: 300;
}

#kundenstimmen-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: #ff7928;
}

.benutzerkommentare {
  display: flex;
  flex-wrap: wrap;
  gap: 87px;
  justify-content: center;
  grid-column: 1 / -1;
  
}

.benutzer-card {
  background-color: white;
  color: #143536;
  border-radius: 12px;
  padding: 1.2rem;
  max-width: 500px;
  flex: 1 1 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.benutzer-card img {
  width: 101px;
  height: 100px;
  border-radius: 25%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.benutzer-card h4 {
  
  font-weight: 500;
  margin: 0.5em 0 0.2em;
  color: #143536;
}

.benutzer-card p {
  font-size: 0.95em;
  font-weight: 300;
  color: #666;
}

/* Section-3 Editor */

#editor {
  font-family: "DMSans", Arial, sans-serif;
  color: #143536;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.editor-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.editor-image img {
  width: 139%;
  border-radius: 10px;
  object-fit: cover;
}

.editor-right{
  padding-left: 10em;
}

.editor-right h3 {
  margin-bottom: 5px;
  
  font-size: 1.8rem;
}

.editor-right h4 {
  margin-top: 0;
  font-weight: normal;
  color: #143536;
}

.editor-right p {
  font-size: 0.9rem;
  font-weight: 300;
  text-align: start;
  color: #666;
}

.form-wrapper {
    background-color: #f5f5f5;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px #7979794d;
    max-width: 400px;
    margin-top: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    color: #143536;
}


.contact-form input,
.contact-form textarea {
    font-size: 0.95rem;
    padding: 8px 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #00a58e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #143536;
}

/* Footer */
footer {
  font-family: "DMSans", Arial, sans-serif;
  background-color: #002828;
  color: white;
  padding: 40px 0 20px;
  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  padding-right: 11rem;
  flex: 1;
  min-width: 400px;
}
.footer-brand img {
  width: 175px; /* Adjust logo width as needed */
  height: auto;
  margin-top: 20px;
  margin-bottom: 0;
}
.footer-brand p {
  color: #666;
  line-height: 1.3;
  margin-bottom: 20px;
}

.chat-button {
  background-color: #00a58e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}

.chat-button:hover {
  background-color: #008c7a;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.links-column {
  min-width: 150px;
}

.links-column h3 {
  font-family: "Unna", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 100;
  margin-bottom: 15px;
  color: #fff;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-column li {
  margin-bottom: 10px;
}

.links-column a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.links-column a:hover {
  color: #00a58e;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Responsive (ebatlar) 1024 und darunter */

@media screen and (max-width: 1024px) {
  
  header {
    height: auto;
    padding: 1.5rem;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #002828f2;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-checkbox:checked ~ .nav-links {
    max-height: 500px;
  }

  .mobile-menu-checkbox:checked ~ .nav-links li {
    opacity: 1;
  }

  /*X animation */
  .mobile-menu-checkbox:checked + .mobile-menu-button .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-checkbox:checked + .mobile-menu-button .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-checkbox:checked + .mobile-menu-button .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .container {
    padding: 50px 0 0 0;
    margin: 0 13px;
  }
  .reservierung-section {
    margin: 2rem 2rem;
    padding: 0;
    border-radius: 15px;
  }
 
  .filter-container {
    position: relative;
    padding-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 10px;    
    gap: 5px;
  }
  
  .filter-group {
    margin-bottom: 10px;
    margin-right: 25px;
    
  }
  .filter-container input[type="text"],
  .filter-container select {
    width: 100%; 
    padding: 8px 0 8px 10px;
    margin: 0;
    font-size: 0.8rem;
    box-sizing: border-box;
  }
  .date-group{
    margin-right: 0;
    margin-left: 0;
  }

  .stichwort-group,
  .typ-group {
    margin-right: 23px; /* Default 20px yerine 10px */
    
  }
  .filter-label{
    font-size: 0.85rem;
    margin-bottom: 9px;
    font-weight: bold;
  }
  /* Başlık boyutları */
  .container h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .container h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .reservierung-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Paragraf ve metinler */
  .container p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  /* Butonlar */
  .button-container {
    display: flex;
    flex-direction: row;
    right: 20px; /* Sağdan boşluk */
    bottom: 20px;
    gap: 10px;
    padding: 0.9rem 0;
    margin-top: 1rem;
  }


  .search-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: 100%;
  }

  .info-text {
    font-size: 0.9rem;
  }
   /* Unsere unterkünfte */
  .accommodation-card h2 {
    font-size: 1.5rem;
    
  }
  .accommodation-card h3 {
    font-size: 1.2rem;
    
  }
  .container p,
  .accommodation-card p,
  .benutzer-card p {
    font-size: 0.9rem;
  }
  
  #kundenstimmen-section {
    padding: 1.5em;
  }
   #kundenstimmen-section h2{
    font-size: 2rem;
    
  }
 

  .benutzerkommentare {
    gap: 40px; /* 87px'den daha dar aralık */
  }
  
  .benutzer-card {
    max-width: 280px;
    padding: 1rem;
  }
  /* Section 3 Editor*/
  #editor {
    padding: 20px;
  }
  
  .editor-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    display: grid;
    
  }
  
  .editor-right {
    padding-left: 2em;
  }
  
  .editor-image img {
    width: 120%;
  }
  
  .form-wrapper {
    max-width: 350px;
  }
  /* Footer */
  .footer-container {
    gap: 30px;
    padding: 0 15px;
  }
  
  .footer-brand {
    padding-right: 5rem;
    min-width: 300px;
  }
  
  .footer-links {
    gap: 30px;
  }
  
  .links-column {
    min-width: 120px;
  }
}

/* Responsive (ebatlar) 600 und darunter */

@media screen and (max-width: 600px) {
  
  header {
    height: auto;
    padding: 1.5rem;
  }

  /* Navigasyon */
  .mobile-menu-button {
    width: 25px;
    height: 18px;
  }

  .nav-links {
    top: 60px;
  }

  .nav-links li {
    padding: 0.7rem 0;
  }

  /* Header */
  header {
    height: auto;
    padding: 1.5rem;
  }

  /* Animasyonlar */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .container {
    padding: 60px 0 0 0;
    margin: 0 8px;
  }

  /* Başlık boyutları */
  .container h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .container h2, reservierung-container h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .container p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
  
  .reservierung-section {
    margin: 2rem 2rem;
    padding: 0;
    border-radius: 15px;
  }
  
  .reservierung-container {
    padding: 0 1rem;
  }
  
  .filter-container {
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px 10px;    
    margin: 0;
    gap: 5px;
  }
  

  
  .filter-container input[type="text"],
  .filter-container select {
    width: 105%; 
    padding: 8px 0 8px 10px;
    margin: 0;
    font-size: 0.8rem;
    box-sizing: border-box;
  }

  .stichwort-group, .date-group,
  .typ-group {
    margin-right: 23px; /* Default 20px yerine 10px */
    
  }
  
 
  /* Filtre alanı */
 

  .filter-group {
    margin-bottom: 1rem;
  }

  .filter-label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

 
  /* Butonlar */
  .button-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0.8rem 0;
    margin-top: 1rem;
  }

  
  .search-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    width: 100%;
  }
   .info-text {
    font-size: 0.85rem;
    margin-top: 1.2rem;
     line-height: 1.5;
  }
  
  .accommodation-card h3 {
    font-size: 1.1rem;
  }
  .accommodation-card p {
    font-size: 0.85rem; 
    line-height: 1.5;
  }

  /* Grid düzenlemeleri */
  .grid1200 {
    margin: 0 10px;
    padding: 0 8px;
  }
  #kundenstimmen-section {
    padding: 1em;
  }
  
  #kundenstimmen-section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .benutzerkommentare {
    gap: 20px;
    flex-direction: column; /* Kartları dikey sırala */
    align-items: center; /* Ortala */
  }
  
  .benutzer-card {
    max-width: 100%;
    width: 90%;
  }
  .benutzer-card h4 {
    font-size: 1rem;
  }

  /* Section 3 Editor*/
  .editor-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .editor-image img {
    width: 100%;
    max-height: 300px;
    object-position: center;
  }
  
  .editor-right {
    padding-left: 0;
  }
  
  .form-wrapper {
    max-width: 100%;
  }
  
  .editor-text h3 {
    font-size: 1.6rem;
  }
  
  .editor-text h4 {
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-brand {
    padding-right: 0;
    min-width: 100%;
    text-align: center;
  }
  
  .footer-brand img {
    margin: 0 auto 15px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .links-column {
    min-width: 100%;
    text-align: center;
  }
  
  .links-column h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
  }
}

/* Responsive (ebatlar) 400 und darunter */

@media screen and (max-width: 420px) {
  /* Temel tipografi */
  html {
    font-size: 14px;
  }
  /* Navigasyon */
  .mobile-menu-button {
    width: 22px;
    height: 16px;
  }

  .nav-links {
    top: 55px;
  }

  .nav-links li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }

  /* Header */
  header {
    height: 70vh;
    padding: 1rem;
  }

  /* Özel mikro ayarlar */
  .reservierung-container h2 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .reservierung-container h2::after {
    width: 80px;
    height: 2px;
  }
  
  .search-btn:hover {
    transform: none; /* Mobilde hover efekti kaldırıyor */
  }
  

  /* Container ayarları */
  .container {
    padding: 40px 0 0 0;
    margin: 0 5px;
  }

  /* Başlık boyutları */
  .container h1 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }

  .container h2{
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  /* Metin boyutları */
  .container p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .info-text {
    font-size: 0.7rem;
    margin-top: 1rem;
  }
  
  #unterkuenfte h2,
  #kundenstimmen-section h2 {
    font-size: 1.3rem;
  }
  .accommodation-card h3 {
    font-size: 1rem;
  }

  /* Rezervasyon bölümü */
  .reservierung-section {
    margin: 1rem 0;
    padding: 0.8rem 0;
    border-radius: 10px;
  }

  .reservierung-container {
    padding: 0 0.8rem;
  }

  /* Filtre alanı */
  .filter-container {
    gap: 8px;
    padding: 0.8rem;
  }

  .filter-label {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .filter-container input[type="text"],
  .filter-container select {
    padding: 7px 9px;
    font-size: 0.75rem;
  }

  /* Butonlar */
  .button-container {
    gap: 8px;
    padding: 0.7rem 0;
  }

  .search-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    min-height: 36px; /* Dokunmatik uyumluluk */
  }

  
  #kundenstimmen-section h2 {
    font-size: 1.4rem;
    padding-bottom: 10px;
  }
  
  #kundenstimmen-section h2::after {
    width: 70px;
    height: 2px;
  }
  
  .benutzer-card {
    padding: 0.8rem;
  }
  
  .benutzer-card h4 {
    font-size: 0.95rem;
  }
  
  .benutzer-card p {
    font-size: 0.85em;
  }
  /* Section 3 Editor*/
  #editor {
    padding: 15px;
  }
  
  .editor-text h3 {
    font-size: 1.4rem;
  }
  
  .editor-text h4 {
    font-size: 1rem;
  }
  
  .editor-text p {
    font-size: 0.9rem;
  }
  
  .form-wrapper {
    padding: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 7px 8px;
    font-size: 0.9rem;
  }
  
  .contact-form button {
    padding: 8px;
    font-size: 0.9rem;
  }
  /* Footer */
  footer {
    padding: 30px 0 15px;
  }
  
  .footer-brand img {
    width: 140px;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
  }
  
  .chat-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .copyright {
    font-size: 0.85rem;
  }
  
  .links-column h3 {
    font-size: 1.1rem;
  }
  
  .links-column a {
    font-size: 0.85rem;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
  }
  
}




