/*
Homepage components:
- Hero
- Mavi Bayraklı Deniz
- Dergiler
- Yorumlar
- Oda Kart (Component)
- Odalar
- Misafirperverlik
- Ölüdeniz (Video Background)
- Restoran
- Hayat Kısa Sezon Uzun
- Hikayemiz
- Konfor
- Etkinlik Kart (Component)
- Etkinlikler
- Havuz Plaj
- Türk Rivierası
*/
/* Hero */
.ko-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 844px;
  padding-bottom: 45px;

  @media (width >= 768px) {
    aspect-ratio: 1600 / 844;
    padding-bottom: 75px;
  }
}

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

.ko-hero__img,
.ko-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ko-hero__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-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.ko-hero__content {
  max-width: 1240px;
  margin-inline: auto;
}

.ko-hero__title {
  color: var(--ko-white);
  font-family: var(--ko-font-heading);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}
/* Mavi bayraklı deniz */
.ko-mavi-bayrakli-deniz {
  background-color: #fffbf4;
  padding: 100px 0;
  color: var(--ko-blue);
  overflow: hidden;
}

.ko-mavi-bayrakli-deniz__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ko-mavi-bayrakli-deniz__sun {
  width: 103px;
  height: auto;
  margin-bottom: 30px;
}

.ko-mavi-bayrakli-deniz__title {
  font-family: var(--ko-font-heading);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.63;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-align: center;
  max-width: 1014px;
  margin-bottom: 70px;
}

.ko-mavi-bayrakli-deniz__content {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1350px; /* Adjusting based on 147 + 824 + some gap + 526 */
}

.ko-mavi-bayrakli-deniz__left {
  flex: 0 0 824px;
}

.ko-mavi-bayrakli-deniz__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ko-mavi-bayrakli-deniz__image {
  width: 100%;
  height: 538px;
  object-fit: cover;
}

.ko-mavi-bayrakli-deniz__video-container {
  width: 100%;
  height: 451px;
  overflow: hidden;
  position: relative;
}

.ko-mavi-bayrakli-deniz__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.ko-mavi-bayrakli-deniz__bottom-text {
  font-family: var(--ko-font-heading);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.36;
  letter-spacing: 1.1px;
  margin-top: 35px;
  max-width: 504px;
}

.ko-mavi-bayrakli-deniz__cta-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
}

.ko-mavi-bayrakli-deniz__cta {
  display: inline-block;
  padding: 13px 40px;
  border: 1px solid var(--ko-blue);
  color: var(--ko-blue);
  font-family: var(--ko-font-main);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ko-mavi-bayrakli-deniz__cta:hover {
  background-color: var(--ko-blue);
  color: var(--ko-white);
}

@media (max-width: 1200px) {
  .ko-mavi-bayrakli-deniz__content {
    flex-direction: column;
    align-items: center;
  }

  .ko-mavi-bayrakli-deniz__left {
    flex: 0 0 auto;
    width: 100%;
    max-width: 824px;
  }

  .ko-mavi-bayrakli-deniz__right {
    width: 100%;
    max-width: 824px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .ko-mavi-bayrakli-deniz {
    padding: 60px 20px;
  }

  .ko-mavi-bayrakli-deniz__title,
  .ko-mavi-bayrakli-deniz__bottom-text {
    font-size: 18px;
  }

  .ko-mavi-bayrakli-deniz__image {
    height: 300px;
  }

  .ko-mavi-bayrakli-deniz__video-container {
    height: 300px;
  }
}

/* Dergiler */
.ko-dergiler {
  padding: 80px 0;
  background-color: var(--ko-white);
}

.ko-dergiler__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.ko-dergiler__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ko-dergiler__logo {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ko-dergiler__logo:hover {
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .ko-dergiler__inner {
    gap: 40px;
  }
}

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

  .ko-dergiler__inner {
    gap: 30px;
  }
}

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

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

/* Ölüdeniz */
.ko-oludeniz-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (width >= 768px) {
    height: 464px;
    aspect-ratio: auto;
    /* The clip-path: inset(0) creates a "window" for the fixed video */
    clip-path: inset(0);
  }
}

.ko-oludeniz-bg__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  @media (width >= 768px) {
    /* On desktop, we want the video to be fixed to the viewport */
    /* but masked by the .ko-oludeniz-bg container via clip-path */
    position: fixed;
    /* We need to ensure it covers the viewport */
    height: 100vh;
    pointer-events: none;
  }
}

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

/* Fallback/Poster styling if video doesn't load or on systems that prefer reduced motion */
.ko-oludeniz-bg__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;

  @media (width >= 768px) {
    background-attachment: fixed;
  }
}

