/* Sesame Donuts — Logo-themed + 4-column product grid */

/* ============== THEME ============== */
:root {
  /* Brand colors from logo */
  --brand: #ed2b7a; /* Sesame pink */
  --brand-2: #c21f62; /* Deeper pink */
  --donut: #6b3b23; /* Donut brown */
  --donut-2: #8a4a2b; /* Lighter brown */

  /* UI surfaces */
  --bg: #0f0a0e; /* Deep chocolate-plum */
  --bg-soft: #171017; /* Panels/strips */
  --card: #1c1219; /* Cards */

  /* Typography */
  --text: #fff6ef; /* Warm near-white */
  --muted: #d8c3d0; /* Muted cream-lilac */

  /* Accents */
  --accent: #f3bfd3; /* Soft pink highlight */
  --error: #ff6b6b;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Global */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
 
}
body {
  margin: 0;
  font-family: "Fredoka", system-ui, sans-serif;
  background: linear-gradient(180deg, #0f0a0e 0%, #140c12 100%);
  color: var(--text);
  line-height: 1.6;
  
}

h1,
h2,
h3 {
  font-family: "Baloo 2", cursive;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 12, 18, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.3px;
}
.logo {
  width: 100px;
  height: 50px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover {
  color: var(--text);
}

@media(max-width:600px){
/* Burger */
.burger{background:none;border:0;cursor:pointer;padding:8px;}
.burger span{display:block;width:22px;height:2px;margin:4px 0;background:var(--text,#fff);border-radius:2px;transition:transform .3s,opacity .2s;}
.burger.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg);}
.burger.is-open span:nth-child(2){opacity:0;}
.burger.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg);}
.drawer-header {
  display: flex;
  align-items: center;      /* vertically center logo and X */
  justify-content: space-between; /* put them on the same line, opposite ends */
  gap: 12px;                /* optional breathing room */
  padding: 16px;
}

.drawer-brand { display: inline-flex; align-items: center; }
.drawer-logo { display: block; height: 60px; width: 90px; object-fit: contain; }

.drawer-close {
  background: none;
  border: 0;
  color: var(--text);
  font-size: 22px;
  width: 40px;
  height: 40px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;           /* prevent it from shrinking */
}

/* Drawer */
.mobile-drawer{
  position:fixed; inset:0 auto 0 0; /* top 0 right auto bottom 0 left 0 */
  width:82vw; max-width:360px; height:100dvh;
  background:#1a0d14; color:#fff; z-index:1100;
  border-right:1px solid rgba(255,255,255,.08);
  box-shadow:12px 0 32px rgba(0,0,0,.45);
  transform:translateX(-100%); transition:transform .32s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column; padding:16px;
}
.mobile-drawer[aria-hidden="false"]{ transform:translateX(0); }

.drawer-links{display:flex;flex-direction:column;gap:8px;}
.drawer-link{color:inherit;text-decoration:none;font-weight:700;padding:12px 10px;border-radius:10px;}
.drawer-link:hover{background:rgba(237,43,122,.08);}
.drawer-close{align-self:flex-end;background:none;border:0;color:inherit;font-size:20px;cursor:pointer;margin-top:auto;}

/* Backdrop */
.drawer-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.45); backdrop-filter:blur(1px);
  z-index:1050; opacity:0; transition:opacity .25s;
}
.drawer-backdrop[data-show="true"]{ opacity:1; }

/* Optional: prevent background scroll when open */
.body-lock{ overflow:hidden; }
}




/* Cart btn */
.cart-btn {
  position: relative;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #1a0d14;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(237, 43, 122, 0.35);
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  color: #111;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.lead {
  color: var(--accent);
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}
.btn.primary {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #1a0d14;
  border: 0;
  box-shadow: 0 8px 24px rgba(237, 43, 122, 0.35);
}
.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
}
.btn:active {
  transform: translateY(1px);
}

/* Hero art */
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
}
.donut {
  position: absolute;
  width: 46%;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.3));
}
.donut-a {
  left: -10%;
  top: 10%;
}
.donut-b {
  right: -14%;
  bottom: -6%;
  width: 52%;
}
.donut-c {
  left: 20%;
  bottom: -18%;
  width: 40%;
}

