/*
Room Page
- Hero2
- Oda Özet
- Oda Metin
- Misafirperverlik
- Yorumlar
- Oda Kart
- Odalar
- Oda Özellikler
*/

/* Hero2 */
.ko-hero2 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 625px;

  @media (width >= 992px) {
    aspect-ratio: 5 / 2;
    padding-top: 50px;
  }
}

.ko-hero2__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ko-hero2__img,
.ko-hero2__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ko-hero2__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Subtle overlay for text legibility */
  z-index: 2;
}

.ko-hero2__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.ko-hero2__content {
  color: var(--ko-white);
  max-width: 1000px;
  margin-inline: auto;
  font-size: clamp(16px, 1.375vw, 22px);
  font-weight: 200;
}

.ko-hero2__title {
  font-family: var(--ko-font-heading);
  font-size: clamp(2.3rem, 6.25vw, 5.75rem);
  font-weight: inherit;
  line-height: 1.2;
  text-wrap: balance; /* Modern CSS for balanced wrap */
}

/* Oda Özet */
.ko-oda-ozet {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  font-size: clamp(22px, 2.91vw, 32px);
  font-family: var(--ko-font-heading);
  color: var(--ko-blue);
  font-weight: 300;
  padding: 50px 15px;
  text-wrap: balance;

  @media (width >= 768px) {
    flex-wrap: nowrap;
    padding: 100px 50px;
  }

  @media (width >= 1200px) {
    padding-inline: 100px;
  }
}

.ko-oda-ozet__features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;

  @media (width >= 768px) {
    justify-content: flex-start;
    gap: 30px;
  }
}

.ko-oda-ozet__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ko-font-main);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: left;
}

.ko-oda-ozet__illustrasyon {
  margin-inline: auto;
}

.ko-oda-ozet-galeri {
  padding-inline: 15px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;

  @media (width >= 768px) {
    padding-inline: 0;
    display: grid;
    gap: 30px;
    grid-template-columns: 2fr 3fr;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Oda Metin */
.ko-oda-metin {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 50px;

  @media (width >= 768px) {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-inline: 70px;
  }
}

@media (width >= 768px) {
  .ko-oda-metin__text,
  .ko-oda-metin__image {
    flex-basis: calc(50% - 10px);
  }
}

.ko-oda-metin__text {
  color: var(--ko-blue);
  font-family: var(--ko-font-heading);
  font-size: clamp(21px, 2.5vw, 35px);
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 100;
  text-align: center;

  @media (width >= 768px) {
    text-align: left;
  }
}

.ko-oda-metin__image {
  aspect-ratio: 1 / 1;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  @media (width >= 768px) {
    aspect-ratio: auto;
  }
}


/* Misafirperverlik */
.ko-misafirperverlik {
  background-color: #f8fef3;
  padding: 60px 20px;
  color: var(--ko-blue);
  overflow: hidden;

  @media (width >= 768px) {
    padding: 80px 20px;
  }

  @media (width >= 1100px) {
    padding: 120px 20px;
  }
}

.ko-misafirperverlik__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;

  @media (width >= 1100px) {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }

  @media (width >= 1400px) {
    grid-template-columns: 725px 1fr;
    column-gap: 80px;
    row-gap: 60px;
  }
}

.ko-misafirperverlik__image--large {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;

  @media (width >= 1100px) {
    height: 586px;
  }
}

.ko-misafirperverlik__content-right {
  display: flex;
  flex-direction: column;
}

.ko-misafirperverlik__title {
  font-family: var(--ko-font-heading);
  font-size: 32px;
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: -10px;

  @media (width >= 768px) {
    font-size: 40px;
  }

  @media (width >= 1100px) {
    font-size: 55px;
    letter-spacing: 2.75px;
  }
}

.ko-misafirperverlik__text {
  font-family: var(--ko-font-main);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.44;
  letter-spacing: 0.9px;
  max-width: 619px;

  @media (width >= 768px) {
    font-size: 18px;
  }
}

.ko-misafirperverlik__text--top {
  margin-bottom: 50px;
}

.ko-misafirperverlik__video-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  background-color: #eee;

  @media (width >= 1100px) {
    width: 507px;
    height: 304px;
  }
}

