/* ---------------------------------------
   WIDGET: HERO IMAGE + CENTERED TEXT BOX
---------------------------------------- */
html,
body {
  min-height: 100%;
  background: #f1f1f1;
  position: relative;
}

/* FULL PAGE GRADIENT BACKGROUND */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  /* Degrade: beyaz → gri → füme */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f1f1f1 40%,
    #e3e3e3 70%,
    #bdbdbd 100%
  );
}

/* WATERMARK IMAGE (her zaman sayfanın EN ALTINDA) */
html::after {
  content: "";
  position: fixed;
  bottom: 0;
  right: 0;

  width: 100%;
  /* watermark boyutu */
  height: 100%;

  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  /* watermark yumuşaklığı */
  z-index: -1;
  /* içeriğin arkasında kalsın */
  pointer-events: none;
}

.widget-hero-text {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.widget-hero-text .hero-image {
  width: 100%;
  height: calc(100vh - var(--header-height));
}

.widget-hero-text .hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* TEXT BOX */
.widget-hero-text .hero-text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: var(--widget-bg);
  padding: 20px 40px;
  border-radius: 4px;
  text-align: center;
  color: var(--text-white);
  max-width: 70%;
}

.widget-hero-text .hero-text-box p {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .widget-hero-text .hero-text-box {
    max-width: 90%;
    padding: 16px 22px;
  }

  .widget-hero-text .hero-text-box p {
    font-size: 18px;
  }
}

/* ---------------------------------------
   BREADCRUMB
---------------------------------------- */

.breadcrumb {
  width: 100%;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 60px;
}

.breadcrumb-link {
  color: var(--brand-gray);
  /* Açık gri */
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--brand-dark);
}

.breadcrumb-separator {
  color: var(--brand-main);
  /* Ana marka rengi */
  font-size: 20px;
  margin: 0 4px;
}

.breadcrumb-current {
  color: var(--brand-main);
  font-weight: 500;
}

/* ---------------------------------------
   CONTACT WIDGET
---------------------------------------- */

.widget-contact .contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

/* LEFT SIDE (INFO) */
.contact-info {
  flex: 1;
  max-width: 380px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--brand-dark);
}

.contact-title span {
  font-weight: 400;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item img {
  width: 24px;
  height: 24px;
}

.contact-item span {
  font-size: 18px;
  line-height: 1.5;
  color: var(--brand-dark);
}

/* RIGHT SIDE (MAP BLOCK) */
.contact-map {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
}

/* Map image or iframe */
.contact-map img,
.contact-map iframe {
  width: 100%;
  height: 500px;
  display: block;
}

/* Figma’daki BRONZE GRADIENT FRAME */
.map-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(var(--brand-main-rgb), 0.55) 0%,
    rgba(var(--brand-main-rgb), 0.25) 40%,
    rgba(var(--brand-main-rgb), 0.1) 100%
  );
}

/* MAP CTA BUTTON */
.map-cta {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(var(--brand-main-rgb), 0.85);
  padding: 14px 26px;
  border-radius: 4px;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 400;
}

.map-cta img {
  width: 22px;
  height: 22px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .widget-contact .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    max-width: 100%;
  }

  .map-cta {
    font-size: 16px;
    padding: 12px 22px;
  }
}

/* ---------------------------------------
   INFO WIDGET (Genel Özellikler)
---------------------------------------- */
.widget-info {
  margin-bottom: 60px;
}

.widget-info .info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT SIDE – TITLE */
.info-left {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  padding-top: 8px;
}

.info-line {
  width: 60px;
  height: 2px;
  background: var(--brand-main);
}

.info-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--brand-main);
  margin: 0;
}

/* RIGHT SIDE – BOX */
.info-box {
  position: relative;
  background: rgba(var(--brand-main-rgb), 0.07);
  padding: 40px 50px;
  border-radius: 4px;
  flex: 1;
  max-width: 70%;
}

/* Decorative corner lines */
.info-deco {
  position: absolute;
  border: 1px solid rgba(var(--brand-main-rgb), 0.4);
}

