/* ===== RESET & BASE ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "hoss-round", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background-color: #f9f4ff; 
  color: #2a163d;           
  line-height: 1.6;
  font-weight: 300;
}

body,
button,
input,
textarea {
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ACCESSIBILITY THIS STUFF IVE JUST BEEN TOLD IS GOOD TO HAVE + I TWEAKED IT !!! ===== */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: #501c80;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  z-index: 999;
  font-weight: 500;
}

.skip-link:focus {
  left: 0.75rem;
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3 {
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #2a163d;
}

p {
  margin: 0 0 1em;
  color: #725a87;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
}

.section-subtitle {
  max-width: 40rem;
}

a {
  color: #501c80;
  text-decoration: none;
  font-weight: 500;
}

a:hover,
a:focus-visible {
  color: #3a155c;
  text-decoration: underline;
}

a:visited {
  color: #501c80;
}

/* ===== HEADER / NAV ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 244, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 199, 255, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 180px;
  max-width: 60vw;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  font-weight: 500;
  color: #2a163d;
  text-decoration:none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #501c80, #e02085);
  transition: width 0.18s ease-out;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-link--active {
  color: #3a155c;
}

.nav-link--cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(80, 28, 128, 0.4);
  background: rgba(224, 32, 133, 0.09);
}

/* ===== HERO ===== */

.hero {
  padding-block: 3.5rem 3rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 1fr;
  }
}

.hero-copy {
  max-width: 32rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #3a155c;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.hero-title .accent {
  color: #501c80;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 30rem;
}

/* Buttons */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #a85bf0, #e90e91);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(42, 22, 61, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.03);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 247, 255, 0.95);
  border: 1px solid rgba(80, 28, 128, 0.35);
  color: #3a155c;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff7ff;
  text-decoration: none;
}

/* Hero image */

.hero-image-wrapper {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-image {
  width: min(360px, 90%);
  height: auto;
  object-fit: contain;
  border-radius: 0;        
  background: none;       
  padding: 0;              
  box-shadow: none;        
}

.hero-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.35rem;
  background: #fff7ff;
  border-radius: 999px;
  padding: 0.75rem 1rem;   /* add more space maybe */
  box-shadow: 0 8px 18px rgba(42, 22, 61, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;            /* slight increase? */
  min-width: 160px;        /* tiny bump so text fits a lil nicer */
}


.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #725a87;
  font-weight: 500;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a155c;
}

/* ===== FEATURED SECTION ===== */

.featured {
  padding-block: 2.5rem;
}

