* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #fafafa;
}

a {
  color: inherit;
}

/* ---------- Header / Navbar ---------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  flex: 1;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a1a;
  white-space: nowrap;
}

.main-nav a:hover {
  opacity: 0.6;
}

.main-nav a.highlight {
  color: #e8536f;
}

.nav-item {
  position: relative;
}

.nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  min-width: 230px;
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 50;
}

.nav-item:hover .dropdown {
  display: flex;
}

.dropdown a {
  padding: 0.7rem 1.5rem;
  font-size: 0.8rem;
}

.dropdown a:hover {
  background: #f4ece1;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.icon-phone {
  transform: rotate(90deg);
  display: inline-block;
}

.btn-reservation {
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-reservation:hover {
  background: #333;
}

.lang-select {
  border: 1px solid #ccc;
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
  background: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #1a1a1a;
  width: 100%;
}

/* ---------- Mobile menu overlay ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .logo-img {
  background: #fff;
  padding: 0.4rem 0.6rem;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}

.mobile-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mobile-nav a.highlight {
  color: #e8536f;
}

.mobile-nav a.mobile-subnav {
  margin: -0.6rem 0 0 1.25rem;
  font-size: 0.8rem;
  color: #ccc;
  text-transform: none;
  font-weight: 500;
}

.mobile-menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.mobile-menu-bottom .phone {
  color: #fff;
}

.mobile-menu-bottom .lang-select {
  background: #1a1a1a;
  color: #fff;
  border-color: #444;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  background: #ddd;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dots span.active {
  background: #fff;
}

/* ---------- Feature section ---------- */

.feature {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.feature-text {
  flex: 1;
}

.feature-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}

.feature-text h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.feature-text p {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}

.feature-image {
  flex: 1;
}

.feature-image img,
.feature-image video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .feature {
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem auto;
  }

  .feature-image img,
  .feature-image video {
    height: 320px;
  }

  .feature-text h1 {
    font-size: 2rem;
  }
}

/* ---------- Showcase sections ---------- */

.showcase {
  display: flex;
  align-items: stretch;
  background: #f4ece1;
}

.showcase-reverse {
  flex-direction: row-reverse;
}

.showcase-text {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 3rem 3rem;
}

.showcase-text h1,
.showcase-text h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.showcase-text p {
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.btn-outline {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.showcase-image {
  position: relative;
  flex: 1;
  min-height: 480px;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-slide.active {
  opacity: 1;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-arrow-prev {
  left: 1.25rem;
}

.showcase-arrow-next {
  right: 1.25rem;
}

@media (max-width: 900px) {
  .showcase,
  .showcase-reverse {
    flex-direction: column;
  }

  .showcase-text {
    flex: none;
    padding: 2.5rem 1.5rem;
  }

  .showcase-image {
    min-height: 320px;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: #1c0f09;
  color: #d8cfc7;
  margin-top: 0;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.25rem;
}

.footer-col p {
  line-height: 1.7;
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.footer-col a {
  color: #d8cfc7;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #382820;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .header-actions .phone,
  .header-actions .lang-select {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: 0.75rem;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }
}

/* ---------- Kadınlara Özel (overlay sections) ---------- */

.overlay-section {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.overlay-section-tall {
  min-height: 110vh;
}

.overlay-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
}

.overlay-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 3rem;
}

.overlay-content h1,
.overlay-content h2 {
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.overlay-content h1.script-title,
.overlay-content h2.script-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  text-transform: none;
  font-size: 4rem;
  letter-spacing: normal;
}

.overlay-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}

.overlay-content p:last-child {
  margin-bottom: 0;
}

.overlay-content h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 1.5rem 0 0.75rem;
}

.overlay-content ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  line-height: 1.8;
}

.overlay-content li {
  font-size: 1rem;
}

@media (max-width: 700px) {
  .overlay-section,
  .overlay-section-tall {
    min-height: 70vh;
  }

  .overlay-content {
    padding: 2rem 1.5rem;
  }

  .overlay-content h1,
  .overlay-content h2 {
    font-size: 1.6rem;
  }

  .overlay-content h1.script-title,
  .overlay-content h2.script-title {
    font-size: 2.6rem;
  }
}

/* ---------- Aktiviteler & Etkinlikler ---------- */

.activity-page {
  background: #f3ece1;
  color: #1b2a3a;
}

.activity-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.activity-hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a3906f;
  margin-bottom: 1.5rem;
}

.activity-hero-label i {
  width: 32px;
  height: 1px;
  background: #a3906f;
  font-style: normal;
}

.activity-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 1.5rem;
}

.activity-hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4038;
  margin: 0;
}

.activity-hero-line {
  display: block;
  width: 1px;
  height: 60px;
  background: #c9bba5;
  margin: 3rem auto 0;
}

