﻿/* ================================================================
   SILLY GOOSE BAKERY — MAIN STYLESHEET
   ================================================================

   HOW TO CUSTOMIZE THIS FILE:
   -----------------------------------------------------------------
   1. COLORS:  All colors live in the :root block below. Change a
               hex value there and the ENTIRE site updates. No need
               to search through 700 lines of CSS.

   2. FONTS:   --font-heading and --font-body are also in :root.
               To swap fonts, change the variable here AND update
               the Google Fonts <link> tag in every HTML <head>.

   3. SIZING:  --max-width = page content width.
               --radius    = how rounded card corners are.

   4. SECTIONS: Each chunk of this file has a big header comment
                (HEADER & NAV, HERO, MENU PAGE, etc.). Use Ctrl+F
                to jump to the one you need.

   5. RESPONSIVE: Media queries live at the very bottom. They
                  adjust grids for tablets and phones.
   ================================================================ */


/* ------- CSS RESET -------
   Removes default browser spacing so things look the same
   in Chrome, Firefox, Safari, Edge, etc. */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ======================
   COLOR & FONT VARIABLES
   ======================

   HOW TO CHANGE COLORS:
   Edit the hex values below. The whole site updates instantly.

   Current palette: cozy + girly
   (blush pink, dusty rose, soft lavender, warm cream)

   Example — make the accent more coral:
     --color-rose: #D4849A;  -->  --color-rose: #E07070;

   Example — pure white background:
     --color-cream: #FFF5F5;  -->  --color-cream: #FFFFFF;
*/
:root {
  /* -- Background colors -- */
  --color-cream: #FFF5F5;           /* Page background (soft pinkish cream) */
  --color-warm-white: #FFFAF9;      /* Card/section backgrounds (slightly warmer) */

  /* -- Accent / brand colors -- */
  --color-rose: #D4849A;            /* Primary accent: buttons, links, prices */
  --color-blush: #F2C4CE;           /* Light pink: gradients and highlights */
  --color-mauve: #B0879B;           /* Muted mauve: hover states */
  --color-lavender: #C9B8D9;        /* Soft lavender: gradient accent */

  /* -- Text colors -- */
  --color-dark: #4A2C3D;            /* Dark plum: headings & primary text */
  --color-text: #4A2C3D;            /* Body text (same as dark) */
  --color-text-light: #7D5E6F;      /* Lighter plum: descriptions, captions */

  /* -- Borders -- */
  --color-border: #F0DDE3;          /* Soft pink border for cards/dividers */

  /* -- Fonts --
     To swap: pick a font at fonts.google.com, update the variable
     below AND the <link> tag in each HTML file's <head>. */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', Arial, sans-serif;

  /* -- Layout -- */
  --max-width: 1200px;              /* Increase for a wider site */
  --radius: 12px;                   /* Card corner roundness */
  --shadow: 0 2px 16px rgba(74, 44, 61, 0.07);
  --shadow-hover: 0 6px 24px rgba(74, 44, 61, 0.13);
}

html {
  scroll-behavior: smooth;  /* Smooth scroll for anchor links */
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-rose);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-mauve);
}

ul {
  list-style: none;
}

/* .container — centers content and adds side padding.
   Change --max-width above to make the site wider/narrower. */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ======================
   HEADER & NAV
   ======================
   Sticky header that stays at the top while scrolling.
   To add a new nav link: add a <li><a> inside <ul class="nav-links">
   in EVERY HTML file (they all share the same header markup). */

.site-header {
  background: var(--color-warm-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;     /* Keeps nav visible while scrolling */
  top: 0;
  z-index: 100;         /* Sits above all other content */
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo: goose images flank the bakery name */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  max-width: 260px;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--color-rose), var(--color-mauve));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav links row */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-dark);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

/* Active page link gets a rose underline.
   Add class="active" to the current page's <a> in the HTML. */
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-rose);
  border-bottom-color: var(--color-rose);
}