.ko-oludeniz-bg__overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 41, 92, 0.15); /* Subtle brand-colored overlay */
}

.ko-oludeniz-bg__text {
  color: var(--ko-white);
  font-family: var(--ko-font-heading);
  font-weight: 100; /* Thin */
  font-size: clamp(1.25rem, 4vw, 2.5rem); /* Responsive font size (20px to 40px) */
  line-height: 1.375; /* 55/40 = 1.375 */
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0px -1px 26.8px #00295c;
  max-width: 900px;
  margin: 0 auto;
}

@media (width >= 768px) {
  .ko-oludeniz-bg__text {
    font-size: 40px;
    line-height: 55px;
  }
}

/* Restoran */
/* ko-restoran2 */
.ko-restoran2 {
  background-color: #fffbf4;
  padding: 50px 0 20px;
  color: var(--ko-blue);
  font-weight: 300;

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

  img {
    display: block;
    max-width: 100%;
    height: auto;
  }


  h2, h3 {
    font-family: var(--ko-font-heading);
    font-weight: inherit;
  }

  h2 {
    font-size: clamp(40px, 5vw, 55px);
    letter-spacing: 0.08em;
  }

  h3 {
    font-size: clamp(24px, 3vw, 30px);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }
}

.ko-restoran2__inner {
  display: flex;
  padding-inline: 30px;
  gap: 40px;
  flex-direction: column;

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

.ko-restoran2__left-column {
  display: flex;
  flex-direction: column;
}

.ko-restoran2__left-text {
  max-width: 600px;
  margin-inline: auto;
  @media (width >= 980px) {
    margin-inline-end: 0;
  }
}

.ko-restoran2__cta {
  display: inline-block;
  text-align: center;
  text-wrap: balance;
  border: 1px solid var(--ko-blue);
  padding: 12px 40px;
  color: var(--ko-blue);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}

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

.ko-restoran2__michelin-group {
  text-align: center;

  @media (width >= 560px) {
    margin-inline: auto;
    width: max-content;
  }
}

.ko-restoran2__img-wrap {
  position: relative;
}

.ko-restoran2__award-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.ko-restoran2__fill {
  flex: 1;
}

/* Hayat kısa sezon uzun */
.ko-hayat-kisa {
  padding: 30px;
  color: var(--ko-blue);

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

.ko-hayat-kisa__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ko-hayat-kisa__title {
  font-family: var(--ko-font-heading);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-wrap: balance;
  margin-bottom: 24px;
  line-height: 1.2;

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

  @media (width >= 1024px) {
    font-size: 55px;
  }
}

.ko-hayat-kisa__subtitle {
  font-family: var(--ko-font-main);
  font-size: 16px;
  font-weight: 200;
  max-width: 826px;
  line-height: 1.5;
  letter-spacing: 0.05em;

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

.ko-hayat-kisa__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;

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

.ko-hayat-kisa__content > img {
  margin-inline: auto;
  @media (width >= 1024px) {
    margin-inline: unset;
  }
}

.ko-hayat-kisa__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-items: center;
  justify-content: center;
  font-family: var(--ko-font-heading);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.05em;
  max-width: 500px;
  margin-inline: auto;

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

  @media (width >= 1024px) {
    margin-inline: unset;
    line-height: 1.15;
  }
}

.ko-hayat-kisa__text-wrapper p {
  margin-block: 0.75rem;
}

/* Hikayemiz */
.ko-hikayemiz {
  padding: 50px 30px;
  color: var(--ko-blue);

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

.ko-hikayemiz__header {
  text-align: center;
}

.ko-hikayemiz__hikayemiz {
  max-width: 150px;
}

.ko-hikayemiz__title {
  font-family: var(--ko-font-heading);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ko-hikayemiz__grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Left Column: Text Content */
.ko-hikayemiz__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.ko-hikayemiz__text {
  font-family: var(--ko-font-main);
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.05em;
  max-width: 470px;
}

.ko-hikayemiz__signature {
  margin-top: 20px;
}

.ko-hikayemiz__signature-image {
  height: 55px; /* Approximate height from Figma */
  width: auto;
  margin-bottom: 10px;
}

.ko-hikayemiz__signature-sub {
  font-family: var(--ko-font-heading);
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ko-hikayemiz__illustration {
  margin-top: 40px;
}

.ko-hikayemiz__illustration-image {
  width: 176px;
  height: auto;
}

/* Right Column: Visuals */
.ko-hikayemiz__visuals {
  display: flex;
  flex-direction: column;
  position: relative;
}

.ko-hikayemiz__image-main {
  width: 100%;
  height: auto;

  @media (width >= 768px) {
    height: unset;
    aspect-ratio: 570 / 535;
    object-fit: cover;
    align-self: flex-end;
  }
}

.ko-hikayemiz__image-overlap {
  display: block;
  width: 80%;
  height: auto;
  margin-inline: auto;

  @media (width >= 768px) {
    margin-inline: unset;
    aspect-ratio: 446 / 360;
    object-fit: cover;
    margin-top: -150px;
    z-index: 2;
  }
}

.ko-hikayemiz__cta-wrapper {
  text-align: center;
  margin: 15px auto;
  @media (width >= 1200px) {
    margin-inline: unset;
    align-self: flex-end;
    margin-block: -65px 0;
  }
}

.ko-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ko-blue);
  color: var(--ko-white);
  padding: 12px 30px;
  font-family: var(--ko-font-main);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ko-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Tablet and Desktop */
@media (width >= 1024px) {
  .ko-hikayemiz__hikayemiz {
    max-width: unset;
  }

  .ko-hikayemiz__title {
    font-size: 55px;
  }

  .ko-hikayemiz__grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .ko-hikayemiz__content {
    flex: 0 0 40%;
  }

  .ko-hikayemiz__visuals {
    flex: 0 0 55%;
    padding-inline-start: 70px;
  }

  .ko-hikayemiz__image-main {
    width: 570px;
    margin-left: 100px;
  }

  .ko-hikayemiz__image-overlap {
    width: 446px;
    margin-left: -100px; /* Offset to the left */
  }
}

/* Konfor */
.ko-konfor {
  font-weight: 250;
  padding: 40px 25px;
  color: var(--ko-blue);

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

.ko-konfor h2 {
  font-family: var(--ko-font-heading);
  letter-spacing: 2.75px;
  line-height: 1.2;
  font-size: clamp(30px, 4.5vw, 55px);
  font-weight: inherit;
  margin-bottom: 25px;
}

.ko-konfor-text {
  font-family: var(--ko-font-heading);
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: 1.6px;
}

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

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

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

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

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

.ko-etkinlik-kart-info {
  text-align: left;
}

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

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

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

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

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

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

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

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

.ko-etkinlikler__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-etkinlikler__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-etkinlikler__cta-btn:hover {
  background-color: var(--ko-blue);
  color: var(--ko-white);
  opacity: 1;
}

.ko-etkinlikler__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-etkinlikler__description p {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

/* Havuz plaj */
.ko-havuz-plaj {
  font-weight: 250;
  padding: 40px 25px;
  color: var(--ko-blue);

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

.ko-havuz-plaj-content {
  display: flex;
  flex-direction: column;
  gap: 25px;

  @media (width >= 768px) {
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
  }
}

.ko-havuz-plaj h2 {
  font-family: var(--ko-font-heading);
  letter-spacing: 2.75px;
  line-height: 1.2;
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: inherit;
  margin-bottom: 25px;
}

.ko-havuz-plaj-text {
  font-family: var(--ko-font-heading);
  font-size: clamp(12px, 1.5vw, 18px);
  letter-spacing: 1.6px;
}

.ko-havuz-plaj-images {
  display: flex;
  flex-direction: column;
  gap: 30px;

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

/* Türk Rivierası */
.ko-turk-rivierasi {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--ko-white);
  min-height: 600px;

  @media (width >= 1024px) {
    height: 945px;
  }
}

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

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


.ko-turk-rivierasi__content {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  @media (width >= 1024px) {
    padding: 115px 0 80px 0;
  }
}

.ko-turk-rivierasi__top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;

  @media (width >= 1024px) {
    align-self: flex-end;
    max-width: 500px;
    text-align: left;
    margin-right: 60px; /* Alignment with inner content if needed */
  }
}

.ko-turk-rivierasi__quote {
  font-family: var(--ko-font-heading);
  font-weight: 300; /* IvyMode Light/Thin */
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

  @media (width >= 1024px) {
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: 1.5px;
      margin-bottom: 24px;
  }
}


.ko-turk-rivierasi__desc {
  font-family: var(--ko-font-main);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

  @media (width >= 1024px) {
    font-size: 16px;
    line-height: 1.56;
    letter-spacing: 0.8px;
  }
}


.ko-turk-rivierasi__main-title-wrapper {
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;

  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (width >= 1024px) {
    flex-grow: 0;
    top: -90px;
  }
}

.ko-turk-rivierasi__main-title {
  font-family: var(--ko-font-heading);
  font-weight: 100;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);

  @media (width >= 1024px) {
    font-size: 70px;
    line-height: 1.07;
    letter-spacing: 3.5px;
  }
}
