/* Sahil'de Restaurant Bar Website */

:root {
  --navy: #08263a;
  --navy-soft: #103d57;
  --sea: #0f6f92;
  --sky: #d7f0f2;
  --cream: #fff8ec;
  --paper: #fffdf7;
  --gold: #d7a84a;
  --terracotta: #c95d34;
  --text: #173044;
  --muted: #647786;
  --border: rgba(8, 38, 58, 0.12);
  --shadow: 0 24px 70px rgba(8, 38, 58, 0.18);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  width: min(calc(100% - 36px), 1180px);
  margin-inline: auto;
  padding: 12px 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 253, 247, 0.78);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(8, 38, 58, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 4px;
  box-shadow: 0 10px 28px rgba(8, 38, 58, 0.12);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 5px;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--sea);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-menu a {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
  transition: background 0.22s ease, color 0.22s ease;
}

.nav-menu a:hover {
  background: rgba(15, 111, 146, 0.10);
  color: var(--sea);
}

.nav-menu a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  margin: 4px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 38, 58, 0.84), rgba(8, 38, 58, 0.36)),
    url("assets/hero-meze.jpg") center / cover no-repeat;
  transform: scale(1.03);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(8, 38, 58, 0.95));
  z-index: -1;
}

.hero-content {
  padding-block: clamp(140px, 20vw, 230px) clamp(80px, 10vw, 120px);
  max-width: 820px;
  margin-inline: max(16px, calc((100vw - var(--container)) / 2)) auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.5vw, 0.86rem);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  color: inherit;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.2rem;
  color: var(--navy);
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
  margin: 24px 0 0;
}

.hero-actions,
.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 35px rgba(215, 168, 74, 0.28);
}

.btn-secondary {
  background: white;
  color: var(--navy);
}

.btn-outline {
  border-color: var(--border);
  color: var(--navy);
  background: transparent;
}

.btn-whatsapp {
  background: #1f9d55;
  color: white;
}

.hero-note {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.intro-strip {
  background: var(--navy);
  color: white;
  padding-block: 24px;
}

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

.strip-grid div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  font-size: 1.05rem;
}

.strip-grid span {
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
}

.section {
  padding-block: clamp(72px, 10vw, 140px);
}

.about-grid,
.reservation-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 620px;
}

.about-images img {
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-main {
  width: min(82%, 560px);
  height: 560px;
}

.image-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 300px);
  height: 330px;
  border: 8px solid var(--paper);
}

.section-copy p:not(.eyebrow),
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p {
  margin: 20px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 900;
  color: var(--sea);
}

.menu-section {
  background:
    radial-gradient(circle at top left, rgba(15, 111, 146, 0.11), transparent 35%),
    var(--cream);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.menu-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(8, 38, 58, 0.08);
}

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

.menu-card div {
  padding: 24px;
}

.menu-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