/* Hamburger menu button — hidden on desktop, shown on phones.
   The three <span> children become the 3 lines of the icon. */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* ======================
   BUTTONS
   ======================
   Two styles: btn-primary (filled) and btn-secondary (outlined).
   Use class="btn btn-primary" or "btn btn-secondary" on any <a> or <button>.
   To change shape: border-radius 50px = pill, 8px = rounded square.
   To change color: edit --color-rose in the :root variables. */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;       /* Pill shape — change to 8px for square-ish */
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);   /* Subtle lift on hover */
  box-shadow: var(--shadow-hover);
}

/* Filled button — rose pink */
.btn-primary {
  background-color: var(--color-rose);
  color: #fff;
}

.btn-primary:hover {
  background-color: #c07088;    /* Slightly darker on hover */
  color: #fff;
}

/* Outlined button — transparent with rose border */
.btn-secondary {
  background-color: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-rose);
}

.btn-secondary:hover {
  background-color: var(--color-rose);
  color: #fff;
}


/* ======================
   HERO SECTION (Home page only)
   ======================
   Big banner at the top of index.html.
   Gradient goes from blush pink to lavender.

   TO USE A BACKGROUND IMAGE INSTEAD OF THE GRADIENT:
   Replace the background line below with:
     background-image: url('/images/hero.jpg');
     background-size: cover;
     background-position: center;
*/

.hero {
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender) 100%);
  padding: 100px 24px;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-dark);
  opacity: 0.85;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ======================
   PAGE HERO (inner pages: Menu, About, Contact)
   ======================
   Same gradient as home hero but shorter. */

.page-hero {
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-lavender) 100%);
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-dark);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}


/* ======================
   FEATURES SECTION (Home — 3 highlight cards)
   ======================
   "Fresh Daily", "Made with Love", "Custom Inquiries".
   To add/remove a card, edit <div class="feature-grid"> in index.html. */

.features {
  padding: 80px 0;
  background: var(--color-warm-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 equal columns */
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Emoji icon inside each card — change the emoji in the HTML */
.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}


/* ======================
   POPULAR ITEMS / CUSTOMER FAVORITES (Home page)
   ======================
   Grid of product cards with emoji placeholders.

   TO REPLACE PLACEHOLDERS WITH REAL PHOTOS:
   1. Put your image in /images/
   2. In index.html, replace <div class="item-image-placeholder"><span>emoji</span></div>
      with: <img src="/images/yourphoto.jpg" alt="Description">
   3. The card styling will work the same either way. */

.popular-items {
  padding: 80px 0;
}

/* Centered section heading — reused on multiple pages */
.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-dark);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 3 cards in a row */
  gap: 24px;
}

.item-card {
  background: var(--color-warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Gradient placeholder — swap with <img> when you have photos */
.item-image-placeholder {
  background: linear-gradient(135deg, var(--color-blush), var(--color-lavender));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.item-info {
  padding: 20px;
}

.item-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.item-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}


/* ======================
   TESTIMONIAL (Home page)
   ======================
   Centered customer quote. Edit the <blockquote> in index.html. */

.testimonial {
  padding: 60px 0;
  background: var(--color-warm-white);
}

.testimonial blockquote {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--color-text-light);
  font-size: 1rem;
}


/* ======================
   MENU PAGE (menu.html)
   ======================
   HOW TO EDIT THE MENU:
   - Each category lives in a <div class="menu-category"> in menu.html
   - To ADD an item: copy a <div class="menu-item"> block and edit the text
   - To ADD a category: copy an entire <div class="menu-category"> block
   - To CHANGE a price: edit the <span class="price"> text
   - To REMOVE an item: delete its <div class="menu-item"> block */

.menu-section {
  padding: 60px 0;
}

.menu-category {
  margin-bottom: 48px;
}

/* Category heading with underline (e.g., "Breads", "Pastries") */
.menu-category h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}

.menu-items {
  display: grid;
  gap: 16px;
}

/* Individual menu item card */
.menu-item {
  background: var(--color-warm-white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Name on the left, price on the right */
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.menu-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
}

/* Price uses the rose accent color */
.price {
  font-weight: 700;
  color: var(--color-rose);
  font-size: 1.05rem;
  white-space: nowrap;
}

.menu-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* Allergen note box at the bottom of the menu */
.menu-note {
  background: var(--color-warm-white);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-rose);
  margin-top: 40px;
}

.menu-note p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}