.deco-top-left {
  width: 60px;
  height: 40px;
  top: -12px;
  left: -12px;
  border-bottom: none;
  border-right: none;
}

.deco-bottom-right {
  width: 60px;
  height: 40px;
  bottom: -12px;
  right: -12px;
  border-top: none;
  border-left: none;
}

/* LIST GRID */
.info-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  font-size: 18px;
  padding: 6px 0 6px 18px;
  color: var(--brand-dark);
  position: relative;
}

/* Custom bullet */
.info-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--brand-main);
  font-size: 18px;
}

/* ---------------------------------------
   SLIDER WIDGET
---------------------------------------- */
.widget-slider {
  position: relative;
}

.widget-slider-hero {
  height: calc(100vh - var(--header-height));
}

.widget-slider .swiper {
  width: 100%;
  height: auto;
}

.widget-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Navigation Buttons */
.widget-slider .swiper-button-prev,
.widget-slider .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: rgba(var(--brand-main-rgb), 0.3);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.widget-slider .swiper-button-prev:hover,
.widget-slider .swiper-button-next:hover {
  background: rgba(var(--brand-main-rgb), 0.5);
}

.widget-slider .swiper-button-prev::after,
.widget-slider .swiper-button-next::after {
  font-size: 18px;
  color: #fff;
}

/* Pagination Dots */
.widget-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.widget-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px !important;
}

.widget-slider .swiper-pagination-bullet-active {
  background: var(--brand-main);
}

/* Counter (01 / 12) */
.widget-slider .slider-counter {
  position: absolute;
  bottom: -40px;
  left: 0;
  font-size: 18px;
  color: var(--brand-main);
  display: flex;
  align-items: center;
}

.slider-counter .divide {
  margin: 0 4px;
  color: var(--brand-gray);
}

/* ---------------------------------------
   FAQ WIDGET
---------------------------------------- */

.widget-faq .faq-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.widget-faq .faq-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--brand-dark);
  opacity: 0.85;
  margin-bottom: 30px;
}

.widget-faq p {
  margin-bottom: 20px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ ITEM */
.faq-item {
  border: 1px solid rgba(var(--brand-main-rgb), 0.25);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* When open */
.faq-item.active {
  background: rgba(var(--brand-main-rgb), 0.06);
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--brand-dark);
  font-weight: 500;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 24px;
  cursor: pointer;
}

/* ICON (+ / -) */
.faq-icon {
  font-size: 26px;
  font-weight: 300;
  color: var(--brand-main);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ANSWER AREA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* yeterli bir space */
  padding-bottom: 20px;
}

/* Bullet inside paragraphs */
.faq-answer ul {
  margin: 0;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--brand-dark);
}

/* Footer Text */
.faq-footer {
  font-size: 16px;
  margin-top: 30px;
  line-height: 1.6;
  opacity: 0.85;
  color: var(--brand-dark);
}

/* ---------------------------------------
   ROOM LISTING WIDGET
---------------------------------------- */

.widget-room-list {
  position: relative;
}

/* Room Grid Layout */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

/* ROOM IMAGE HOVER ZOOM */
.room-card {
  overflow: hidden;
  /* taşmayı engeller */
  border-radius: 6px;
  /* görsel radius ile uyumlu */
}

.room-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 30px;
}