/* Ambient glow layers in brand colors */
.bg-layer {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80%;
  background: radial-gradient(
      60% 60% at 70% 40%,
      rgba(237, 43, 122, 0.3),
      transparent 60%
    ),
    radial-gradient(
      40% 40% at 20% 80%,
      rgba(107, 59, 35, 0.28),
      transparent 60%
    ),
    radial-gradient(
      30% 30% at 80% 80%,
      rgba(243, 191, 211, 0.18),
      transparent 60%
    );
  z-index: -1;
  pointer-events: none;
  transform: translateY(0);
}
.layer-2 {
  opacity: 0.7;
  filter: blur(20px);
}
.layer-3 {
  opacity: 0.5;
  filter: blur(40px);
}

/* Promo strip */
.promo {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  background: var(--bg-soft);
}
.promo-inner {
  padding: 10px 0;
}
.marquee {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.marquee-track span::after {
  content: "•";
  margin: 0 20px;
  opacity: 0.4;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Center hero actions on mobile */
@media (max-width: 720px) {
  .hero-actions {
    justify-content: center; /* center horizontally */
    align-items: center; /* align items vertically in their row */
    text-align: center;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 260px; /* nice width for each button */
  }
}

/* Center the "Our Menu" section header */
.menu .section-head {
  text-align: center; /* center text inside */
  display: flex;
  flex-direction: column;
  align-items: center; /* center children horizontally */
  justify-content: center; /* center vertically if you give it height */
  gap: 8px;
  margin-inline: auto; /* center the block itself */
  max-width: 800px; /* optional: nice readable width */
}

/* Optional: add some breathing room above/below */
.menu .section-head h2 {
  margin-bottom: 6px;
}
.menu .section-head p {
  margin-top: 0;
}

/* Menu */
.menu {
  padding: 70px 0;
}
.section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3.5vw, 40px);
}
.section-head p {
  color: var(--accent);
  margin: 0 0 16px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(237, 43, 122, 0.08);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.chip.is-active {
  background: linear-gradient(180deg, rgba(237, 43, 122, 0.18), rgba(194, 31, 98, 0.18));
  border-color: rgba(237, 43, 122, 0.45);
}

/* Product grid/cards — fluid columns, no horizontal overflow */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  grid-column: auto;
  width: 100%;
  min-width: 0;

  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 26px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}


/* Prevent inner content from forcing overflow */
.card .img-wrap,
.card h3,
.card p,
.card-actions,
.badges {
  min-width: 0;
}

.card .img-wrap {
  background: linear-gradient(140deg, rgba(237, 43, 122, 0.18), rgba(107, 59, 35, 0.16));
  border-radius: 12px;
  padding: 10px;
}
.card .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* or contain if preferred */
}
.card h3 {
  margin: 4px 0 6px;
  letter-spacing: 0.2px;
}
.card p {
  margin: 0;
  color: #f7e6dd;
  font-size: 14px;
  overflow-wrap: anywhere;    /* wrap long words */
}
.price {
  font-weight: 800;
  color: var(--donut-2);
}
.badges {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;            /* wrap chips instead of pushing width */
}
.badge {
  font-size: 12px;
  background: rgba(237, 43, 122, 0.14);
  color: var(--text);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(237, 43, 122, 0.28);
}

/* Card actions */
.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}
.qty button {
  background: none;
  border: 0;
  color: var(--text);
  width: 30px;
  height: 32px;
  cursor: pointer;
  font-weight: 800;
}
.qty input {
  width: 40px;
  height: 32px;
  text-align: center;
  border: 0;
  background: none;
  color: var(--text);
  font-weight: 700;
}
.add-btn {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #1a0d14;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(237, 43, 122, 0.32);
}
.add-btn:active {
  transform: translateY(1px);
}

/* Mobile: 1 column, centered card with comfortable width */
@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card {
    max-width: 360px;   /* target look like your screenshot */
    margin-inline: auto;/* center the card */
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.30);
  }
  .menu, .menu .container { overflow-x: clip; }
}


/* About */
.about {
  padding: 70px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}
