/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0d0d0d;
  --navy-light: #1e1e1e;
  --accent: #d4af37;
  --accent-light: #f0d27a;
  --text-dark: #2a2018;
  --text-light: #8a7a6d;
  --white: #ffffff;
  --off-white: #faf5ef;
  --border: #ece0d3;
  --shadow: 0 10px 30px rgba(13, 13, 13, 0.08);
  --radius: 14px;
  --topbar-h: 40px;
  --navbar-h: 78px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3 {
  font-family: 'Gloock', 'Marcellus', 'Poppins', serif;
  letter-spacing: 0.03em;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--navy);
  transform: translateY(-3px);
}
.cta-banner .btn-primary { border-color: var(--navy); color: var(--navy); }
.cta-banner .btn-primary:hover { background: var(--navy); color: var(--white); }
.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.section-eyebrow, .hero-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

/* ---------- Top Bar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.topbar {
  height: var(--topbar-h);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  opacity: 1;
  transition: background 0.35s ease, height 0.4s ease, opacity 0.3s ease, border-bottom-width 0.4s ease;
}
.site-header.scrolled .topbar {
  background: rgba(0, 0, 0, 0.94);
  height: 0;
  opacity: 0;
  border-bottom-width: 0;
  pointer-events: none;
}
.topbar-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  transition: color 0.25s ease, transform 0.25s ease;
}
.topbar-social svg { width: 14px; height: 14px; }
.topbar-social a:hover { color: var(--accent-light); transform: translateY(-2px); }

.topbar-contact { display: flex; align-items: center; gap: 24px; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}
.topbar-item svg { width: 13px; height: 13px; }
.topbar-item:hover { color: var(--accent-light); }
.topbar-mail { display: flex; }

.lang-switcher { display: flex; align-items: center; gap: 8px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.2); }
.lang-flag {
  display: flex;
  line-height: 0;
  opacity: 0.45;
  filter: grayscale(70%);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.lang-flag svg {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}
.lang-flag:hover { opacity: 0.85; transform: translateY(-1px); }
.lang-flag.active { opacity: 1; filter: none; cursor: default; }

/* ---------- Navbar ---------- */
.navbar {
  height: var(--navbar-h);
  background: rgba(13, 13, 13, 0.0);
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  height: 68px;
  backdrop-filter: blur(10px);
}
.navbar-inner {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}
.navbar-inner .logo {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: left 0.4s ease, transform 0.4s ease;
}
.navbar.scrolled .logo {
  left: 50%;
  transform: translate(-50%, -50%);
}
.logo-img {
  height: 60px;
  width: auto;
  transition: height 0.35s ease;
}
.navbar.scrolled .logo-img { height: 50px; }
.nav-mobile-logo { display: none; }