.room-image img {
  transition:
    transform 0.4s ease,
    opacity 0.3s ease;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.room-card:hover .room-image img {
  transform: scale(1.08);
  /* hafif zoom */
  opacity: 0.95;
  /* premium mat efekt */
}

/* Room Title */
.room-title {
  margin-top: 14px;
  font-size: 22px;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}

/* Tiny line before title */
.room-line {
  width: 40px;
  height: 2px;
  background: var(--brand-main);
  display: inline-block;
}

/* BACKGROUND PATTERN — diagonal lines */
.widget-room-list::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 100%;
  background-image: repeating-linear-gradient(
    -70deg,
    rgba(0, 0, 0, 0.04) 0px,
    rgba(0, 0, 0, 0.04) 1px,
    transparent 1px,
    transparent 22px
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .room-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------
   ROOM DETAIL HEADER WIDGET (FINAL)
---------------------------------------- */
.widget-room-list {
  margin-bottom: 60px;
  /* widget rule ile uyumlu */
}

.widget-room-detail-head {
  position: relative;
  margin-bottom: 60px;
}

/* Figma Diagonal Background */
.widget-room-detail-head::before {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  width: 400px;
  height: 100%;
  background-image: repeating-linear-gradient(
    -70deg,
    rgba(0, 0, 0, 0.05) 0px,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px,
    transparent 25px
  );
  pointer-events: none;
}

/* FIX: Align left and right sections perfectly */
.room-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* önemli düzeltme */
  gap: 60px;
}

/* LEFT SIDE */
.room-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.room-head-line {
  width: 40px;
  height: 2px;
  background: var(--brand-main);
}

.room-head-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--brand-main);
  margin: 0;
}

/* RIGHT SIDE */
.room-head-content {
  flex: 1;
  max-width: 70%;
}

.room-head-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.room-head-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--brand-dark);
}

/* MOBILE */
@media (max-width: 900px) {
  .room-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

/* ---------------------------------------
   EXPERIENCE WIDGET (Alternating Layout)
---------------------------------------- */
/* ---------------------------------------
   EXPERIENCE WIDGET (Alternating Layout)
---------------------------------------- */

.widget-experience {
  position: relative;
  margin-bottom: 60px;
}

/* TIMELINE LINE */
.experience-wrapper {
  position: relative;
}

.experience-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: calc(100% + 160px);
  background: rgba(var(--brand-main-rgb), 0.3);
  transform: translateX(-50%);
  z-index: 0;
}

/* EXPERIENCE ITEM BASE */
.experience-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 160px;
}

/* FIX — image and content exact 45% each */
.experience-item .exp-image-block,
.experience-item .exp-content {
  width: 45%;
  flex: 0 0 45%;
}

/* TIMELINE CIRCLE */
.experience-item .exp-timeline {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  z-index: 10;
}

.exp-timeline .circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--brand-main);
  background: #fff;
  display: block;
}

/* IMAGE BLOCK BG SHADOW */
.exp-image-block {
  position: relative;
}

.exp-image-block img {
  width: 100%;
  max-height: 360px;
  /* Figma ratio – fixed height */
  object-fit: cover;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

/* BG SHADOW BEHIND IMAGE */
.exp-bg {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: rgba(var(--brand-main-rgb), 0.18);
  border-radius: 6px;
  z-index: 1;
}

/* CONTENT AREA */
.exp-content {
  position: relative;
  z-index: 2;
}

/* TITLE BOX */
.exp-title-box {
  display: inline-block;
  padding: 18px 32px;
  margin-bottom: 20px;
  background: rgba(var(--brand-main-rgb), 0.07);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.exp-title-box::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 40px;
  top: -12px;
  left: -12px;
  border: 1px solid rgba(var(--brand-main-rgb), 0.3);
  border-bottom: none;
  border-right: none;
}

.exp-title-box::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 40px;
  bottom: -12px;
  right: -12px;
  border: 1px solid rgba(var(--brand-main-rgb), 0.3);
  border-top: none;
  border-left: none;
}

.exp-title-box h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--brand-dark);
}

/* PARAGRAPH */
.exp-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--brand-dark);
}

/* ALTERNATING ORDER */

/* Left: image left – text right */
.experience-item.left .exp-image-block {
  order: 1;
}

.experience-item.left .exp-content {
  order: 2;
}

/* Right: image right – text left */
.experience-item.right .exp-image-block {
  order: 2;
}

.experience-item.right .exp-content {
  order: 1;
}

/* ---------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 900px) {
  .experience-wrapper::before {
    left: 20px;
    transform: none;
  }

  .experience-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 120px;
    padding-left: 40px;
  }

  .experience-item .exp-image-block,
  .experience-item .exp-content {
    width: 100%;
    flex: none;
  }

  .experience-item .exp-timeline {
    left: 20px;
    transform: translateX(0);
  }

  .exp-image-block img {
    max-height: 260px;
  }
}

/* ---------------------------------------
   TABLE WIDGET
---------------------------------------- */

