/* Gulz Deli – Global Styles
   Light, warm, minimal, and premium */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  /* Brand Primary Color - Premium Light Blue/Teal from Logo (#D6E3E6 -> enhanced for UI) */
  --brand-primary: #D98FBE;
  --brand-primary-light: #B8DCE8;
  --brand-primary-dark: #6BA8C4;
  --brand-primary-soft: rgba(143, 196, 217, 0.18);
  --brand-primary-softest: rgba(143, 196, 217, 0.1);
  --brand-primary-overlay: rgba(143, 196, 217, 0.88);
  --brand-primary-accent: #5D9BB8;
  
  /* Background Colors */
  --bg: #faf5ef;
  --bg-alt: #f4ece2;
  --surface: #ffffff;
  
  /* Accent Colors */
  --accent: #8FC4D9;
  --accent-soft: rgba(143, 196, 217, 0.15);
  --accent-strong: #6BA8C4;
  --accent-green: #7FA88F;
  
  /* Text Colors */
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #8a8a8a;
  
  /* Borders & Shadows */
  --border-subtle: rgba(143, 196, 217, 0.18);
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 28px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 14px 40px rgba(0, 0, 0, 0.1);
  --shadow-brand: 0 8px 24px rgba(143, 196, 217, 0.3);
  --shadow-brand-hover: 0 12px 32px rgba(143, 196, 217, 0.35);
  
  /* Border Radius */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  
  /* Spacing */
  --header-height: 85px;
  --section-padding: 7rem;
  --section-padding-mobile: 5rem;
  --card-padding: 2.5rem;
  
  /* Transitions */
  --transition-fast: 180ms ease-out;
  --transition-med: 250ms ease;
  --transition-slow: 350ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #faf9f6;
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.section {
  padding: var(--section-padding-mobile) 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8f6f2 0%, #f5f3ef 100%);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary-soft), transparent);
}

@media (min-width: 768px) {
  .section {
    padding: var(--section-padding) 0;
  }
}

.section-header {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.9rem, 1.5rem + 0.8vw, 2.35rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.two-column {
  display: grid;
  gap: 2.2rem;
}

.two-column.align-center {
  align-items: center;
}

.stacked > * + * {
  margin-top: 0.9rem;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

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

  .two-column {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

/* Typography */

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 1.6rem + 1.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.4rem, 1.3rem + 0.6vw, 1.8rem);
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 0.7rem;
  font-size: 0.98rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--brand-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.inline-link:hover {
  color: var(--brand-primary-dark);
}

.inline-link::after {
  content: "↗";
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
}

.inline-link:hover::after {
  transform: translateY(-1px);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.99),
    rgba(250, 248, 244, 0.97)
  );
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.brand:hover {
  opacity: 0.85;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-fast);
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 40%;
  background: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-brand);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  padding: 0.45rem 0.95rem;
  font-size: 0.86rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast),
    box-shadow var(--transition-fast), transform var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(201, 123, 62, 0.18);
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: #7a5c3c;
  position: relative;
}

.nav-toggle span + span {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: rgba(250, 245, 239, 0.99);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 0.85rem 1.4rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med), transform var(--transition-med);
  }

  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-med), color var(--transition-med),
    box-shadow var(--transition-med), transform var(--transition-med),
    border-color var(--transition-med);
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-brand);
  font-weight: 600;
  border: none;
  padding: 1.1rem 2.2rem;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn-primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand-hover);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--brand-primary-soft);
  color: var(--brand-primary);
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-ghost:hover {
  background: var(--brand-primary-softest);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}

/* Hero - Premium Version */

.hero-premium {
  position: relative;
  padding: 8rem 0 7rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to bottom,
      rgba(143, 196, 217, 0.82),
      rgba(143, 196, 217, 0.72),
      rgba(107, 168, 196, 0.65)
    ),
    url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(143, 196, 217, 0.4),
    transparent 70%
  );
}

.hero-premium .hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-premium .hero-copy h1 {
  font-size: clamp(3.2rem, 2.5rem + 2.5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-premium .hero-subtitle {
  font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.5rem);
  color: rgba(255, 255, 255, 0.98);
  max-width: 100%;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-premium .hero-ctas {
  margin: 2.5rem 0 0;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-premium {
    min-height: 90vh;
    padding: 10rem 0 8rem;
  }
  
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Menu highlights on home */

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

.menu-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

.menu-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.menu-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary-soft);
  box-shadow: var(--shadow-medium);
  background: #fff;
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.section-cta {
  margin-top: 2.3rem;
  text-align: center;
}

/* Features */

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-primary-soft);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Visit section */

.info-block {
  margin-top: 1.1rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-subtle);
}