@media (min-width: 861px) {
  .nav-links { transition: opacity 0.3s ease; }
  .navbar.scrolled .nav-links {
    opacity: 0;
    pointer-events: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.tag {
  font-family: 'Gloock', 'Marcellus', 'Poppins', serif;
  padding: 6px 2px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.tag:hover, .tag.active {
  background: none;
  color: var(--white);
  border-bottom-color: var(--accent-light);
}
.tag-cta {
  background: none;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 4px;
}
.tag-cta:hover, .tag-cta.active {
  color: var(--white);
  border-bottom-color: var(--accent-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(13,13,13,0.3), rgba(13,13,13,0.3)),
              url('../images/banner2.jpg')
              center/cover no-repeat fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.3) 60%, rgba(13,13,13,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  color: var(--white);
}
.hero-eyebrow {
  color: var(--accent-light);
  animation: fadeUp 0.9s ease both;
}
.hero-script {
  font-family: 'Italianno', cursive;
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 1;
  color: var(--accent-light);
  margin: 4px 0 2px;
  animation: fadeUp 0.9s ease 0.08s both;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  animation: fadeUp 0.9s ease 0.15s both;
}
.hero h1 span { color: var(--accent-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 34px;
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.45s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-down {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  z-index: 2;
}
.scroll-down span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

/* ---------- About / Foto + Yazı ---------- */
.about {
  padding: 130px 32px;
  background: var(--off-white);
  overflow: hidden;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media { position: relative; }
.about-media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-media-square { aspect-ratio: 1 / 1; }
.about-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-media:hover .about-media-frame img { transform: scale(1.05); }

.about-media-logo {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.about-media-logo img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

/* ---------- İletişim ---------- */
.contact-info-list { margin: 28px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; fill: var(--accent); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 860px) {
  .contact-map { aspect-ratio: 16 / 10; }
}

.about-text h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}
.about-desc { color: var(--text-light); margin-bottom: 26px; }
.about-list { margin-bottom: 32px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--text-dark);
}
.check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent-light);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scroll reveal - geç ve yumuşak gelsin */
.reveal {
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); transition-delay: 0.25s; }
.reveal.in-view { opacity: 1; transform: translateX(0); }

/* ---------- Footer ---------- */
.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.65);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--accent);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-col ul li a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-brand p { font-size: 0.88rem; margin: 18px 0 22px; line-height: 1.7; }
.footer-logo { margin-bottom: 6px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s ease;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social a:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-contact svg { color: var(--accent-light); margin-top: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color 0.25s ease; }
.footer-legal a:hover { color: var(--accent-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-inner { gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .topbar-item span { display: none; }
  .topbar-mail { display: none; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(80vw, 320px);
    background: #000000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 40px;
    padding-top: 50px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-mobile-logo {
    display: block;
    height: 56px;
    width: auto;
    margin-bottom: 30px;
  }
  .nav-links .tag { width: 100%; padding: 14px 2px; font-size: 1.05rem; border-bottom-color: rgba(255,255,255,0.12); }
  .tag-cta { margin-left: 0; margin-top: 10px; }

  .menu-toggle { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about-media { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .topbar-inner { padding: 0 18px; }
  .topbar-social { gap: 12px; }
  .navbar-inner, .about, .footer-top, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .about { padding: 90px 20px; }
  .hero { background-attachment: scroll; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; padding-top: 60px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Btn variants ---------- */
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-danger {
  color: #d9534f;
  border-color: #d9534f;
  background: transparent;
}
.btn-danger:hover { background: #d9534f; color: var(--white); }

/* ---------- Sayfa Üst Banner (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(13,13,13,0.6), rgba(13,13,13,0.6)),
              url('../images/bahce.jpg')
              center/cover no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.75) 100%);
}
.page-hero-content { position: relative; z-index: 2; color: var(--white); padding: 0 24px; }
.page-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 8px 0 14px;
}
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: rgba(255,255,255,0.9); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent-light); }

/* ---------- Oda Kartları (grid) ---------- */
.rooms-teaser, .rooms-page {
  padding: 110px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.rooms-teaser-head, .rooms-page-head, .values-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.rooms-teaser-head h2, .rooms-page-head h2, .values-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.rooms-teaser-sub { color: var(--text-light); }
.rooms-teaser-cta { text-align: center; margin-top: 50px; }

/* ---------- Konfor Parallax Banner ---------- */
.parallax-banner {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(13,13,13,0.5), rgba(13,13,13,0.5)),
              url('../images/bahce.jpg')
              center/cover no-repeat fixed;
}
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  color: var(--white);
}
.parallax-content h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .parallax-content h2 { white-space: normal; }
}
.parallax-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .parallax-banner { background-attachment: scroll; height: 50vh; min-height: 320px; }
}

.room-carousel {
  position: relative;
  padding: 0 56px;
}
.room-grid {
  display: flex;
  align-items: stretch;
  justify-content: safe center;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.room-grid::-webkit-scrollbar { display: none; }
.carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}
.carousel-arrow:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: var(--navy);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.rooms-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.rooms-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.page-btn:disabled { opacity: 0.35; cursor: default; }

@media (max-width: 860px) {
  .rooms-page-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .room-card-body { padding: 14px; }
  .room-card-body h3 { font-size: 0.95rem; margin-bottom: 5px; }
  .room-card-body p { font-size: 0.8rem; margin-bottom: 8px; }
  .room-card-meta { margin-bottom: 10px; font-size: 0.76rem; }
  .room-card-footer { padding-top: 8px; }
  .room-card-footer-price { font-size: 0.95rem; }
}
.room-card {
  background: var(--white);
  border: 1px solid #d8c7a3;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s ease;
  flex: 0 0 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
}
.room-card:hover { box-shadow: 0 20px 40px rgba(13,13,13,0.14); }
.room-card-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.room-card:hover .room-card-media img { transform: scale(1.08); }
.room-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.room-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; }
.room-card-meta {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 18px;
}
.room-card-footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.room-card-footer-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.rooms-empty { text-align: center; color: var(--text-light); padding: 40px; grid-column: 1/-1; }

/* ---------- İstatistikler ---------- */
.stats { background: var(--navy); padding: 60px 32px; }
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--accent-light); }
.stat-item span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ---------- Değerler ---------- */
.values { padding: 110px 32px; background: #e9e9e7; }
.values-inner { max-width: 1280px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); }
.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.value-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; }
.value-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.value-card p { color: var(--text-light); font-size: 0.92rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  padding: 80px 32px;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.cta-inner p { color: rgba(13,13,13,0.75); margin-bottom: 28px; }

/* ---------- Oda Detay Sayfası ---------- */
.room-detail { padding: 90px 32px; max-width: 1280px; margin: 0 auto; }
.room-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
}
.room-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.room-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.room-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1;
  background: none;
}
.room-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-thumb.active { border-color: var(--accent); }

.room-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.room-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--off-white);
  padding: 10px 20px;
  margin-left: -20px;
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.room-price-tag span { font-size: 0.8rem; font-weight: 500; color: var(--text-light); }
.room-info-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
.room-info-meta div { text-align: left; }
.room-info-meta strong { display: block; font-size: 1.2rem; color: var(--navy); }
.room-info-meta span { font-size: 0.8rem; color: var(--text-light); }
.room-info .hero-actions { justify-content: flex-start; }
.room-not-found { text-align: center; padding: 80px 20px; }
.room-not-found p { color: var(--text-light); margin-bottom: 24px; font-size: 1.05rem; }

/* ---------- Özellik Grid'i (ikonlu, 2 sütun) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin: 6px 0 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.94rem;
}
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.feature-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 8px; user-select: none; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }


/* ============================================================
   ADMIN PANELİ
   ============================================================ */
.admin-body { background: var(--off-white); }

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  padding: 24px;
}
.admin-login[hidden] { display: none; }
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.admin-login-logo { justify-content: center; color: var(--navy); margin-bottom: 24px; }
.admin-login-card h1 { font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.admin-login-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 26px; }
.admin-login-card label {
  display: block;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
}
.admin-login-card input {
  width: 100%;
  margin-top: 8px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
}
.admin-login-card .btn { width: 100%; }
.admin-login-error { display: none; color: #d9534f !important; font-size: 0.82rem; margin: -12px 0 16px !important; }
.admin-login-error.show { display: block; }

.admin-dashboard { display: flex; min-height: 100vh; }
.admin-dashboard[hidden] { display: none; }
.admin-sidebar {
  width: 250px;
  background: var(--navy);
  color: var(--white);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.admin-sidebar-logo { margin-bottom: 40px; }
.admin-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.admin-nav-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.admin-nav-link:hover, .admin-nav-link.active { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-badge {
  margin-left: auto;
  background: #e2665f;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-logout { width: 100%; border-color: rgba(255,255,255,0.3); color: var(--white); }
.admin-logout:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.admin-main { flex: 1; padding: 48px; max-width: 1100px; }
.admin-view-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.admin-view-head h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.admin-view-head p { color: var(--text-light); font-size: 0.9rem; }

.admin-room-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.admin-room-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-room-card img { width: 100%; height: 160px; object-fit: cover; }
.room-featured-toggle {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 13, 13, 0.55);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.room-featured-toggle svg { width: 16px; height: 16px; }
.room-featured-toggle:hover { background: rgba(13, 13, 13, 0.75); color: var(--accent-light); }
.room-featured-toggle.active { background: var(--accent); color: var(--navy); }
.admin-room-card-body { padding: 18px 18px 6px; }
.admin-room-card-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.admin-room-card-body p { font-size: 0.82rem; color: var(--text-light); }
.admin-room-card-actions { display: flex; gap: 8px; padding: 18px; flex-wrap: wrap; }
.admin-room-card-actions .btn { padding: 8px 14px; font-size: 0.78rem; }

.admin-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 760px;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.admin-field {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.admin-field span { font-weight: 400; color: var(--text-light); font-size: 0.78rem; }
.admin-field input[type="text"],
.admin-field input[type="number"],
.admin-field input[type="file"],
.admin-field textarea {
  width: 100%;
  margin-top: 8px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.admin-field textarea { resize: vertical; }

.admin-photo-preview, .admin-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.admin-photo-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.admin-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-photo-thumb button {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(13,13,13,0.75);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}

.admin-hint { display: flex; align-items: flex-start; gap: 6px; font-size: 0.8rem; color: var(--text-light); margin: -6px 0 24px; }
.admin-hint svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.admin-form-actions { display: flex; gap: 14px; }

/* ---------- Responsive: yeni bileşenler ---------- */
@media (max-width: 1024px) {
  .room-detail-inner { gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 860px) {
  .room-detail-inner { grid-template-columns: 1fr; }
  .admin-dashboard { flex-direction: column; }
  .admin-sidebar { width: 100%; flex-direction: row; align-items: center; padding: 18px 20px; }
  .admin-sidebar-logo { margin-bottom: 0; margin-right: auto; }
  .admin-nav { flex-direction: row; flex: none; }
  .admin-logout { width: auto; margin-left: 12px; }
  .admin-main { padding: 28px 20px; }
}

/* ============================================================
   REZERVASYON & MÜSAİTLİK
   ============================================================ */
.availability-calendar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--navy);
}
.cal-header strong { font-size: 1rem; }
.cal-nav {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--navy);
  transition: all 0.2s ease;
}
.cal-nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: 8px;
  color: var(--navy);
}
.cal-empty { visibility: hidden; }
.cal-available { background: rgba(212, 175, 55, 0.12); }
.cal-occupied { background: #e2665f; color: var(--white); font-weight: 600; }
.cal-past { opacity: 0.35; }
.cal-today { box-shadow: inset 0 0 0 2px var(--accent); font-weight: 700; }
.cal-toggleable { cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.cal-toggleable:hover { transform: scale(1.12); box-shadow: 0 4px 10px rgba(0,0,0,0.18); z-index: 1; }
.cal-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.cal-legend span { display: flex; align-items: center; gap: 6px; }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cal-dot-available { background: rgba(212, 175, 55, 0.5); }
.cal-dot-occupied { background: #e2665f; }

.cal-range-selected { background: var(--navy); color: var(--white); font-weight: 700; }
.cal-in-range { background: rgba(13, 13, 13, 0.14); }

.date-range-boxes {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 16px;
}
.date-box {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--off-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.date-box.active { border-color: var(--accent); background: rgba(212, 175, 55, 0.08); }
.date-box-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.date-box-value { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.date-box-arrow { color: var(--text-light); font-size: 1.1rem; flex-shrink: 0; }

.reservation-message {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin: -8px 0 20px;
}
.reservation-message.show { display: block; }
.reservation-message.success { background: rgba(212, 175, 55, 0.15); color: var(--navy); }
.reservation-message.error { background: rgba(226, 102, 95, 0.12); color: #c0392b; }

/* ---------- Admin: Rezervasyonlar ---------- */
.res-room-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.res-room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 24px;
}
.res-room-head {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  user-select: none;
}
.res-room-head h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.res-room-head p { font-size: 0.8rem; color: var(--text-light); }
.res-room-head > div:nth-child(2) { flex: 1; }
.res-room-caret { width: 18px; height: 18px; color: var(--text-light); flex-shrink: 0; transition: transform 0.2s ease; }
.res-room-head.open .res-room-caret { transform: rotate(180deg); }
.res-room-body { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.res-rooms-title { font-size: 1.15rem; color: var(--navy); margin-bottom: 18px; }

.occupancy-ring {
  --pct: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--pct) * 1%), var(--border) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.occupancy-ring::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--white);
}
.occupancy-ring span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
}

.res-room-card .availability-calendar { box-shadow: none; padding: 16px; margin-bottom: 18px; }

.res-create-btn { width: 100%; margin-bottom: 22px; }

/* ---------- Rezervasyon Pop-up (Modal) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.modal-box h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 20px; padding-right: 20px; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
}
.modal-close:hover { color: var(--navy); }

.res-list h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 10px; }
.res-items { display: flex; flex-direction: column; gap: 8px; }
.res-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.8rem;
  border-left: 3px solid transparent;
}
.res-item-dates { color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.res-item-room {
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 9px;
  border-radius: 50px;
}
.all-reservations-section { margin-bottom: 44px; }
.all-reservations-section .res-items { max-width: 640px; }
.res-item-guest { color: var(--text-light); }
.res-item-guest a { color: var(--navy); font-weight: 600; }
.res-item-guest a:hover { color: var(--accent); }
.res-item-actions { display: flex; gap: 4px; flex-shrink: 0; }
.res-item-actions button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 4px;
}
.res-item-actions svg { width: 16px; height: 16px; }
.res-delete { color: #c0392b; }
.res-empty { color: var(--text-light); font-size: 0.85rem; padding: 10px 0; }

/* ---------- Bekleyen Rezervasyon Talepleri ---------- */
.pending-requests-section { margin-bottom: 44px; }
.pending-requests-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.pending-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pending-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.pending-card-top { display: flex; gap: 14px; align-items: flex-start; }
.pending-card-photo {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-alt, #f2ede2);
}
.pending-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.pending-card-main { min-width: 0; flex: 1; }
.pending-card-room {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.pending-card-guest { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-top: 2px; }
.pending-card-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
}
.pending-card-phone svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }
.pending-card-phone:hover { color: var(--accent); }
.pending-card-dates {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.pending-card-dates svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }
.pending-card-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; }
.pending-card-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
.pending-card-actions .btn { flex: 1; }

@media (max-width: 480px) {
  .pending-card-photo { width: 56px; height: 56px; }
  .pending-card-guest { font-size: 1rem; }
  .pending-card-phone { font-size: 1rem; }
  .pending-card-dates { font-size: 0.88rem; }
}

@media (max-width: 640px) {
  .rooms-teaser, .rooms-page, .values, .room-detail { padding: 70px 20px; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-sidebar { flex-wrap: wrap; gap: 10px; }
  .admin-nav { flex-wrap: wrap; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .room-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }

  .room-carousel { padding: 0 6px; }
  .room-card { flex-basis: 80vw; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
  .carousel-prev { left: -4px; }
  .carousel-next { right: -4px; }

  .feature-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox { padding: 20px; }
}