.featured-inner {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .featured-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.featured-text {
  max-width: 32rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
  color: #2a163d;
  font-weight: 400;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #501c80;
}

.text-link {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== FEATURED IMAGES ===== */

.featured-image-grid {
  display: grid;
  gap: 1rem;
}

.featured-card {
  background: #fff7ff;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 10px 30px rgba(42, 22, 61, 0.18);
  border: 1px solid #e0c7ff;
}

.featured-img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
  object-fit: cover;
}

.featured-card figcaption {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: #725a87;
}

/* ===== FOOD GALLERY (3 items) ===== */

.food-gallery {
  padding-block: 2.5rem 3rem;
}

.food-gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

/* three across on wider screens, smaller tiles */
@media (min-width: 900px) {
  .food-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* still 3 across on medium screens, they’ll just scale down */
@media (max-width: 899px) and (min-width: 600px) {
  .food-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 2 per row on smaller mobile */
@media (max-width: 599px) {
  .food-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* base card: mobile first, title under photo */

.food-card {
  position: relative;
  overflow: hidden;
}

.food-img {
  width: 100%;
  display: block;
  border-radius: 0.9rem;
  object-fit: cover;
}

.food-card figcaption {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.caption-title {
  display: block;
  font-weight: 600;
  color: #2a163d;
}

.caption-body {
  display: none; /* hidden on mobile / non-hover devices */
}

/* desktop hover overlay with full description */

@media (hover: hover) and (pointer: fine) {
  .food-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0.7rem 0.8rem;
    background: linear-gradient(
      to top,
      rgba(42, 22, 61, 0.9),
      rgba(42, 22, 61, 0.0)
    );
    color: #ffffff;
    font-size: 0.78rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  }

  .food-card:hover figcaption,
  .food-card:focus-within figcaption {
    opacity: 1;
    transform: translateY(0);
  }

  .caption-title {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #ffffff;
  }

  .caption-body {
    display: block; /* show full description in overlay on desktop */
  }
}

/* ===== ABOUT PREVIEW ===== */

.about-preview {
  padding-block: 2.5rem 3rem;
}

.about-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.about-image-wrapper {
  display: flex;
  justify-content: center;
}

.about-image {
  width: min(380px, 100%);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(42, 22, 61, 0.18);
  object-fit: cover;
}

/* ===== VISIT CTA ===== */

.visit-cta {
  padding-block: 2.5rem 3.5rem;
}

.visit-inner {
  text-align: left;
}

.visit-grid {
  display: grid;
  gap: 1.5rem;
  margin-block: 1.25rem 1.75rem;
}

@media (min-width: 768px) {
  .visit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.visit-block h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
  color: #3a155c;
  font-weight: 600;
}

.visit-block p {
  margin: 0;
}

/* ===== FOOTER ===== */

.site-footer {
  border-top: 1px solid rgba(224, 199, 255, 0.9);
  padding-block: 1.25rem 1.75rem;
  background: #f1e3ff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-brand {
  margin: 0;
  color: #2a163d;
  font-weight: 400;
}

.footer-small {
  margin: 0;
  color: #725a87;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.footer-link {
  font-size: 0.8rem;
}

/* ===== RESPONSIVE HEADER / FOOTER ===== */

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-list {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .site-footer {
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

/* ===== MENU PAGE ===== */

.menu-intro {
  padding-block: 2.5rem 1.5rem;
}

.menu-intro .section-title {
  margin-bottom: 0.4rem;
}

.menu-intro .section-subtitle {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.menu-note {
  font-size: 0.9rem;
  color: #725a87;
}

/* each menu block */

.menu-section {
  padding-block: 2rem;
  border-top: 1px solid rgba(224, 199, 255, 0.7);
}

/* extra breathing room before footer */
.menu-section--catering {
  padding-bottom: 3rem;
}

.menu-layout {
  display: grid;
  gap: 1.75rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .menu-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

.menu-section-media {
  max-width: 360px;
}

.menu-section-img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(42, 22, 61, 0.16);
}

.menu-section-content {
  max-width: 620px;
}

.menu-section-title {
  font-size: 1.6rem;
  margin: 0 0 0.3rem;
}

.menu-section-subtitle {
  margin: 0 0 1rem;
  color: #725a87;
}

/* menu items */

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.menu-item {
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(224, 199, 255, 0.7);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-item-name {
  font-weight: 600;
  color: #2a163d;
}

.menu-item-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(80, 28, 128, 0.35);
  background: rgba(255, 247, 255, 0.95);
  color: #3a155c;
}

.menu-item-tag--limited {
  border-color: rgba(224, 32, 133, 0.7);
  background: rgba(224, 32, 133, 0.08);
  color: #e02085;
}

.menu-item-desc {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: #725a87;
}

/* stack image + content on small screens */

@media (max-width: 768px) {
  .menu-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-section-media {
    max-width: none;
  }
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
  padding-block: 3rem 2rem;
}

.contact-layout {
  padding-block: 1rem 3rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-block {
  background: #fff7ff;
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid #e0c7ff;
}

.contact-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}

.contact-note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
}

.contact-form-wrapper {
  background: #fff7ff;
  border-radius: 1rem;
  padding: 1.25rem 1.35rem 1.4rem;
  border: 1px solid #e0c7ff;
  box-shadow: 0 10px 24px rgba(42, 22, 61, 0.12);
}

.contact-form-intro {
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

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

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #2a163d;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.7rem;
  border: 1px solid #e0c7ff;
  padding: 0.55rem 0.75rem;
  font-family: "hoss-round", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: #2a163d;
  background-color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid #501c80;
  outline-offset: 1px;
}

.contact-small-print {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #725a87;
}

.contact-map {
  padding-block: 0 3rem;
}

.contact-map-box {
  border-radius: 1.25rem;
  border: 1px dashed #e0c7ff;
  padding: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: #725a87;
  background: #fff7ff;
}

.contact-map-label {
  margin: 0;
}

/* About */

.about-hero,
.about-story,
.menu-intro.about-hero {
  padding-top: 3rem;    
}

.about-story .about-image {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}