.about-media img {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.values {
  padding-left: 18px;
}
.values li {
  color: #f7e6dd;
}

/* Locations */
.locations {
  padding: 70px 0;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.loc-card {
  background: var(--card);
  border: 1px solid rgba(237, 43, 122, 0.18);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Contact */
.contact {
  padding: 30px 0;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: var(--card);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(237, 43, 122, 0.18);
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form .field:nth-child(3) {
  grid-column: 1/-1;
}
.contact-form input,
.contact-form textarea {
  background: #1a1118;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text);
  padding: 12px;
}
.contact-form button {
  grid-column: 1/-1;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92%);
  height: 100dvh;
  background: #140c12;
  border-left: 1px solid rgba(237, 43, 122, 0.25);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  z-index: 60;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(237, 43, 122, 0.18);
}
.cart-body {
  flex: 1;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #1b1218;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-item .ci-title {
  font-weight: 700;
}
.cart-item .ci-meta {
  color: var(--accent);
  font-size: 12px;
}
.cart-footer {
  padding: 16px;
  border-top: 1px solid rgba(237, 43, 122, 0.18);
  display: grid;
  gap: 12px;
}
.close-cart {
  background: none;
  color: var(--text);
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive grid breakpoints */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-art {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }

  /* 2 columns on tablets: span 6 */
  .card {
    grid-column: span 6;
  }
}
@media (max-width: 720px) {
  .nav a {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }

  /* 1 column on mobile: span full width */
  .card {
    grid-column: span 12;
  }
}

/* Micro-interactions */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}
.card:hover .tilt,
.tilt:hover {
  transform: perspective(600px) rotateX(4deg) rotateY(-4deg);
}
.card:hover {
  border-color: rgba(237, 43, 122, 0.28);
}

/* Split text reveal baseline (animated by JS) */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line span {
  display: inline-block;
  transform: translateY(100%);
}

/* Load more button wrapper */
.load-more {
  text-align: center;
  margin-top: 14px;
}
.load-more .btn.primary {
  min-width: 220px;
}
/* =========================
   Donut Categories (with Add buttons)
   ========================= */

/* Section + heading */
.donut-cats {
  padding: 60px 0;
  overflow-x: clip;
}
.section-head.center {
  text-align: center;
}
.section-head.center h2 {
  margin: 0 0 6px;
}
.section-head.center p {
  margin: 0;
  color: var(--accent);
  
}

/* Category card wrapper */
.donut-cats .cat-block {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin: 14px 0;
  box-shadow: var(--shadow);
  min-width: 0; /* allow shrink */
}

/* Category header */
.donut-cats .cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  min-width: 0;
}
.donut-cats .cat-head h3 {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(18px, 2.2vw, 22px);
  overflow-wrap: anywhere;
  min-width: 0;
}
.donut-cats .cat-view {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(237, 43, 122, 0.16),
    rgba(194, 31, 98, 0.12)
  );
  border: 1px solid rgba(237, 43, 122, 0.35);
}
.donut-cats .cat-view:hover {
  filter: brightness(1.08);
}

/* Mini grid (cards inside each category) */
.cat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr); /* desktop default */
  min-width: 0;
}

/* Mini card */
.mini-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  background: #1a1118;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  min-width: 0;
}
.mini-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: linear-gradient(
    140deg,
    rgba(237, 43, 122, 0.18),
    rgba(107, 59, 35, 0.16)
  );
}
.mini-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.mini-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.mini-card h4 {
  margin: 0 0 4px;
  font-size: clamp(14px, 1.8vw, 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  flex: 1 1 auto;
}
.m-price {
  color: var(--donut-2);
  font-weight: 800;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Add button */
.mini-add {
  align-self: flex-start;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  color: #1a0d14;
  box-shadow: 0 6px 18px rgba(237, 43, 122, 0.32);
}
.mini-add:active {
  transform: translateY(1px);
}

/* Breakpoints */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 880px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  /* Force 1-per-row on mobile */
  .cat-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .mini-card {
    grid-template-columns: 72px 1fr;
    padding: 12px;
  }
  .mini-card img {
    width: 72px;
    height: 72px;
  }
  .donut-cats .cat-head {
    align-items: flex-start;
  }
  .donut-cats .cat-view {
    margin-left: auto;
  }
}
@media (max-width: 420px) {
  .mini-card {
    grid-template-columns: 64px 1fr;
    padding: 10px;
  }
  .mini-card img {
    width: 64px;
    height: 64px;
  }
  .mini-add {
    width: 100%;
    max-width: 220px;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .donut-cats .cat-view {
    width: 100%;
    text-align: center;
  }
}

/* Optional ultra-small safety */
@media (max-width: 360px) {
  .mini-card {
    padding: 8px;
  }
  .mini-card img {
    width: 52px;
    height: 52px;
  }
  .mini-add {
    padding: 7px 10px;
    font-size: 13px;
  }
}

/* 🍩 Pink Donut Glow */
.donut-a {
  width: 160px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.6),
    0 0 30px rgba(255, 105, 180, 0.4);
  animation: glowPink 3s infinite alternate ease-in-out;
}

@keyframes glowPink {
  from {
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.4),
      0 0 25px rgba(255, 105, 180, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.8),
      0 0 45px rgba(255, 105, 180, 0.6);
  }
}