.ko-misafirperverlik__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ko-misafirperverlik__footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-top: -20px;

  @media (width >= 1100px) {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.ko-misafirperverlik__text--bottom {
  max-width: 619px;
}

.ko-misafirperverlik__decoration {
  width: 190px;
  height: auto;
  opacity: 0.8;
  align-self: flex-end;

  @media (width >= 1100px) {
    align-self: auto;
  }
}

/* Yorumlar */
/* Yorumlar Section Styles */

.ko-yorumlar {
  background-color: var(--ko-blue);
  color: var(--ko-white);
  padding: 80px 0;
  overflow: hidden;

  @media (width >= 576px) {
    padding: 120px 0;
  }
}

.ko-yorumlar__inner {
  max-width: 1250px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;

  @media (width >= 991px) {
    flex-direction: row;
    justify-content: space-between;
  }

  @media (width >= 1200px) {
    gap: 80px;
  }
}

/* Left Content Area */
.ko-yorumlar__content {
  flex: 1;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;

  @media (width >= 991px) {
    max-width: 550px;
    margin-bottom: 0;
  }
}

.ko-yorumlar__google {
  margin-bottom: 24px;
}

.ko-yorumlar__google-logo {
  height: 40px;
  width: auto;
}

.ko-yorumlar__stars {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  margin-inline: auto;
  justify-content: center;
}

.ko-yorumlar__star {
  width: 20px;
  height: 20px;
}

.ko-yorumlar__quote {
  font-family: var(--ko-font-main);
  font-weight: 200;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.9px;
  margin-bottom: 40px;
  opacity: 0.9;

  &::before,
  &::after {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 260%;
    position: relative;
  }

  &::before {
    content: "\201C";
  }

  &::after {
    content: "\201D";
  }
}

.ko-yorumlar__rating {
  font-family: var(--ko-font-heading);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.ko-yorumlar__cta-wrapper {
  display: inline-block;
}

.ko-yorumlar__cta {
  display: inline-block;
  border: 1px solid var(--ko-white);
  padding: 14px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ko-white);
  transition: all 0.3s ease;
}

.ko-yorumlar__cta:hover {
  background-color: var(--ko-white);
  color: var(--ko-blue);
  opacity: 1;
}

/* Right Images Area */
.ko-yorumlar__images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  position: relative;
  height: 450px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;

  @media (width >= 480px) {
    flex-direction: row;
  }

  @media (width >= 576px) {
    height: 600px;
  }

  @media (width >= 991px) {
    height: 550px;
    max-width: none;
    margin: 0;
  }
}

.ko-yorumlar__image-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

  @media (width >= 1400px) {
    position: absolute;
  }
}

.ko-yorumlar__image-card--1 {
  width: 220px;
  height: 300px;
  left: 0;
  top: 0;
  z-index: 1;

  @media (width >= 576px) {
    width: 302px;
    height: 410px;
  }
}

.ko-yorumlar__image-card--2 {
  width: 260px;
  height: 300px;
  right: 0;
  bottom: 0;
  z-index: 2;

  @media (width >= 576px) {
    width: 357px;
    height: 410px;
  }
}

.ko-yorumlar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tripadvisor Badge on Card 1 */
.ko-yorumlar__tripadvisor-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--ko-white);
  text-align: center;
  padding: 20px;
}

.ko-yorumlar__tripadvisor-logo {
  width: 114px;
  height: auto;
  margin-bottom: 10px;
}

/* Oda Kart */
/* Oda Kartı Bileşeni */
.ko-oda-kart {
  width: 100%;
}

.ko-oda-kart__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 30px;
  overflow: hidden;
}

.ko-oda-kart__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ko-oda-kart__room-info {
  text-align: center;
}

.ko-oda-kart__room-subtitle {
  font-family: var(--ko-font-heading);
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-weight: 300;
  color: var(--ko-blue);
}

.ko-oda-kart__room-title {
  font-family: var(--ko-font-heading);
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 300;
  color: var(--ko-blue);

  @media (width >= 768px) {
    font-size: 34px;
  }
}

.ko-oda-kart__features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;

  @media (width >= 768px) {
    gap: 30px;
  }
}

.ko-oda-kart__feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ko-oda-kart__feature-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ko-oda-kart__feature-icon img,
.ko-oda-kart__feature-icon svg {
  width: 100%;
  height: 100%;
}

.ko-oda-kart__feature-text {
  font-family: var(--ko-font-main);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: left;
  color: var(--ko-blue);
}