.activity-sidenav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 40;
}

.activity-sidenav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  text-decoration: none;
}

.activity-sidenav .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #a3906f;
  background: transparent;
  flex-shrink: 0;
}

.activity-sidenav .label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4038;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.25s ease, opacity 0.25s ease;
}

.activity-sidenav a.active .dot {
  background: #8a6d4a;
  border-color: #8a6d4a;
}

.activity-sidenav a.active .label {
  max-width: 160px;
  opacity: 1;
}

.activity-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.activity-panel {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.activity-panel-reverse {
  flex-direction: row-reverse;
}

.activity-info {
  flex: 1;
}

.activity-counter {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #a3906f;
  margin-bottom: 0.75rem;
}

.activity-counter::before {
  content: '—';
  margin-right: 0.5rem;
}

.activity-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a3906f;
  margin-bottom: 0.75rem;
}

.activity-info h2 {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.activity-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4038;
  margin: 0 0 1.25rem;
}

.activity-media {
  position: relative;
  flex: 1;
  height: 460px;
  overflow: hidden;
}

.activity-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.activity-slide.active {
  opacity: 1;
}

.activity-media-counter {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 2;
}

.activity-media-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.activity-media-dots span {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.activity-media-dots span.active {
  background: #fff;
}

@media (max-width: 960px) {
  .activity-sidenav {
    display: none;
  }

  .activity-panel,
  .activity-panel-reverse {
    flex-direction: column;
  }

  .activity-media {
    width: 100%;
    height: 320px;
  }

  .activity-hero h1 {
    font-size: 2.1rem;
  }

  .activity-list {
    gap: 3.5rem;
    padding: 1rem 1.25rem 4rem;
  }
}

/* ---------- Room pages (Konaklama) ---------- */

.room-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  background: #000;
}

.room-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-hero-actions {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.room-hero-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
}

.room-layout {
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}

.room-content {
  flex: 1;
  min-width: 0;
}

.room-content h1 {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.room-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a4038;
  margin: 0 0 1.25rem;
}

.room-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.room-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.room-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.room-sidebar-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

.room-reserve-btn {
  display: block;
  text-align: center;
  background: #1b2a3a;
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-reserve-btn:hover {
  background: #2a3f56;
}

.room-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.room-fact-icon {
  font-size: 1.2rem;
}

.room-amenities {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.room-amenity {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
}

@media (max-width: 900px) {
  .room-layout {
    flex-direction: column;
    padding: 2rem 1.25rem 3rem;
  }

  .room-sidebar {
    position: static;
    width: 100%;
  }

  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Lezzet (Restoran hero slider) ---------- */

.lezzet-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
}

.lezzet-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: flex-end;
}

.lezzet-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
}

.lezzet-slide.active {
  opacity: 1;
}

.lezzet-slide-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 3rem;
  color: #fff;
}

.lezzet-slide-content h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.lezzet-slide-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.lezzet-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.lezzet-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.lezzet-dots span.active {
  background: #fff;
}

@media (max-width: 700px) {
  .lezzet-hero {
    height: 75vh;
    min-height: 420px;
  }

  .lezzet-slide-content {
    padding: 2rem 1.5rem;
  }

  .lezzet-slide-content h1 {
    font-size: 1.8rem;
  }
}

/* ---------- Intro block (Plaj, Havuz ve Aquapark) ---------- */

.intro-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.intro-block h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
}

.intro-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 1rem;
}


/* ---------- İletişim ---------- */

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 6rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid #a3906f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a6d4a;
  font-size: 1.1rem;
}

.contact-item-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a3906f;
  margin-bottom: 0.4rem;
}

.contact-item a {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1b2a3a;
  text-decoration: none;
}

.contact-item a:hover {
  color: #8a6d4a;
}

@media (max-width: 900px) {
  .contact-layout {
    padding: 0.5rem 1.25rem 4rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

/* ---------- WhatsApp floating button ---------- */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ---------- Galeri ---------- */

.gallery-tabs {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-tab {
  background: transparent;
  border: 1px solid #c9bba5;
  color: #4a4038;
  padding: 0.7rem 1.4rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-tab span {
  opacity: 0.6;
  margin-left: 0.25rem;
}

.gallery-tab:hover {
  border-color: #1b2a3a;
}

.gallery-tab.active {
  background: #1b2a3a;
  border-color: #1b2a3a;
  color: #fff;
}

.gallery {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e6dccb;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 10, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

@media (max-width: 700px) {
  .gallery-tabs {
    padding: 0 1.25rem 1.5rem;
  }

  .gallery-tab {
    padding: 0.6rem 1rem;
  }

  .gallery {
    padding: 0 1.25rem 4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}
