/*
 * Stylesheet for Nylah’s Squeeze Eazy landing page
 * Mobile‑first design using a bright lemonade‑inspired palette.
 * Feel free to replace placeholder images with real photos later.
 */

/* CSS Variables for easy theming */
:root {
  --primary: #f7d46d; /* Lemon yellow */
  --secondary: #71c441; /* Fresh green */
  --accent: #fddf8a; /* Light yellow for backgrounds */
  --text-dark: #333;
  --text-light: #555;
  --white: #fff;
}

/* Global styles */
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;
}

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

a:hover {
  text-decoration: underline;
}

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

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

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

.logo {
  height: 48px;
  width: auto;
}

.nav {
  display: none;
}

.nav a {
  margin-left: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* 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: 4rem 0 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trust-line {
  font-weight: 500;
  color: var(--text-light);
}

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

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-style: italic;
  color: var(--text-light);
}

/* 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 / product grid */
.menu {
  background-color: #fafafa;
  padding: 2rem 0;
}

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

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

.product-card {
  background-color: var(--white);
  border: 1px solid #eee;
  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%;
  display: block;
  height: 150px;
  object-fit: cover;
}

.product-card h3 {
  margin: 0.5rem;
  font-size: 1.1rem;
}

.product-card p {
  margin: 0 0.5rem 1rem;
  font-size: 0.9rem;
  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);
}

/* 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;
  text-align: center;
  gap: 0.5rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 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 breakpoints */
@media (min-width: 640px) {
  /* Show navigation on larger screens */
  .nav {
    display: flex;
    align-items: center;
  }
  .nav a {
    margin-left: 1rem;
    font-size: 1rem;
  }
  .desktop-only {
    display: inline-block;
  }
  .mobile-bar {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: center;
  }
  .step {
    max-width: 200px;
  }
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  .booking,
  .social-proof,
  .story,
  .menu,
  .events,
  .contact {
    padding: 3rem 0;
  }
  .contact .btn.primary {
    max-width: 250px;
  }
}