/* ======================
   ORDER FORM (menu.html)
   ======================
   Item cards with quantity selectors + customer info section.
   On submit, JS compiles the order and posts to Formspree. */

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.order-card {
  background: var(--color-warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Gradient placeholder — will be replaced with product photos */
.order-card-image {
  background: linear-gradient(135deg, var(--color-blush), var(--color-lavender));
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-dark);
  opacity: 0.6;
}

.order-card-body {
  padding: 20px;
}

.order-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.order-card-body p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.order-qty label {
  display: block;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background: var(--color-cream);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--color-dark);
  transition: background-color 0.2s;
}

.qty-btn:hover {
  background: var(--color-blush);
}

.qty-control input[type="number"] {
  width: 48px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-warm-white);
  -moz-appearance: textfield;
}

.qty-control input[type="number"]::-webkit-inner-spin-button,
.qty-control input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Customer info section below the item cards */
.order-info-section {
  background: var(--color-warm-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.order-info-section .section-title {
  margin-bottom: 24px;
}

.order-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.order-info-grid .full-width {
  grid-column: 1 / -1;
}

/* Success message shown after order is submitted */
.order-success {
  text-align: center;
  padding: 40px;
  background: var(--color-warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-success h2 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.order-success p {
  color: var(--color-text-light);
}


/* ======================
   ABOUT PAGE (about.html)
   ======================
   Two parts: story (image + text side by side) and values (3-column grid).

   TO ADD YOUR OWN PHOTO:
   In about.html, replace <div class="about-image-placeholder"> with:
     <img src="/images/bakery-shop.jpg" alt="Our bakery" style="border-radius:12px; width:100%; height:400px; object-fit:cover;">
*/

.about-content {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;    /* Two columns: image | text */
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

/* Gradient placeholder for your bakery photo */
.about-image-placeholder {
  background: linear-gradient(135deg, var(--color-blush), var(--color-lavender));
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Values cards — "Quality Ingredients", "Community First", etc. */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}


/* ======================
   CONTACT / INQUIRY PAGE (contact.html)
   ======================
   Left: inquiry form.  Right: store info card.
   The form currently shows an alert on submit (see main.js).
   To connect to a real service:
     Option A — Formspree: change <form action="https://formspree.io/f/YOUR_ID" method="POST">
     Option B — Cloudflare Workers: see the TODO in main.js */

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;    /* Form left, info right */
  gap: 48px;
}

.contact-form-wrapper h2,
.contact-info-card h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 24px;
}

/* Form fields */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-warm-white);
  color: var(--color-text);
  transition: border-color 0.2s;
}

/* Rose border when a field is focused */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-rose);
}

/* Info card on the right side */
.contact-info-card {
  background: var(--color-warm-white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-item {
  margin-bottom: 24px;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.info-item p {
  color: var(--color-text-light);
}

/* Store hours list — day on left, hours on right */
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

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


/* ======================
   FOOTER
   ======================
   Dark plum background with 3 columns: brand, links, contact.
   Edit footer content in each HTML file's <footer> section. */

.site-footer {
  background: var(--color-dark);    /* Dark plum */
  color: #fff;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;   /* Brand column is wider */
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}

/* Keep footer geese on left & right of text, not stacked top/bottom */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand p {
  margin-top: 12px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-blush);     /* Blush pink on hover */
}

.footer-contact p {
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
  opacity: 0.5;
  font-size: 0.85rem;
}


/* ======================
   RESPONSIVE BREAKPOINTS
   ======================
   Adjust layouts for smaller screens:
     968px  = tablets / small laptops
     768px  = phones (landscape) / small tablets
     480px  = phones (portrait)
*/

/* -- Tablets -- */
@media (max-width: 968px) {
  .feature-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;   /* 3 cols -> 2 */
  }

  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -- Phones -- */
@media (max-width: 768px) {
  /* Show hamburger button */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Nav links hidden by default; .open class toggled by JS (main.js) */
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-warm-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;       /* JS adds/removes this class */
  }

  .hero {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  /* Everything becomes single column on mobile */
  .feature-grid,
  .values-grid,
  .items-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid,
  .order-info-grid {
    grid-template-columns: 1fr;
  }

  .about-image-placeholder {
    height: 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* -- Small phones -- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  /* Stack buttons vertically */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