.info-block h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.hours-list {
  margin: 0;
  display: grid;
  gap: 0.25rem;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.hours-list dt {
  font-weight: 500;
}

.hours-list dd {
  margin: 0;
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  background: #e5ddcf;
  box-shadow: var(--shadow-soft);
}

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

@media (min-width: 768px) {
  .map-embed iframe {
    height: 320px;
  }
}

/* Social */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.social-links a {
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 123, 62, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  border-color: rgba(201, 123, 62, 0.45);
}

/* Footer */

.site-footer {
  border-top: 2px solid var(--brand-primary-soft);
  background: linear-gradient(180deg, #f8f6f2 0%, #f5f3ef 100%);
  padding: 5rem 0 2.5rem;
  margin-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary-soft), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

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

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-column a:hover {
  color: var(--brand-primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer nav {
  display: flex;
  gap: 0.9rem;
}

.site-footer nav a {
  text-decoration: none;
}

.footer-copy {
  margin: 0;
}

/* Page shells */

.page-inner {
  padding: 4rem 0 5rem;
}

.page-header {
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  border-radius: 2px;
}

.page-header h1 {
  font-size: clamp(2rem, 1.6rem + 0.8vw, 2.4rem);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--brand-primary-soft);
  color: var(--brand-primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* About page */

.about-grid {
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 840px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-primary-soft);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.card h3 {
  font-size: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.pill-soft {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(201, 123, 62, 0.06);
  color: var(--text-muted);
}

.timeline {
  border-left: 1px dashed rgba(201, 123, 62, 0.4);
  padding-left: 1.1rem;
  margin-top: 0.75rem;
}

.timeline-item {
  margin-bottom: 0.8rem;
}

.timeline-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.timeline-title {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Menu page */

.menu-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .menu-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: flex-start;
  }
}

.menu-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.6rem);
  align-self: flex-start;
}

.menu-sidebar h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.menu-sidebar p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.menu-anchor-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.3rem;
}

.menu-anchor-list a {
  display: block;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.menu-anchor-list a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.menu-section {
  margin-bottom: 3.5rem;
  position: relative;
}

.menu-category-banner {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.menu-category-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(143, 196, 217, 0.3),
    rgba(143, 196, 217, 0.15),
    transparent
  );
}

.menu-category-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-light));
}

.menu-section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.2rem;
}

.menu-section-header h2 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 600;
  color: var(--brand-primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.menu-section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), transparent);
  border-radius: 2px;
}

.menu-section-header span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.menu-items {
  display: grid;
  gap: 0.7rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  column-gap: 1rem;
  row-gap: 0.2rem;
  align-items: baseline;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-med);
  position: relative;
}

.menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand-primary);
  transform: scaleY(0);
  transition: transform var(--transition-med);
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--brand-primary-soft);
  background: #fff;
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item-name {
  color: var(--brand-primary);
  font-weight: 600;
}

.menu-item-name {
  font-size: 0.94rem;
  font-weight: 500;
}

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

.menu-item-description {
  grid-column: 1 / -1;
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Contact page */

.contact-layout {
  display: grid;
  gap: 2.3rem;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

/* Reservation page */

.reservation-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .reservation-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}

.reservation-form-wrapper {
  min-width: 0;
}

.reservation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reservation-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: 0.5rem;
}

.reservation-image img {
  width: 100%;
  height: auto;
  display: block;
}

.field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.field label span {
  font-size: 1.1rem;
}

.field select {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(122, 98, 76, 0.22);
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  cursor: pointer;
}

.field-full {
  grid-column: 1 / -1;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    margin-left: 1rem;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
}

.field input,
.field textarea {
  border-radius: 12px;
  border: 1px solid rgba(122, 98, 76, 0.22);
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #b0a090;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.helper-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Company, legal */

.legal-layout {
  max-width: 760px;
  margin: 2rem auto 3rem;
}

.legal-layout h2 {
  font-size: 1.1rem;
  margin-top: 1.6rem;
}

.legal-layout h3 {
  font-size: 0.98rem;
  margin-top: 1rem;
}

.legal-layout p,
.legal-layout li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal-layout ul {
  padding-left: 1.1rem;
}

/* About Page - Icons & Visuals */

.about-intro {
  margin-bottom: 2.4rem;
}

.fusion-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.fusion-item {
  text-align: center;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(250, 245, 239, 0.6);
  border: 1px solid rgba(201, 123, 62, 0.1);
}

.fusion-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.fusion-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.fusion-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.different-features {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.different-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(250, 245, 239, 0.5);
  border: 1px solid rgba(201, 123, 62, 0.1);
}

.different-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.different-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.different-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* Gallery Page */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 123, 62, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(155, 90, 36, 0.3);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 34, 25, 0.75),
    transparent
  );
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

.gallery-overlay span {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item[data-category] {
  display: block;
}

.gallery-item.hidden {
  display: none;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }
}

.link-card {
  text-align: center;
  cursor: pointer;
}

.link-card h3 {
  color: var(--brand-primary);
  margin-bottom: 0.8rem;
}

.link-card p {
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .social-links {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .page-header {
    padding: 3rem 0 2rem;
  }
}


