/* Life's A Bagel — fun & colorful site styles */

:root {
  --yellow: #FFC93C;
  --orange: #FF6B4A;
  --teal: #2EC4B6;
  --cream: #FFF8EA;
  --brown: #3B2412;
  --pink: #FF9AA2;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 8px 20px rgba(59, 36, 18, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--brown);
  margin-top: 0;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--white);
  border-bottom: 6px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  height: 38px;
  width: 38px;
  flex-shrink: 0;
}

.logo span.dot { color: var(--teal); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--brown);
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  padding: 8px 4px;
  border-bottom: 3px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 3px solid var(--orange);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--brown);
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  opacity: 0.55;
}

.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.hero-content p {
  color: var(--white);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 0 22px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.btn {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  background: #ff5733;
}

.btn.alt {
  background: var(--teal);
}

.btn.alt:hover {
  background: #22a99c;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Sections ---------- */

section {
  padding: 60px 0;
}

section.tight { padding: 36px 0; }

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: 2.1rem;
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: "";
  display: block;
  height: 6px;
  width: 70px;
  background: var(--yellow);
  border-radius: 6px;
  margin: 10px auto 0;
}

.info-strip {
  background: var(--yellow);
  padding: 22px 0;
}

.info-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
}

.info-strip .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Cards / grid ---------- */

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

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

.card .card-body {
  padding: 14px 10px 20px;
}

.card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.pill-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 30px;
  margin-top: 8px;
}

/* ---------- Lists (cream cheese / sandwiches) ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.list-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
}

.list-card h3 {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.list-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-card ul li {
  padding: 9px 0;
  border-bottom: 1px dashed #eadfc7;
  font-weight: 600;
}

.list-card ul li:last-child { border-bottom: none; }

.list-card ul.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.list-card ul.price-list li .price {
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.list-card .note {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8a6d4a;
}

/* ---------- About page ---------- */

.about-photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-photo-strip img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-block {
  max-width: 760px;
  margin: 0 auto;
}

.callout {
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.callout h3 {
  color: var(--white);
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.contact-card p {
  margin: 6px 0 18px;
  font-weight: 600;
}

.contact-card .label {
  font-family: 'Fredoka', sans-serif;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ---------- Footer ---------- */

footer {
  background: var(--brown);
  color: var(--cream);
  padding: 40px 0 24px;
  margin-top: 40px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

footer h4 {
  color: var(--yellow);
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 10px;
}

footer a { color: var(--cream); }

footer .bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 28px;
}

/* ---------- Responsive ---------- */

@media (max-width: 800px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .about-photo-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content p { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr 1fr; }
  nav.main-nav ul { gap: 14px; justify-content: center; }
}