/* 🍩 Purple Donut Glow */
.donut-b {
  width: 160px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.6), 0 0 30px rgba(138, 43, 226, 0.4);
  animation: glowPurple 3s infinite alternate ease-in-out;
}

@keyframes glowPurple {
  from {
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4),
      0 0 25px rgba(138, 43, 226, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.8),
      0 0 45px rgba(138, 43, 226, 0.6);
  }
}

/* 🍩 White Donut Glow */
.donut-c {
  width: 160px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
  animation: glowYellow 3s infinite alternate ease-in-out;
}

@keyframes glowYellow {
  from {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.3);
  }
  to {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 45px rgba(255, 215, 0, 0.6);
  }
}

/* About Section */
.about-section {
  padding: 100px 20px;
  background: var(--dark-bg);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.4);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-family: "Baloo 2", cursive;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--primary);
  text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
}

.about-content p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Premium Button */
.about-content .btn {
  display: inline-block;
  background: var(--gradient);
  padding: 14px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
}

.about-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 25px rgba(255, 120, 120, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2.3rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-content .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Locations Section */
.locations-section {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.locations-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff007f;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: #111;
  border: 2px solid #ff007f;
  border-radius: 12px;
  padding: 20px 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff007f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.location-card:hover {
  background: #ff007f;
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 0, 127, 0.5);
}

.location-card.highlight {
  color: #d2691e; /* Brown shade for Downtown */
  border-color: #d2691e;
}

.location-card.highlight:hover {
  background: #d2691e;
  color: #fff;
  box-shadow: 0 10px 25px rgba(210, 105, 30, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .locations-section .section-title {
    font-size: 2rem;
  }

  .location-card {
    font-size: 1rem;
    padding: 15px;
  }
}

.site-footer {
  background: #0e0e0e;
  color: #fff;
  padding: 20px 20px;

  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.footer-logo img {
  max-width: 90px;
  filter: brightness(0) invert(1);
}

.footer-info h4,
.footer-socials h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffcc70;
}

.footer-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #ddd;
}

.footer-info i {
  margin-right: 8px;
  color: #ffcc70;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  color: #ffcc70;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #ffcc70;
  color: #0e0e0e;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(255, 204, 112, 0.3);
}

.footer-links {
  margin: 40px auto 20px;
  text-align: center;
}

.footer-links a {
  margin: 0 15px;
  font-size: 14px;
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc70;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

.browse {
padding-top: 30px;
}

/* Keep hero visible on phones */
.hero{ overflow:hidden; }

/* Mobile layout: put art first, center it, and give it a real height */
@media (max-width: 980px){
  .hero-inner{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .hero-art{
    order:-1;                   /* show donuts above text */
    width:min(520px, 92vw);
    margin-inline:auto;
    aspect-ratio: 1 / 1;        /* guarantee height on mobile */
    position: relative;
  }
}

/* Donut sizes/positions safe for phones (less negative offsets) */
@media (max-width: 720px){
  .donut{ width:44%; }
  .donut-a{ left:-6%;  top:6%; }
  .donut-b{ right:-8%; bottom:-8%; width:50%; }
  .donut-c{ left:16%;  bottom:-14%; width:38%; }
}


/* Default: large screens (desktop/tablet) */

/* .burger  {
  display: none;
}


.mobile-drawer{
    display: none;
} */

/* Hidden by default on larger screens */
.burger { display: none; }
.mobile-drawer { display: none; }

/* Mobile-only (adjust breakpoint if needed) */
@media (max-width: 768px) {
  .burger {
    display: inline-block;            /* show burger */
    background: none;
    border: 0;
    cursor: pointer;
  }
  
  /* Drawer exists on mobile (still off-canvas until opened via transform) */
  .mobile-drawer {
    display: flex;                    /* make it renderable */
    flex-direction: column;
  }

  /* If you have a desktop nav, hide it on mobile */
  .desktop-nav { display: block; }
}