.widget-table {
  margin-bottom: 60px;
}

.table-wrapper {
  background: rgba(var(--brand-main-rgb), 0.07);
  padding: 40px 50px;
  border-radius: 6px;
  position: relative;
}

.table-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

/* Table */
.g-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.g-table th {
  text-align: left;
  padding: 14px;
  background: rgba(var(--brand-main-rgb), 0.2);
  color: var(--brand-dark);
  font-weight: 600;
}

.g-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(var(--brand-main-rgb), 0.2);
  color: var(--brand-dark);
}

/* Hover effect */
.g-table tbody tr:hover {
  background: rgba(var(--brand-main-rgb), 0.08);
}

/* ---------------------------------------
   EVENT LISTING WIDGET
---------------------------------------- */

.widget-event-list {
  margin-bottom: 60px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

.event-card {
  border-radius: 6px;
  overflow: hidden;
  background: rgba(var(--brand-main-rgb), 0.06);
  padding-bottom: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.event-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.event-content {
  padding: 20px;
}

.event-content h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: var(--brand-dark);
  font-weight: 600;
}

.event-content p {
  margin: 0;
  font-size: 18px;
  color: var(--brand-dark);
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-image img {
    height: 220px;
  }
}

/* HERO SLIDER OVERLAY TEXT */
.hero-slide-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-slide-text {
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  color: var(--text-white);
}

.hero-slide-text h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide-text p {
  font-size: 22px;
  opacity: 0.9;
  max-width: 500px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}

/* EXPLORE GRID */
.widget-explore {
  margin-bottom: 28px;
}

.widget-explore .explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.explore-card img {
  height: 220px;
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
}

.explore-card {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.explore-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

.explore-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
}

.explore-overlay h3 {
  color: white;
  margin: 0;
  font-size: 20px;
}

.widget-about {
  background: #f7f7f7;
  padding: 60px 0;
}

.widget-about .about-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.widget-about .about-left h3 {
  font-size: 28px;
  font-weight: 500;
  color: var(--brand-main);
}

.widget-about .about-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.widget-about .about-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}

/* HERO SLIDER WRAPPER */
.widget-slider-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
}

.widget-slider-hero .swiper,
.widget-slider-hero .swiper-wrapper,
.widget-slider-hero .swiper-slide {
  height: 100%;
}

.widget-slider-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HERO OVERLAY TEXT */
.hero-overlay {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 24px 48px;

  /* BACKGROUND + BLUR */
  background: rgba(255, 255, 255, 0.14);
  /* soft transparent white */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* BORDER: brand-main renk */
  border: 4px solid rgba(var(--brand-main-rgb), 0.35);
  border-radius: 8px;

  /* TEXT COLOR & SHADOW */
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);

  /* SIZE */
  max-width: 680px;
  width: 90%;
  z-index: 10;
}

.hero-overlay h2 {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.hero-overlay p {
  font-size: 20px;
  opacity: 0.92;
  margin: 0;
  line-height: 1.5;
}

.hero-overlay h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
}

.hero-overlay p {
  font-size: 22px;
  color: #fff;
  opacity: 0.92;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.6);
}

/* HERO ARROWS (PREMIUM) */
.heroSlider .swiper-button-prev,
.heroSlider .swiper-button-next {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

.heroSlider .swiper-button-prev:hover,
.heroSlider .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.55);
}

.heroSlider .swiper-button-prev::after,
.heroSlider .swiper-button-next::after {
  font-size: 22px;
  color: #fff;
}

/* =======================================
   GLOBAL MOBILE FIXES (ALL COMPONENTS)
   ======================================= */
