
/* LOGO IS #ffc7b5 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #1f1a17;
  background:
    radial-gradient(circle at top left, #ffe7c9 0%, transparent 28%),
    radial-gradient(circle at top right, #ffd9e7 0%, transparent 24%),
    linear-gradient(180deg, #fffaf2 0%, #fffdf8 100%);
}

.page {
  padding: 48px 6px 48px;
}

.content-wrap {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.hero-card {
  background: linear-gradient(135deg, #fff3e8 0%, #fff0f6 100%);
  border: 2px solid #1f1a17;
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 14px 32px rgba(31, 26, 23, 0.08);
  margin-bottom: 24px;
}

.restaurant-hero {
  margin-top: 8px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff7b8;
  border: 2px solid #1f1a17;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 18px;
  align-self: flex-start;
}

.hero-card:not(:has(.hero-badge)) {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  text-align: center;
  min-height: 240px;
}

.hero-card:not(:has(.hero-badge)) .subtext { 
  margin: 0;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0 0 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.subtext { 
  margin: 0 0 24px;
  color: #5e554f;
  font-size: 1.5rem;
  max-width: 700px;
}

.restaurant-subtext {
  margin-bottom: 8px;
  max-width: none;
}

.hero-hours {
  margin: 0;
  color: #4f4742;
  font-size: 1.25rem;
  font-weight: 600;
}

.search-row {
  display: flex;
  gap: 14px;
}

.search-input {
  flex: 1 1 320px;
  min-height: 58px;
  border: 2px solid #1f1a17;
  border-radius: 18px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.85);
}

.search-btn {
  flex-shrink: 0;
  min-height: 58px;
  border: 2px solid #1f1a17;
  border-radius: 18px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  background: #ff9b7b;
  color: #1f1a17;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 26, 23, 0.12);
}

.bottom-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nav-pill {
  text-decoration: none;
  color: #1f1a17;
  border: 2px solid #1f1a17;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.18s ease, background 0.18s ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  background: #fff;
}

.active-pill {
  background: #1f1a17;
  color: #fff7ef;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}

.restaurant-section-header {
  margin-top: 8px;
}

.section-copy {
  margin: 0;
  color: #5e554f;
  font-size: 1.25rem;
}

.day-selector-card {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 999px;
  border: 2px solid #1f1a17;
  background: linear-gradient(135deg, #f1c8ec 0%, #fff0bd 100%);
}

.day-pill {
  border: 1.5px solid #1f1a17;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #1f1a17;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.day-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
}

.active-day {
  background: #1f1a17;
  color: #fff7ef;
}

.deal-day {
  margin: 8px 0 18px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f1a17;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.restaurant-deals-grid {
  margin-bottom: 24px;
}

.deal-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #1f1a17;
  border-radius: 30px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.07);
  position: relative;
  overflow: hidden;
}

.deal-card > * {
  position: relative;
  z-index: 1;
}

.deal-hours {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0;
  margin-top: 20px;
}

.deal-location {
  font-size: 1.2rem;
}

.restaurant-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.restaurant-hero-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.restaurant-hero-right {
  text-align: right;
  margin-left: 40px;
  align-self: center;
  transform: translateY(-35px);
}

.restaurant-location {
  font-size: 1.75rem;
  font-weight: 600;
  color: #4f4742;
}

.restaurant-name {
  margin: 0 0 10px;
  color: #1f1a17;
  font-size: 1.5rem;
  font-weight: 500;
}

.deal-title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.04em;
}


/* .tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #1f1a17;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1f1a17;
}

.pink-tag {
  background: #ffbcbc;
}

.yellow-tag {
  background: #ffe8a3;
}

.blue-tag {
  background: #cfe7ff;
}

.peach-tag {
  background: #ffd7bf;
}

.green-tag {
  background: #dff3d6;
}

.cream-tag {
  background: #fff7ef;
}

.deal-meta {
  margin: 0 0 20px;
  color: #6b625c;
  font-size: 1.25rem;
} */


/* TAGS TAGS TAGS */


.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: center;
}


/* CUISINE TAGS */


.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.92rem;
  border: 1.75px solid #1f1a17;
}

/* CUISINE TAGS */


.cuisine-tag {
  background: transparent;
  color: #1f1a17;
  font-weight: 500;
  border: 1.75px solid #1f1a17;
}

/* DEAL TAGS */


.tag:not(.cuisine-tag) {
  font-weight: 500;
}

.pink-tag {
  background: #ffe5e5;
}

.yellow-tag {
  background: #fff3c9;
}

.blue-tag {
  background: #e7f2ff;
}

.green-tag {
  background: #edf8e8;
}

.peach-tag {
  background: #ffe9df;
}

.cream-tag {
  background: #fffaf6;
}


#restaurantCuisine {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-btn {
  border: 2px solid #1f1a17;
  border-radius: 16px;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  background: #ffffff;
  color: #1f1a17;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.map-btn {
  border: 2px solid #1f1a17;
  border-radius: 20px;
  padding: 18px 26px;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  background: #ffffff;
  color: #1f1a17;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.card-btn:hover,
.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 26, 23, 0.12);
}

.map-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  border: 2px solid #1f1a17;
  border-radius: 30px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.07);
}

.map-card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 200;
}

