/* ================================================
   NOOR BAKE BAKERY — Shared Stylesheet
   Brand: Weblear / Client: Noor Bake Bakery, Muscat
   ================================================ */

/* Google Fonts — Playfair Display + Poppins */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

/* ------------------------------------------------
   CSS Variables
   ------------------------------------------------ */
:root {
  /* Brand Colors */
  --primary:         #C25E1E;
  --primary-hover:   #A84D16;
  --secondary:       #E8A068;
  --accent:          #D4896A;
  --bg:              #FDF6EC;
  --card-bg:         #FAF0E6;
  --heading:         #1A1A1A;
  --body-text:       #6B6B6B;
  --white:           #FFFFFF;
  --shadow:          rgba(194, 94, 30, 0.15);
  --shadow-md:       rgba(194, 94, 30, 0.25);

  /* Radius */
  --radius-card:     12px;
  --radius-btn:      8px;

  /* Typography */
  --font-heading:    'Playfair Display', Georgia, serif;
  --font-body:       'Poppins', system-ui, sans-serif;

  /* Layout */
  --max-width:       1200px;
  --transition:      250ms ease;
}

/* ------------------------------------------------
   Reset & Base
   ------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}

/* ------------------------------------------------
   Layout Utilities
   ------------------------------------------------ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--body-text);
}

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px var(--shadow);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-md);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--shadow);
}

/* ------------------------------------------------
   Navbar
   ------------------------------------------------ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid rgba(194, 94, 30, 0.12);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

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

.nav-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-top: 15px;
  margin-left: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--heading);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

/* Underline indicator on regular links */
.nav-links a:not(.nav-order-btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:not(.nav-order-btn):hover::after,
.nav-links a:not(.nav-order-btn).active::after {
  width: 100%;
}

.nav-links a:not(.nav-order-btn):hover,
.nav-links a:not(.nav-order-btn).active {
  color: var(--primary);
}

/* "Order Now" button style inside nav */
.nav-order-btn {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  box-shadow: 0 3px 10px var(--shadow);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-order-btn:hover {
  background: var(--primary-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px var(--shadow-md);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(194, 94, 30, 0.08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-down menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 998;
  border-bottom: 1px solid rgba(194, 94, 30, 0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--heading);
  border-bottom: 1px solid rgba(194, 94, 30, 0.08);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--primary);
  padding-left: 0.875rem;
}

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

/* ------------------------------------------------
   Hero — Home Page
   ------------------------------------------------ */
.hero {
  padding: 7rem 1.5rem 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Warm decorative radial blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232, 160, 104, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 137, 106, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(194, 94, 30, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero > .hero-content > p {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--body-text);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------------------
   Product / Item Cards
   ------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px var(--shadow-md);
}

.card-img-wrap {
  overflow: hidden;
  height: 200px;
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card-price {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-body);
}

/* ------------------------------------------------
   Split Grid (About Teaser, Story Section)
   ------------------------------------------------ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.split-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 30px var(--shadow);
}

.split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.split-content p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ------------------------------------------------
   Testimonials
   ------------------------------------------------ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.875rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: var(--body-text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(194, 94, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--heading);
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.author-label {
  font-size: 0.78rem;
  color: var(--body-text);
}

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.footer {
  background: var(--card-bg);
  padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(194, 94, 30, 0.15);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 1rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-col ul a {
  font-size: 0.875rem;
  color: var(--body-text);
  transition: color var(--transition);
}

.footer-links-col ul a:hover {
  color: var(--primary);
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-logo-col img {
  height: 60px;
  width: auto;
}

.footer-logo-col p {
  font-size: 0.84rem;
  color: var(--body-text);
  max-width: 200px;
  line-height: 1.6;
}

.footer-contact-col p {
  font-size: 0.875rem;
  color: var(--body-text);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-col a {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-contact-col a:hover {
  color: var(--primary-hover);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(194, 94, 30, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--body-text);
}

/* ------------------------------------------------
   Page Hero (inner pages)
   ------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(232, 160, 104, 0.25) 100%);
  padding: 4.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(194, 94, 30, 0.1);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 160, 104, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------
   Menu Page
   ------------------------------------------------ */
.menu-section {
  padding: 4.5rem 1.5rem;
}

.menu-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-category {
  margin-bottom: 4.5rem;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.category-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  white-space: nowrap;
}

.category-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(194, 94, 30, 0.5), transparent);
  border-radius: 2px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(194, 94, 30, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ------------------------------------------------
   About Page
   ------------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px var(--shadow-md);
}

.value-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* About photo banner at bottom of About page */
.about-photo-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.about-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(162, 70, 10, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-photo-banner-overlay blockquote {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  text-align: center;
  max-width: 640px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  font-style: italic;
}

/* ------------------------------------------------
   Order Page
   ------------------------------------------------ */
.order-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.order-form-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.order-form-card h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.form-intro {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-bottom: 2rem;
}

/* Form field groups */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--heading);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(194, 94, 30, 0.25);
  border-radius: var(--radius-btn);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--heading);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c4ae98;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194, 94, 30, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #c0392b;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

.form-error.visible {
  display: block;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-success-msg {
  display: none;
  background: rgba(194, 94, 30, 0.09);
  color: var(--primary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-btn);
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
  border: 1px solid rgba(194, 94, 30, 0.2);
}

.form-success-msg.visible {
  display: block;
}

/* Order side panel */
.order-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}

.order-info-box {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.order-info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.order-info-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-info-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.order-info-box ul li .icon {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* WhatsApp order button */
.whatsapp-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.whatsapp-order-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
}

.whatsapp-order-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.confirm-note {
  text-align: center;
  font-size: 0.845rem;
  color: var(--body-text);
  padding: 0.875rem 1rem;
  background: rgba(194, 94, 30, 0.07);
  border-radius: var(--radius-btn);
  border: 1px dashed rgba(194, 94, 30, 0.22);
  line-height: 1.5;
}

/* ------------------------------------------------
   WhatsApp Floating Button (all pages)
   ------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

/* ------------------------------------------------
   Scroll Reveal
   ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ------------------------------------------------
   Responsive — 1024px
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .order-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ------------------------------------------------
   Responsive — 768px
   ------------------------------------------------ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-img {
    height: 280px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-contact-col p {
    justify-content: center;
  }

  .footer-links-col ul {
    align-items: center;
  }

  .order-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .order-side {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* ------------------------------------------------
   Responsive — 480px
   ------------------------------------------------ */
@media (max-width: 480px) {
  .section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .order-form-card {
    padding: 1.5rem;
  }

  .about-photo-banner {
    height: 260px;
  }

  .page-hero {
    padding: 3rem 1.25rem;
  }
}