.gallery-grid a {
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(8, 38, 58, 0.12);
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(4) {
  grid-column: span 6;
}

.gallery-grid a:nth-child(2),
.gallery-grid a:nth-child(3),
.gallery-grid a:nth-child(5),
.gallery-grid a:nth-child(6) {
  grid-column: span 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

.reservation-section {
  background: var(--cream);
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reservation-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(15, 111, 146, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-message {
  margin: 0;
  color: var(--sea);
  font-weight: 800;
}

.location-grid {
  align-items: stretch;
}

.info-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.info-list p {
  margin: 0;
  color: var(--muted);
}

.info-list strong {
  color: var(--navy);
}

.map-card {
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: #061c2a;
  color: white;
  padding-block: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.site-footer img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.site-footer p {
  margin: 10px 0 0;
}

.site-footer small {
  color: rgba(255,255,255,0.62);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  font-weight: 800;
  color: var(--gold);
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 24px;
    align-items: center;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-menu {
    display: none;
    position: absolute;
    inset: 78px 0 auto;
    margin: 8px;
    padding: 18px;
    border-radius: 22px;
    background: white;
    box-shadow: 0 20px 50px rgba(8, 38, 58, 0.18);
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .nav-menu {
    display: flex;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-content {
    margin-inline: auto;
  }

  .strip-grid,
  .about-grid,
  .reservation-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    min-height: auto;
  }

  .image-main {
    width: 100%;
    height: 430px;
  }

  .image-card {
    position: relative;
    width: 70%;
    height: 240px;
    margin: -100px 0 0 auto;
  }

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

  .gallery-grid a,
  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(2),
  .gallery-grid a:nth-child(3),
  .gallery-grid a:nth-child(4),
  .gallery-grid a:nth-child(5),
  .gallery-grid a:nth-child(6) {
    grid-column: span 1;
    min-height: 220px;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92svh;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }
}
@media (max-width: 560px) {
  .brand span {
    font-size: 1rem;
  }
}
/* Language Switcher */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
}

.language-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 10px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.language-btn:hover {
  transform: translateY(-1px);
}

.language-btn.is-active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

@media (max-width: 860px) {
  .language-switcher {
    justify-content: center;
    padding-left: 0;
    padding-top: 8px;
  }

  .language-btn {
    flex: 1;
  }
}
.btn-directions {
  background: linear-gradient(135deg, var(--sea), var(--navy-soft));
  color: white;
  border: 0;
  box-shadow: 0 14px 34px rgba(15, 111, 146, 0.28);
}

.btn-directions::before {
  content: "📍";
  margin-right: 8px;
}

.btn-directions:hover {
  box-shadow: 0 18px 42px rgba(15, 111, 146, 0.36);
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #fd1d1d, #f77737);
  color: white;
  border: 0;
  box-shadow: 0 14px 34px rgba(193, 53, 132, 0.28);
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #c13584, #e1306c, #fd1d1d, #f77737);
  color: white;
  border: 0;
  box-shadow: 0 14px 34px rgba(193, 53, 132, 0.28);
  gap: 10px;
}

.btn-instagram:hover {
  box-shadow: 0 18px 42px rgba(193, 53, 132, 0.38);
}

.instagram-icon {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px;
  flex: 0 0 auto;
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  right: 2px;
  top: 2px;
  background: currentColor;
  border-radius: 50%;
}

.btn-instagram:hover {
  box-shadow: 0 18px 42px rgba(193, 53, 132, 0.38);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

#hakkimizda,
#lezzetler,
#galeri,
#rezervasyon,
#iletisim {
  scroll-margin-top: 90px;
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 170px;
  }

  #hakkimizda,
  #lezzetler,
  #galeri,
  #rezervasyon,
  #iletisim {
    scroll-margin-top: 170px;
  }
}
.menu-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f9f3e7 0%, #ffffff 45%, #f7fbfd 100%);
}

.menu-hero {
  padding: 42px 6vw 28px;
  background: linear-gradient(135deg, #0f3044, #1f5d73);
  color: white;
}

.menu-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #123246;
  font-weight: 800;
  text-decoration: none;
}

.menu-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: white;
}

.menu-hero p {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.menu-section {
  padding-top: 42px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 179, 64, 0.28);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(18, 46, 64, 0.08);
}

.menu-card h3 {
  margin: 0 0 18px;
  color: #0f3044;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(15, 48, 68, 0.18);
}

.menu-row:last-child {
  border-bottom: 0;
}

.menu-row span {
  color: #16384c;
  font-weight: 700;
}

.menu-row small {
  display: block;
  margin-top: 3px;
  color: #667985;
  font-size: 0.82rem;
  font-weight: 500;
}

.menu-row strong {
  flex: 0 0 auto;
  color: #d9a629;
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-note {
  margin-top: 14px;
  color: #667985;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .menu-hero {
    padding: 28px 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .menu-card {
    padding: 20px;
    border-radius: 22px;
  }

  .menu-row {
    gap: 12px;
  }
}
.reviews {
  padding: 95px 0;
  background: #f5f2ea;
}

.reviews .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.reviews .section-heading span {
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #0f8aa8;
  font-size: 0.78rem;
  font-weight: 700;
}

.reviews .section-heading h2 {
  margin-top: 14px;
}

.reviews-slider {
  position: relative;
  margin-top: 52px;
  padding: 0 64px;
   overflow: hidden;
}

.reviews-grid {
  display: flex;
  gap: 28px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 56px) / 3);
  scroll-snap-align: start;
  position: relative;
  background: #f8fafc;
  min-height: 300px;
  padding: 44px 42px 38px;
  border-radius: 0;
  border: 1px solid rgba(8, 38, 58, 0.05);
  box-shadow: 0 22px 55px rgba(8, 38, 58, 0.08);
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 22px;
  left: 34px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(15, 138, 168, 0.14);
}

.review-stars {
  position: relative;
  color: #d6aa38;
  letter-spacing: 5px;
  font-size: 1rem;
  margin-bottom: 28px;
  z-index: 1;
}

.review-card p {
  position: relative;
  z-index: 1;
  color: #102c3c;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 34px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0f8aa8;
  color: white;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.review-author h3 {
  margin: 0;
  color: #08263a;
  font-size: 0.92rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.review-author span {
  display: block;
  margin-top: 6px;
  color: #81909b;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #08263a;
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(8, 38, 58, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-arrow:hover {
  background: #0f8aa8;
  transform: translateY(-50%) scale(1.06);
}

.review-prev {
  left: 8px;
}

.review-next {
  right: 8px;
}
.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

@media (max-width: 980px) {
  .reviews-slider {
    padding: 0 54px;
  }

  .review-card {
    flex-basis: 78%;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .reviews {
    padding: 75px 0;
  }

  .reviews-slider {
    padding: 0 44px;
    margin-top: 36px;
  }

  .reviews-grid {
    gap: 22px;
  }

  .review-card {
    flex-basis: 100%;
    padding: 36px 26px 30px;
  }

  .review-card p {
    font-size: 1rem;
  }

  .review-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .review-prev {
    left: 2px;
  }

  .review-next {
    right: 2px;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 10000;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: white;
}

@media (max-width: 600px) {
  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    max-width: 96vw;
    max-height: 86vh;
    border-radius: 10px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 32px;
  }
}