#restaurantMap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.map-btn-row {
  display: flex;
  gap: 18px;
  justify-content: center;
}

/* random card backgrounds */
.pattern-card {
  position: relative;
  overflow: hidden;
}

.pattern-card::before,
.pattern-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.pattern-pink {
  background: linear-gradient(180deg, #fff8fa 0%, #ffffff 100%);
}

.pattern-pink::before {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -40px;
  background: rgba(255, 170, 190, 0.35);
}

.pattern-pink::after {
  width: 160px;
  height: 160px;
  bottom: -40px;
  left: -40px;
  background: rgba(255, 200, 210, 0.3);
}

.pattern-blue {
  background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
}

.pattern-blue::before {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
  background: rgba(180, 215, 255, 0.35);
}

.pattern-blue::after {
  width: 140px;
  height: 140px;
  bottom: -30px;
  left: -30px;
  background: rgba(210, 235, 255, 0.3);
}

.pattern-yellow {
  background: linear-gradient(180deg, #fffdf4 0%, #ffffff 100%);
}

.pattern-yellow::before {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
  background: rgba(255, 235, 170, 0.35);
}

.pattern-yellow::after {
  width: 140px;
  height: 140px;
  bottom: -30px;
  left: -30px;
  background: rgba(255, 245, 200, 0.3);
}

.pattern-green {
  background: linear-gradient(180deg, #f6fff6 0%, #ffffff 100%);
}

.pattern-green::before {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
  background: rgba(170, 220, 180, 0.35);
}

.pattern-green::after {
  width: 140px;
  height: 140px;
  bottom: -30px;
  left: -30px;
  background: rgba(200, 240, 210, 0.3);
}

@media (max-width: 900px) {
  .section-header {
    flex-direction: column;
    align-items: stretch;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .deal-card {
    min-height: auto;
  }

  .page {
    padding: 36px 16px 60px;
  }
}

/* =============
    MAP MAP MAP  
   ============= */


.maps-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.map-sidebar,
.map-panel {
  min-height: 720px;
}

.map-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.map-sidebar-header {
  margin-bottom: 20px;
}

.map-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.map-list-card {
  border: 2px solid #1f1a17;
  border-radius: 24px;
  padding: 20px;
  background: #fffdf8;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.map-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 26, 23, 0.08);
}

.active-map-card {
  background: linear-gradient(135deg, #fff3e8 0%, #fff0f6 100%);
  box-shadow: 0 10px 22px rgba(31, 26, 23, 0.1);
}

.map-list-cuisine,
.map-list-address {
  margin: 0 0 8px;
  color: #5e554f;
  font-size: 1rem;
}

.map-list-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.map-panel {
  position: relative;
  padding: 18px;
  width: 100%;
}

.map-status {
  margin-bottom: 14px;
  color: #5e554f;
  font-size: 1rem;
  font-weight: 600;
}

.google-map {
  width: 100%;
  min-height: 700px;
  border: 2px solid #1f1a17;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f2ec;
}

.info-window-card {
  font-family: "Poppins", sans-serif;
  max-width: 240px;
  padding: 4px 2px;
}

.info-window-name {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #1f1a17;
}

.info-window-meta {
  margin: 0 0 6px;
  color: #5e554f;
  font-size: 0.92rem;
}

.info-window-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: #1f1a17;
}


/* =============
      SUBMIT 
   ============= */



.submit-card {
  border: 2px solid #1f1a17;
  border-radius: 30px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.07);
}

.submit-subtext {
  margin: 10px 0 28px;
  color: #5e554f;
  font-size: 1.25rem;
  line-height: 1.45;
}

.submit-card-btn {
  border: 2px solid #1f1a17;
  border-radius: 18px;
  padding: 15px 18px;
  text-decoration: none;
  color: #1f1a17;
  background: #ffffff;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submit-card-btn::after {
  content: "→";
  font-size: 1.3rem;
}

.submit-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31, 26, 23, 0.12);
}

.submit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}


.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}


.hero-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-brand img {
  width: 90px;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

/* LOGO LOGO LOGO */

.hero-card {
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 35px;
  right: 110px;
  width: 170px;
  height: auto;
}


/* FOOTER FOOTER FOOTER */

.site-footer {
  padding: 24px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #1f1a17;      /* black */
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:visited,
.footer-links a:hover,
.footer-links a:active {
  color: #1f1a17;      /* stay black */
}

.footer-copyright {
  color: #5e554f;
  font-size: 0.9rem;
}

/* ABOUT ABOUT ABOUT */

.about-card {
  border: 2px solid #1f1a17;
  border-radius: 30px;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 26, 23, 0.07);
}

.about-card p {
  color: #5e554f;
  font-size: 1.25rem;
  line-height: 1.55;
}


@media (max-width: 900px) {
  .maps-layout {
    grid-template-columns: 1fr;
  }

  .map-sidebar,
  .map-panel {
    min-height: auto;
  }

  .google-map {
    min-height: 520px;
  }

  .submit-grid {
    grid-template-columns: 1fr;
  }

  /* LOGO LOGO LOGO */

  .brand-row {
    display: flex;
    align-items: center;
  }

  .hero-logo {
    position: static;
    width: 100px;
    height: auto;
    margin-bottom: 15px;
  }

}
