@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
  --color-bg: #010204;
  --color-light: #f9dfa3;
  --color-accent: #f99900;
  --color-accent-strong: #db1e0b;
  --color-text: #f5f5f5;
  --color-muted: #b0b0b0;
  --radius: 8px;
  --font-logo: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151515 0, var(--color-bg) 45%);
  color: var(--color-text);
  line-height: 1.5;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background: rgba(1, 2, 4, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 0 0 auto;
}

.header-right {
  flex: 0 0 auto;
  margin-left: auto;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-light);
  font-size: 1.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.header-right {
  gap: 1.25rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-link-primary {
  color: var(--color-accent-strong);
}

.header-location {
  color: var(--color-text);
}

.icon-button {
  background: transparent;
  border: 1px solid rgba(249, 223, 163, 0.28);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-light);
}

.icon-menu {
  position: relative;
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.icon-menu::before,
.icon-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.icon-menu::before {
  top: -4px;
}

.icon-menu::after {
  top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}


.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-strong), var(--color-accent));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border: 1px solid rgba(249, 223, 163, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn:hover {
  filter: brightness(1.05);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #111;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-center h1 {
  font-family: var(--font-logo);
  font-size: clamp(2.8rem, 4vw + 1rem, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-center-subtitle {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-light);
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-light);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

.scroll-line {
  width: 38px;
  height: 1px;
  background: rgba(249, 223, 163, 0.7);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.hero-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(249, 223, 163, 0.7);
  background: transparent;
}

.hero-dots .dot.is-active {
  background: var(--color-accent-strong);
  border-color: var(--color-accent-strong);
}


.intro-hero {
  padding: 5rem 0 6rem;
  background: #050506;
}

.intro-hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.intro-hero-title {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-hero-cta {
  min-width: 200px;
  background: #c82126;
  color: #fff;
}

.intro-hero-hours {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.intro-hero-hours-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.intro-hero-hours-value {
  margin-top: 0.25rem;
  color: var(--color-light);
  font-size: 1.1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-muted);
}


.feature-dishes {
  background: #050506;
  padding: 4rem 0;
}

.feature-dish-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.feature-dish-row:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.feature-dish-media {
  min-height: 500px;
  background: rgba(1, 2, 4, 0.96);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-dish-content {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-dish-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feature-dish-text {
  max-width: none;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .feature-dish-row,
  .feature-dish-row:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-dish-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.signature {
  padding: 3rem 0;
  background: #050506;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.signature-card {
  padding: 1.1rem 1.2rem 1rem;
  border-radius: var(--radius);
  background: radial-gradient(circle at top, rgba(249, 153, 0, 0.12), #050506 55%);
  border: 1px solid rgba(249, 223, 163, 0.22);
}

.signature-card h3 {
  margin: 0.6rem 0 0.25rem;
  color: var(--color-light);
}

.signature-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.signature-media {
  border-radius: calc(var(--radius) - 2px);
  background: rgba(1, 2, 4, 0.96);
  border: 1px dashed rgba(249, 223, 163, 0.35);
  padding: 1.75rem 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu {
  padding: 3rem 0;
  background: radial-gradient(circle at top, rgba(219, 30, 11, 0.18), #050506 45%);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.menu-group {
  padding: 1rem 1.1rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(1, 2, 4, 0.95);
  border: 1px solid rgba(249, 223, 163, 0.2);
}

.menu-group h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.menu-group ul {
  list-style: none;
}

.reviews {
  padding: 5rem 0;
  background: radial-gradient(circle at top, rgba(249, 223, 163, 0.08), #020203 55%);
}

.review-slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2rem;
}

.review-track {
  position: relative;
  min-height: 120px;
}

.review-slide {
  text-align: center;
  padding: 0 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  position: absolute;
  inset: 0;
}

.review-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}

.review-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(249, 223, 163, 0.55);
  color: var(--color-accent);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
}

.review-arrow:hover {
  background: rgba(249, 223, 163, 0.14);
}

.review-text {
  color: var(--color-muted);
  font-size: 0.98rem;
  max-width: 36rem;
  margin: 0 auto;
}

.review-author {
  margin-top: 1.1rem;
  font-weight: 600;
  color: var(--color-light);
  font-size: 0.92rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.review-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(249, 223, 163, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.review-dot.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.menu-group li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.18rem 0;
}

.menu-group .price {
  color: var(--color-light);
}

.experience {
  padding: 3rem 0;
}

.experience-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(249, 223, 163, 0.25);
}

.map-wrapper iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.features {
  margin-top: 1rem;
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--color-muted);
}

.experience-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.badge {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(249, 153, 0, 0.12);
  border: 1px solid rgba(249, 153, 0, 0.5);
  text-align: center;
  font-size: 0.85rem;
}

.gallery {
  padding: 3rem 0;
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}

.placeholder {
  border: 1px dashed rgba(249, 223, 163, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact {
  padding: 3rem 0 3.5rem;
  background: #050506;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr);
}

.contact-info p {
  margin: 0.4rem 0;
}

.contact-phones a {
  color: var(--color-accent);
}

.hours ul {
  list-style: none;
  margin-top: 0.5rem;
}

.hours li {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.contact-simple {
  padding: 5.5rem 0 6rem;
  background: #050506;
}

.contact-simple-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-simple-title {
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.contact-simple-address {
  font-size: 1.05rem;
  color: var(--color-light);
  line-height: 1.6;
}

.contact-simple-hours {
  margin-top: 2.75rem;
}

.contact-simple-hours-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-simple-hours-value {
  margin-top: 1.1rem;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  color: var(--color-light);
}

.location-map {
  background: #050506;
  padding: 4rem 0;
}

.location-map-inner {
  position: relative;
  height: 320px;
  max-height: 55vh;
  overflow: hidden;
}

.location-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.2);
}

.location-map-button {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.55rem;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
  border-radius: 999px;
  border: 1px solid rgba(249, 223, 163, 0.7);
}

.location-map-button:hover {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.65));
}



.brand-strip {
  background: #050506;
  border-top: 1px solid rgba(249, 223, 163, 0.18);
  padding-top: 3rem;
}

.brand-strip-main {
  position: relative;
  padding: 3rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.brand-strip-logo .logo-large {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.brand-strip-social {
  display: flex;
  gap: 1.5rem;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(249, 223, 163, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  text-decoration: none;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .brand-strip-main {
    padding: 2rem 0 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .brand-strip-reserve {
    position: static;
    margin: 0 auto;
    width: 100px;
    height: 100px;
  }

  .brand-strip-social {
    gap: 1rem;
    order: -1;
  }

  .reserve-text-curved {
    font-size: 11px;
    letter-spacing: 1.3px;
  }

  .brand-strip-logo {
    order: -2;
  }
}

.social-circle span {
  transform: translateY(1px);
}

.brand-strip-reserve {
  position: absolute;
  right: 7%;
  top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #c82126;
  color: #fff;
  text-decoration: none;
}

.reserve-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.reserve-text-curved {
  fill: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reserve-bell {
  position: relative;
  z-index: 1;
  font-size: 2rem;
}

.menu-page {
  background: #050506;
}

.menu-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(249, 223, 163, 0.16);
}

.menu-hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.menu-hero-title {
  margin-top: 0.3rem;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-hero-subtitle {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.menu-nav {
  position: sticky;
  top: 0;
  background-color: var(--color-dark);
  border-bottom: 1px solid rgba(249, 223, 163, 0.16);
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0 1rem;
}

.menu-nav-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 223, 163, 0.3);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-light);
  text-decoration: none;
}

.menu-nav-pill:hover {
  border-color: rgba(249, 223, 163, 0.8);
}

.menu-category {
  padding: 2.25rem 0 0.5rem;
}

.menu-category-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.menu-items-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #111111;
  border-radius: 0.9rem;
  border: 1px solid rgba(249, 223, 163, 0.12);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.menu-item:hover {
  border-color: rgba(249, 153, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 153, 0, 0.15);
}

.menu-item-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.menu-item-image {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 2px solid rgba(249, 223, 163, 0.2);
}

.menu-item-name {
  font-weight: 500;
  flex: 1;
}

.menu-item-price {
  color: var(--color-accent-strong);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .menu-hero {
    padding-top: 2rem;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    padding: 0.75rem;
  }

  .menu-item-image {
    width: 50px;
    height: 50px;
  }

  .menu-item-name {
    font-size: 0.85rem;
  }

  .menu-item-price {
    font-size: 0.9rem;
  }
}



.brand-strip-bottom {
  border-top: 1px solid rgba(249, 223, 163, 0.16);
  padding: 0.9rem 0 1.1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(249, 223, 163, 0.18);
  padding: 1rem 0;
  background: #010204;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.footer-inner {
  text-align: center;
}

/* Rezervasyon Modal */
.reservation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.reservation-modal.is-active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-light);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.modal-close:hover {
  transform: scale(1.1);
  color: var(--color-accent-strong);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.reservation-calendar {
  color: var(--color-light);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.calendar-month {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.calendar-prev,
.calendar-next {
  background: transparent;
  border: none;
  color: var(--color-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.calendar-prev:hover,
.calendar-next:hover {
  color: var(--color-accent-strong);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-muted);
  padding: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.calendar-date {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  color: var(--color-light);
}

.calendar-date:not(.disabled):not(.empty):hover {
  background: rgba(249, 223, 163, 0.1);
  transform: scale(1.05);
}

.calendar-date.selected {
  background: var(--color-accent-strong);
  color: #fff;
  font-weight: 700;
}

.calendar-date.disabled {
  color: #444;
  cursor: not-allowed;
}

.calendar-date.empty {
  cursor: default;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-title {
  font-family: var(--font-logo);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #2a2a2a;
  border: 1px solid rgba(249, 223, 163, 0.2);
  border-radius: 8px;
  color: var(--color-light);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f9dfa3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 3rem;
}

.form-select:hover,
.form-select:focus {
  border-color: var(--color-accent-strong);
  outline: none;
}

.reservation-submit {
  margin-top: 2rem;
  padding: 1.2rem 2rem;
  background: var(--color-accent-strong);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.reservation-submit:hover {
  background: #a01a15;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 33, 38, 0.4);
}

.submit-icon {
  font-size: 1.5rem;
}


@media (max-width: 768px) {
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .reservation-title {
    font-size: 2rem;
  }

  .header-inner {
    padding: 0 0.5rem;
  }

  .header-right {
    gap: 0.5rem;
    font-size: 0.7rem;
  }

  .hero-bottom {
    padding: 0 1.25rem;
  }

  .scroll-indicator {
    font-size: 0.7rem;
  }

  .brand-strip-reserve {
    width: 80px;
    height: 80px;
  }

  .reserve-text-curved {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .brand-strip-reserve {
    width: 95px;
    height: 95px;
  }

  .reserve-text-curved {
    font-size: 10.5px;
    letter-spacing: 1.1px;
  }

  .brand-strip-logo .logo-large {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .brand-strip-reserve {
    width: 95px;
    height: 95px;
  }

  .reserve-text-curved {
    font-size: 10.5px;
    letter-spacing: 1.1px;
  }

  .brand-strip-main {
    padding: 1.5rem 0 1.5rem;
    gap: 1.2rem;
  }
}