@media (max-width: 768px) {
  /* --- HERO SLIDER --- */

  .hero-overlay {
    bottom: 8%;
    padding: 16px 22px;
    width: 90%;
    max-width: 90%;
  }

  .hero-overlay h2 {
    font-size: 26px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .heroSlider .swiper-button-prev,
  .heroSlider .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .heroSlider .swiper-button-prev::after,
  .heroSlider .swiper-button-next::after {
    font-size: 16px;
  }

  /* --- ABOUT SECTION --- */
  .widget-about .about-row {
    flex-direction: column;
    gap: 20px;
  }

  .widget-about h2 {
    font-size: 22px;
  }

  .widget-about p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* --- EXPLORE GRID (3 → 1 COLUMN) --- */
  .widget-explore .explore-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .explore-card img {
    height: 170px;
    width: 100%;
    object-fit: cover;
  }

  /* --- EXPERIENCE WIDGET --- */
  .experience-wrapper::before {
    left: 20px;
    transform: none;
  }

  .experience-item {
    flex-direction: column !important;
    gap: 20px;
    padding-left: 40px;
    margin-bottom: 100px;
  }

  .experience-item .exp-image-block,
  .experience-item .exp-content {
    width: 100% !important;
  }

  .exp-image-block img {
    max-height: 220px !important;
    height: auto;
  }

  .experience-item .exp-timeline {
    left: 20px;
    top: 20px;
    transform: none;
  }

  /* --- INFO WIDGET --- */
  .info-row {
    flex-direction: column;
    gap: 24px;
  }

  .info-box {
    max-width: 100%;
    padding: 28px;
  }

  .info-columns {
    flex-direction: column;
    gap: 20px;
  }

  /* --- ROOM LISTING --- */
  .room-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .room-image {
    height: auto !important;
  }

  .room-image img {
    height: auto;
    width: 100%;
  }

  /* --- CONTACT WIDGET --- */
  .widget-contact .contact-wrapper {
    flex-direction: column !important;
  }

  .contact-map img {
    height: 260px;
  }

  .map-cta {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* --- EVENT LIST GRID --- */
  .event-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .event-image img {
    height: 200px;
  }

  .lang-switch {
    display: none;
  }

  .site-header .container {
    width: 98%;
  }

  .btn-cta {
    font-size: 8px;
    padding: 6px;
    gap: 4px;
  }
  .room-head-content {
    max-width: 100%;
  }
  .experience-item .exp-timeline {
    left: 10px;
  }
  .widget-slider-hero {
    height: auto;
  }
  .widget-slider .swiper {
    height: 30vh;
  }
  .footer-inner {
    gap: 20px;
  }
  .footer-links,
  .footer-inner {
    flex-direction: column;
  }
  .container {
    width: 92%;
    padding: 0;
  }
  body {
    overflow-x: hidden;
  }
  main {
    padding-bottom: 120px;
  }
  .heroSlider {
    height: 70vh;
  }
  .heroSlider img {
    height: 70vh;
  }
}

/* =============================================================================
   KVKK SAYFASI
   ============================================================================= */

.widget-kvkk {
  padding: 60px 0 80px;
}

.kvkk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.kvkk-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  border: 1px solid rgba(200, 146, 109, 0.25);
  gap: 20px;
}

.kvkk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kvkk-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-dark);
  flex: 1;
}

.kvkk-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--brand-main);
  color: var(--brand-main);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.kvkk-btn:hover {
  background: var(--brand-main);
  color: #fff;
}

/* KVKK BELGE DETAY */
.widget-document {
  padding: 60px 0 100px;
}

.document-wrapper {
  max-width: 800px;
}

.document-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.document-line {
  display: block;
  width: 3px;
  height: 36px;
  background: var(--brand-main);
  flex-shrink: 0;
}

.document-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
}

.document-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.85;
}

.document-body p {
  margin-bottom: 16px;
}
.document-body h2,
.document-body h3 {
  margin: 28px 0 12px;
  font-weight: 600;
}
.document-body ul,
.document-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.document-body li {
  margin-bottom: 6px;
}

.document-back {
  margin-top: 48px;
}

.btn-back {
  color: var(--brand-main);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.btn-back:hover {
  border-color: var(--brand-main);
}

@media (max-width: 900px) {
  .kvkk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .kvkk-grid {
    grid-template-columns: 1fr;
  }
}