/* Odalar */
.ko-odalar {
  padding: 100px 0;
  background-color: var(--ko-white);
  color: var(--ko-blue);
  overflow: hidden;
}

.ko-odalar__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.ko-odalar__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ko-odalar__title {
  font-family: var(--ko-font-heading);
  font-size: 55px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.ko-odalar__cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--ko-blue);
  color: var(--ko-blue);
  font-family: var(--ko-font-main);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.ko-odalar__cta-btn:hover {
  background-color: var(--ko-blue);
  color: var(--ko-white);
  opacity: 1;
}

.ko-odalar__description {
  font-family: var(--ko-font-heading);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 800px;
}

.ko-odalar__description p {
  margin-bottom: 20px;
}

.ko-odalar__description p:last-child {
  margin-bottom: 0;
}

/* Swiper Slider Styling for Odalar (Specific Overrides if any) */
.ko-odalar__slider-wrapper {
  margin-top: 40px;
}

.ko-odalar__footer-cta {
  margin-top: 60px;
  text-align: center;
}

.ko-odalar__footer-cta .ko-odalar__cta-btn {
  background-color: var(--ko-blue);
  color: var(--ko-white);
  padding: 12px 40px;
}

.ko-odalar__footer-cta .ko-odalar__cta-btn:hover {
  background-color: transparent;
  color: var(--ko-blue);
}

/* Responsive */
@media (max-width: 1024px) {
  .ko-odalar__header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ko-odalar__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .ko-odalar {
    padding: 60px 0;
  }
}

/* Oda Özellikler */
.ko-oda-ozellikler {
  padding-block: 60px;
  color: var(--ko-blue);
  background: linear-gradient(135deg, var(--ko-white) 0%, #f9faff 100%);
  color: var(--ko-blue);

  @media (width >= 992px) {
    padding-block: 100px;
  }
}

.ko-oda-ozellikler__title {
  font-family: var(--ko-font-heading);
  font-weight: 200;
  font-size: 55px;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  text-transform: uppercase;
  padding-inline: 20px;
  position: relative;
}

.ko-oda-ozellikler__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-inline: 20px;

  @media (width >= 992px) {
    flex-direction: row;
    gap: 80px;
  }
}

.ko-oda-ozellikler__left {
  flex: 1;

  @media (width >= 992px) {
    flex: 0 0 350px;
  }
}

.ko-oda-ozellikler__right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;

  @media (width >=1200px) {
    gap: 80px;
  }
}

.ko-oda-ozellikler__list {
  font-family: var(--ko-font-heading);
  font-weight: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ko-oda-ozellikler__list li,
.ko-oda-ozellikler__item {
  position: relative;
  padding-left: 20px;
}

.ko-oda-ozellikler__list li {
  font-size: 25px;

  @media (width >=1200px) {
    font-size: 30px;
  }
}

.ko-oda-ozellikler__list li::before,
.ko-oda-ozellikler__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--ko-blue);
  transform: rotate(45deg) translateY(-50%);
}

.ko-oda-ozellikler__item::before {
  top: 22px;
}

.ko-oda-ozellikler__item h3 {
  font-family: var(--ko-font-heading);
  font-weight: 200;
  font-size: 30px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.ko-oda-ozellikler__item p {
  font-family: var(--ko-font-main);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

.ko-oda-ozellikler__item span {
  font-family: var(--ko-font-heading);
  font-size: 18px;
  display: block;
  margin-top: 4px;
}

@media (width >= 1200px) {
  .ko-oda-ozellikler__list li {
    font-size: 30px;
  }

  .ko-oda-ozellikler__item h3 {
    font-size: 30px;
  }

  .ko-oda-ozellikler__item p {
    font-size: 22px;
  }
}

/*Galeriler*/
.ko-oda-galeri2 {
  padding-inline: 15px;
}

.ko-oda-galeri2__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;

  @media (width >=768px) {
    display: grid;
    grid-template-columns: 1fr 1.27fr;
  }

  img {
    max-width: 100%;
    height: auto;
    margin-inline: auto;

    @media (width >=768px) {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
}

.ko-galeri3 {
  display: flex;
  flex-direction: column;
  gap: 30px;

  @media (width >=768px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}
.oda-galeri4 {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;

  @media (width >=768px) {
    padding: 80px 15px;
    display: grid;
    grid-template-columns: 1fr 1.21fr 1.53fr;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}