/*
 * Nylah’s Squeeze Eazy
 * Cleaned master stylesheet
 * Consolidated to remove duplicate/stacked rules and broken braces.
 */

/* =========================
   Theme
   ========================= */
:root {
  --primary: #f7d46d;
  --secondary: #71c441;
  --accent: #fddf8a;
  --text-dark: #333;
  --text-light: #555;
  --white: #fff;
  --border-light: #eee;
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* =========================
   Base
   ========================= */
html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 108px;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =========================
   Header
   ========================= */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 58px;
  padding: 0.35rem 0;
}

/* Single source of truth for logo sizing */
.logo {
  height: 150px;
  width: auto;
  display: block;
}

.nav {
  display: none;
}

.nav a {
  margin: 0 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.2;
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.btn.primary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn.primary:hover {
  background-color: #5fa933;
}

.btn.secondary {
  background-color: var(--primary);
  color: var(--text-dark);
}

.btn.secondary:hover {
  background-color: #f0c143;
}

.call-button {
  background-color: var(--secondary);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.call-button:hover {
  background-color: #5fa933;
}

/* =========================
   Hero
   ========================= */
.hero {
  background-color: var(--accent);
  padding: 2.15rem 0 1.9rem;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--secondary);
}

.hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.15;
  max-width: 620px;
  margin: 0 auto 0.7rem;
  color: var(--text-dark);
}

.hero p {
  max-width: 640px;
  margin: 0 auto 0.85rem;
  line-height: 1.45;
  color: var(--text-light);
}

.hero-service-area {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.hero-service-area strong {
  display: inline-block;
  margin-bottom: 0.2rem;
}

.hero-ctas {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  margin-bottom: 1rem;
}

.trust-line {
  margin-top: 0.65rem;
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* =========================
   Shared content helpers
   ========================= */
.section-intro {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-light);
}

/* =========================
   Booking
   ========================= */
.booking {
  padding: 2rem 0;
  background-color: var(--white);
}

.booking h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  justify-content: center;
  gap: 0.7rem;
  align-items: start;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  max-width: 190px;
  padding: 0.5rem 0.35rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.8rem;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 600;
  flex: 0 0 56px;
}

.step p {
  margin: 0;
  max-width: 180px;
}

/* =========================
   Social proof
   ========================= */
.social-proof {
  background-color: #fafafa;
  padding: 2rem 0;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.testimonials blockquote {
  margin: 0;
  padding: 1rem;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid var(--border-light);
  font-style: normal;
  line-height: 1.5;
  color: var(--text-light);
  height: 100%;
}

/* =========================
   Story
   ========================= */
.story {
  padding: 2rem 0;
}

.story h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.story p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-light);
}

/* =========================
   Menu
   ========================= */
.menu {
  background-color: #fafafa;
  padding: 2rem 0;
}

.menu h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.menu .section-intro {
  font-size: 1.15rem;
}

.menu-copy {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.menu-copy-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
}

.menu-copy-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.22rem;
}

.menu-copy-block p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-light);
}

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

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 260px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.product-card h3,
.product-card h4 {
  margin: 0.5rem;
  font-size: 1.22rem;
}

.product-card p {
  margin: 0 0.5rem 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* =========================
   Events
   ========================= */
.events {
  padding: 2rem 0;
}

.events h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.events p {
  max-width: 750px;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--text-light);
}

.events strong {
  color: var(--secondary);
}

/* =========================
   FAQ
   ========================= */
.faq {
  background-color: var(--white);
  padding: 2rem 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
  background: #fafafa;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-light);
}

/* =========================
   Contact
   ========================= */
.contact {
  background-color: #fafafa;
  padding: 2rem 0 4rem;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.big-phone {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.big-phone a {
  color: var(--secondary);
}

.contact .btn.primary {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 200px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.inquiry-form input,
.inquiry-form select {
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.inquiry-form button {
  margin-top: 0.5rem;
  width: fit-content;
  align-self: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 30px;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.inquiry-form button:hover {
  background-color: #5fa933;
}

.service-area {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-light);
  font-style: italic;
}

/* =========================
   Footer
   ========================= */
.site-footer {
  background-color: var(--accent);
  padding: 1.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-info p {
  margin: 0.25rem 0;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.footer-info a {
  color: var(--secondary);
}

.tagline {
  font-style: italic;
  color: var(--text-light);
}

/* =========================
   Mobile sticky bar
   ========================= */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-button {
  flex: 1;
  padding: 0.6rem 0;
  text-align: center;
  background-color: var(--secondary);
  color: var(--white);
  margin: 0 0.25rem;
  border-radius: 20px;
  font-weight: 600;
}

.mobile-button:hover {
  background-color: #5fa933;
}

/* =========================
   Responsive
   ========================= */
@media (min-width: 640px) {
  .nav {
    display: flex;
    align-items: center;
  }

  .nav a {
    margin-left: 1rem;
    font-size: 1rem;
  }

  .desktop-only {
    display: inline-block;
  }

  .mobile-bar {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-content {
    max-width: 700px;
  }

  .booking,
  .social-proof,
  .story,
  .menu,
  .events,
  .faq,
  .contact {
    padding: 3rem 0;
  }

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

  .contact .btn.primary {
    max-width: 250px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 54px;
  }

  .logo {
    height: 120px;
  }

  .hero {
    padding: 1.7rem 0 1.5rem;
  }

  .hero h1 {
    font-size: 1.55rem;
    max-width: 100%;
  }

  .hero p,
  .hero-service-area {
    font-size: 0.95rem;
  }

  .steps,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .step,
  .step p {
    max-width: none;
  }
}



@media (max-width: 639px) {
  .logo {
    height: 120px;
  }

  .header-inner {
    min-height: 88px;
  }

  .call-button,
  .desktop-only {
    display: none !important;
  }
}



/* Header, logo, socials, and mobile menu */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.logo {
  height: 153px;
  width: auto;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 108px;
  position: relative;
  overflow: visible;
}

.nav {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--text-dark);
}

#primary-menu {
  display: none;
}

#primary-menu.is-open {
  display: flex;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  flex-direction: column;
  padding: 0.5rem 1rem 0.8rem;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  z-index: 3000;
}

#primary-menu.is-open a {
  display: block;
  margin: 0;
  padding: 0.8rem 0;
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 1px solid #f1f1f1;
}

#primary-menu.is-open a:last-child {
  border-bottom: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f6f6f6;
  border: 1px solid #e8e8e8;
  color: var(--text-dark);
  text-decoration: none;
}

.social-link:hover {
  text-decoration: none;
  background: #efefef;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link-disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 639px) {
  .logo {
    height: 102px;
  }

  .header-inner {
    min-height: 84px;
  }

  .desktop-only,
  .call-button {
    display: none !important;
  }

  .header-actions {
    margin-left: 0;
    gap: 0.5rem;
  }

  .social-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
  }
}

@media (min-width: 640px) {
  .logo {
    height: 153px;
  }

  .menu-toggle {
    display: none;
  }

  .nav,
  #primary-menu,
  #primary-menu.is-open {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
  }

  .nav a,
  #primary-menu a,
  #primary-menu.is-open a {
    display: inline-block;
    margin-left: 1rem;
    padding: 0;
    border: 0;
  }

  .social-links {
    display: flex;
  }
}

