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

body {
  font-family: "Raleway", sans-serif !important;
  padding-top: 80px;
}

header nav ul li {
  display: inline-flex;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

header nav ul {
  margin-bottom: 2px;
}

.navbar {
  padding: 0 !important;
}

.header-icon {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  background-color: #01DEBB;
  padding: 5px;
  color: white;
  border-radius: 2px;
}

.header-contact {
  color: #133D4D;
  font-size: 12px;
  text-decoration: none;
}

.navbar-brand {
  font-size: 16px !important;
}

.nav-link {

  font-size: 14px !important;
}

.nav-link:hover {
  color: #BED734 !important;
  font-size: 14px !important;
}

/* === Hero Carousel Ayarları === */
.carousel-item {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 80px);
  /* header varsa buna göre hesapla */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  animation: slowZoom 60s linear infinite;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.4);
  }
}

/* === Overlay (Yazı + Buton) === */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.062);
  /* koyuluk oranı ayarlanabilir */
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* === Başlık Yazısı === */
.carousel-overlay h1 {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  z-index: 11;
}

/* === Buton === */
.rezervasyon-btn {
  z-index: 11;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border: 2px solid #ffffff;
  background: transparent;
  color: #fff;
  border-radius: 0;
}

.rezervasyon-btn:hover {
  transform: scale(1.05);
  background-color: #ffffffcc;
  color: #000;
  border: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  .carousel-overlay h1 {
    font-size: 1.6rem;
    line-height: 50px !important;
  }

  .rezervasyon-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }
}

.carousel-item {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 80px);
  /* header varsa */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  animation: slowZoom 60s linear infinite;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}

.btn-outline-light:hover {
  background-color: #133D4D !important;
}

.lang-switcher button {
  border-radius: 2px;
  font-size: 12px;
  padding: 4px 10px;
  color: #133D4D;
  font-weight: 600;
  border: none;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.lang-switcher button:hover {
  background-color: #133D4D;
  color: white;
}

.btn-primary {
  background-color: #133D4D !important;
  border-color: #133D4D !important;
}

.text-green {
  color: #BED734 !important;
}

.accordion-button:not(.collapsed) {
  color: #133D4D !important;
  background-color: #BED734 !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:focus {
  box-shadow: none !important;
}

.secondary-color {
  color: #133D4D !important;
}

.btn-outline-primary {
  color: #133D4D !important;
  border-color: #133D4D !important;
}

.btn-outline-primary:hover {
  color: #133D4D !important;
  border-color: #BED734 !important;
  background-color: #BED734 !important;
}

.heading-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #BED734;

}

@keyframes sail {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

#boat {
  offset-path: path("M50 300 Q 150 200, 250 250 T 450 150");
  offset-rotate: auto;
  animation: sail 10s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0.5deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }

  100% {
    transform: translateY(0px) rotate(0.5deg);
  }
}

.footer-bg {
  background-color: #133D4D !important;
}

h1 {
  font-size: 86px !important;
  line-height: 90px !important;
  white-space: nowrap !important;
}

@media (max-width: 576px) {
  h1 {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 110px !important;
    font-size: 46px !important;
  }
}


.language-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 4px 8px !important;
  font-size: 0.9rem !important;
  height: auto !important;
  background-image: none !important;
  background-color: transparent !important;
  border: none !important;
  color: #000;
  font-weight: 500 !important;
  margin-top: 2px !important;
  line-height: 1.5 !important;
}

@media (max-width: 768px) {
  .language-select {
    font-size: 16px !important;
    padding: 8px 12px !important;
    height: 40px !important;
    min-width: 100px !important;
    border-radius: 6px !important;
    border: 1px solid #ccc !important;
    background-color: #fff !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
  }

  .lang-switcher {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
}



.language-select:focus {
  outline: none;
  box-shadow: none;
}


.lang-switcher {
  display: flex;
  align-items: center;
  height: 100%;
}

#whatsappButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

#whatsappButton:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

#whatsappButton i {
  font-size: 28px;
}

.btn-green {
  background-color: #BED734 !important;
  font-size: 1rem !important;

}
.dropdown-menu.show {
  display: block;
  font-size: 12px !important;
}

@media (max-width: 576px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: flex-start !important;
    padding: 1rem 0;
  }

  .navbar-nav {
    width: 100%;
    flex-direction: column !important;
    gap: 0.5rem;
  }

  .navbar-nav.align-items-center {
    flex-direction: row !important;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem;
  }

  .language-select {
    width: 100%;
    max-width: 120px;
    font-size: 0.9rem;
  }

  .lang-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding-left: 0;
  }

  .bi-instagram {
    font-size: 1.2rem;
  }

  .btn-green {
    background-color: #B8D533;
    color: white;
  }
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  height: auto !important;
  display: flex;
}

.swiper-slide .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


.swiper-slide .card p {
  flex-grow: 1;
}

.reservation{
  color: #BED734 !important;
}