/* =====================================================
   Çamlık Bahçe Restaurant - Custom Styles
   Bootstrap 5.3 üzerine özel tasarım
   ===================================================== */

/* ===================== */
/* CSS Variables          */
/* ===================== */
:root {
  --color-primary: #2c5530;
  --color-primary-light: #3a7340;
  --color-primary-dark: #1e3b22;
  --color-secondary: #3a7340;
  --color-secondary-light: #4a8f52;
  --color-gold: #5cab65;
  --color-dark: #1a1a1a;
  --color-darker: #111111;
  --color-light: #f8f5f0;
  --color-cream: #f3ede4;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-border: #e5e0d8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  --transition: all 0.4s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===================== */
/* Section Styles        */
/* ===================== */
.section {
  padding: 100px 0;
}

.section-light {
  background-color: var(--color-light);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

.section-desc.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  margin: 20px 0 30px;
}

.section-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== */
/* Navbar                */
/* ===================== */
.navbar {
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
  z-index: 1050;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 50px;
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 40px;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-gold);
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  transform: scaleX(1);
}

/* Reservation Button */
.btn-reservation {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  align-items: center;
}

.btn-reservation:hover {
  background: var(--color-secondary-light);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 8px;
  outline: none !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navbar-toggler-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition);
}

/* ===================== */
/* Hero Slider           */
/* ===================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

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

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-content .hero-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-content .hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-content .hero-title span {
  font-style: italic;
  color: var(--color-gold);
}

.hero-content .hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-content .btn-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-desc,
.swiper-slide-active .btn-hero {
  opacity: 0;
  animation-play-state: running;
}

/* Hero Buttons */
.btn-hero {
  display: inline-block;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
  transition: var(--transition);
}

.btn-hero:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-hero-outline {
  display: inline-block;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Slider Pagination */
.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--color-secondary);
}

/* Slider scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.hero-scroll .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: inline-block;
  position: relative;
}

.hero-scroll .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-white);
  border-radius: 4px;
  animation: scrollDown 1.5s ease infinite;
}

/* ===================== */
/* About Section         */
/* ===================== */
.about-img-wrapper {
  position: relative;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--color-secondary);
  z-index: -1;
}

.about-experience {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: var(--color-primary);
  color: var(--color-white);
  margin-top: 30px;
}

.about-experience .number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.about-experience .text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ===================== */
/* Menu Section          */
/* ===================== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.menu-tab {
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-item {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.menu-item:hover {
  background: var(--color-light);
  padding-left: 15px;
  padding-right: 15px;
}

.menu-item-img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-content {
  flex: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--color-border);
  margin-bottom: 6px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===================== */
/* Gallery Section       */
/* ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 85, 48, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 32px;
  color: var(--color-white);
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Gallery Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--color-secondary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  color: var(--color-white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  transition: var(--transition);
}

.lightbox-nav:hover {
  color: var(--color-secondary);
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

/* Gallery Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-tab {
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 2px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ===================== */
/* Contact Section       */
/* ===================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-text h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-form .form-control {
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.contact-form .form-control::placeholder {
  color: var(--color-text-light);
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 14px 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

/* Map */
.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(30%);
}

/* ===================== */
/* CTA Section           */
/* ===================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 85, 48, 0.88);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 42px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 45px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  border: none;
  transition: var(--transition);
}

.btn-cta:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===================== */
/* Page Header           */
/* ===================== */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
}

.page-header .breadcrumb {
  justify-content: center;
  margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a:hover {
  color: var(--color-gold);
}

.page-header .breadcrumb-item.active {
  color: var(--color-gold);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ===================== */
/* Values / Features     */
/* ===================== */
.feature-card {
  text-align: center;
  padding: 40px 30px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 28px;
}

.feature-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-light);
}

/* ===================== */
/* Footer                */
/* ===================== */
.site-footer {
  background: var(--color-darker);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-secondary);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
}

.footer-contact li i {
  color: var(--color-secondary);
  margin-top: 4px;
  min-width: 16px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a:hover {
  color: var(--color-gold);
}

.footer-hours {
  list-style: none;
  padding: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.btn-reservation-footer {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-secondary);
  border: none;
  transition: var(--transition);
}

.btn-reservation-footer:hover {
  background: var(--color-secondary-light);
  color: var(--color-white);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--color-gold);
}

/* ===================== */
/* Scroll to Top         */
/* ===================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

/* ===================== */
/* Animations            */
/* ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ===================== */
/* Responsive            */
/* ===================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(26, 26, 26, 0.98);
    padding: 20px 30px;
    margin-top: 15px;
  }

  .navbar .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .nav-link::after {
    display: none;
  }

  .hero-content .hero-title {
    font-size: 40px;
  }

  .hero-content .hero-subtitle {
    font-size: 12px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .page-header {
    padding: 150px 0 80px;
  }

  .page-header h1 {
    font-size: 38px;
  }

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

  .gallery-item.tall {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .gallery-item.wide {
    grid-column: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 767.98px) {
  .hero-content .hero-title {
    font-size: 32px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 32px;
  }

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

  .menu-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu-item-header {
    flex-direction: column;
    align-items: center;
  }

  .menu-item-dots {
    display: none;
  }

  .cta-section {
    background-attachment: scroll;
  }

  .footer-links {
    justify-content: center;
    margin-top: 10px;
  }

  .lightbox-nav {
    font-size: 24px;
    padding: 10px;
  }
}

@media (max-width: 575.98px) {
  .hero-content .hero-title {
    font-size: 28px;
  }

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

  .menu-tabs,
  .gallery-tabs {
    gap: 6px;
  }

  .menu-tab,
  .gallery-tab {
    padding: 8px 16px;
    font-size: 11px;
  }
}
