/*
Theme Name: Sprinkle Berry Cakes & Desserts
Theme URI: https://sprinkleberrycakes.com
Author: Custom for Raquel Oreggia
Author URI: 
Description: Modern, elegant WordPress theme for Sprinkle Berry Cakes bakery in Clearfield, Utah. Features smooth scroll animations, custom cake showcase, and clean bakery aesthetic.
Version: 1.7.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sprinkleberry
Tags: bakery, custom-cakes, one-column, custom-menu, featured-images, translation-ready
*/

/* ==================================================
   CSS Variables & Reset
   ================================================== */
:root {
  /* Soft pink base + teal + gold – matching the retro bakery reference */
  --logo-pink: #e30a71;
  --logo-teal: #2f9aa6;
  --logo-yellow: #ffd24a;
  --pink: #f7c5d0;
  --pink-soft: #fce8ee;
  --pink-deep: #e89aab;
  --teal: #6eb8a8;
  --teal-deep: #4a9d8c;
  --teal-light: #d4efe8;
  --gold: #d4a84b;
  --gold-soft: #f0d78c;
  --cream: #fce8ee;
  --text: #2c2a28;
  --text-light: #6b6560;
  --white: #fce8ee;
  --shadow: 0 10px 36px rgba(110, 184, 168, 0.18);
  --radius: 18px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Mapped so existing rules still work */
  --berry: var(--teal);
  --berry-dark: var(--teal-deep);
  --berry-light: var(--teal-light);
  --soft-pink: var(--pink-soft);
  --mint: var(--teal-light);
  --mint-deep: var(--teal);
  --mint-dark: var(--teal-deep);
  --yellow: var(--gold-soft);
  --yellow-soft: #fdf6e3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--pink-soft);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  /* Prevent horizontal drag / rubber-banding on iOS */
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

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

/* Round all content photos; leave the header/footer logo uncropped */
img:not(.logo-img) {
  border-radius: var(--radius);
}

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

/* ==================================================
   Typography
   ================================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================================================
   Header
   ================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(252, 232, 238, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 69, 105, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  height: auto;
  padding: 8px 0;
}

.site-logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  line-height: 0;
}

.site-logo .logo-img {
  height: 92px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1102;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--logo-pink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 40, 0.35);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: #fff6f8;
  z-index: 1100;
  padding: 120px 28px 40px;
  box-shadow: -12px 0 32px rgba(227, 10, 113, 0.12);
  transform: translateX(110%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

body.menu-open .main-nav {
  transform: translateX(0);
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 6px;
}

.main-nav a {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 8px;
  border-radius: 10px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--logo-pink);
  background: rgba(227, 10, 113, 0.08);
}

.main-nav a.menu-order {
  margin-top: 16px;
  text-align: center;
  background: var(--logo-pink);
  color: #fff;
}

.main-nav a.menu-order:hover {
  background: #c40862;
  color: #fff;
}

/* ==================================================
   Hero
   ================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  background: var(--pink-soft);
}

.hero-video-wrap {
  position: absolute;
  inset: 16px;
  z-index: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(40, 25, 35, 0.68) 0%,
    rgba(30, 50, 48, 0.55) 50%,
    rgba(35, 25, 30, 0.62) 100%
  );
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.02em;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 20px;
}

.hero-line {
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero-cakes {
  color: var(--logo-pink);
  font-size: 1.05em;
}

.hero-desserts {
  color: var(--logo-teal);
  font-size: 1.28em;
}

.hero-desserts em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.72em;
  color: var(--logo-yellow);
  margin-left: 0.06em;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  vertical-align: baseline;
}

.hero-treats {
  color: var(--logo-yellow);
  font-size: 0.92em;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 36px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #c40862;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: white;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image:hover img {
  transform: rotate(0deg) scale(1.02);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--pink-soft);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--berry);
  font-size: 0.95rem;
}

/* ==================================================
   Sections Common
   ================================================== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ==================================================
   Featured Cakes (Scroll Animation)
   ================================================== */
.featured {
  background: var(--pink-soft);
}

.cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.cake-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  text-align: center;
  color: inherit;
  text-decoration: none;
  display: block;
}

.cake-card.slide-left {
  -webkit-transform: translate3d(-130px, 0, 0);
  transform: translate3d(-130px, 0, 0);
}
.cake-card.slide-right {
  -webkit-transform: translate3d(130px, 0, 0);
  transform: translate3d(130px, 0, 0);
}

.cake-card.visible {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.cake-card .card-image {
  display: block;
  position: relative;
  margin: 0 auto 4px;
  max-width: 340px;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 18px rgba(0,0,0,0.16), 0 4px 6px rgba(0,0,0,0.08);
}

.cake-card img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: var(--radius);
  filter: none;
  transition: transform 0.4s ease;
}

.cake-card:hover .card-image {
  box-shadow: 0 20px 28px rgba(0,0,0,0.20), 0 8px 10px rgba(0,0,0,0.10);
}

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

.cake-card-content {
  padding: 14px 10px 10px;
  background: none !important;
  margin-top: 0;
  display: block !important;
  max-width: 100%;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
}

.cake-card h3 {
  font-size: 1.9rem;
  margin: 0 0 14px;
  color: var(--logo-pink);
  font-weight: 700;
  line-height: 1.15;
}

.cake-card p {
  color: #3d3a38;
  font-size: 1.08rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.cake-card .tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ==================================================
   About
   ================================================== */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-soft) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.stat h4 {
  font-size: 2rem;
  color: var(--berry);
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==================================================
   Gallery / Pop-in Cakes
   ================================================== */
.gallery {
  background: var(--pink-soft);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease, box-shadow 0.4s ease;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--white);
  box-shadow: 0 14px 22px rgba(0,0,0,0.16), 0 5px 8px rgba(0,0,0,0.08);
  cursor: zoom-in;
}

.gallery-item.slide-left {
  -webkit-transform: translate3d(-120px, 0, 0);
  transform: translate3d(-120px, 0, 0);
}
.gallery-item.slide-right {
  -webkit-transform: translate3d(120px, 0, 0);
  transform: translate3d(120px, 0, 0);
}

.gallery-item.visible {
  opacity: 1 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: var(--radius);
  filter: none;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 22px 32px rgba(0,0,0,0.20), 0 8px 12px rgba(0,0,0,0.10);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(to top, rgba(45,42,38,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ==================================================
   Contact / Order
   ================================================== */
.contact {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: white;
}

.contact .section-header h2,
.contact .section-header p {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p,
.contact-info a {
  margin-bottom: 12px;
  display: block;
  opacity: 0.95;
}

.contact-info a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hours-list {
  list-style: none;
  margin-top: 24px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.order-form {
  background: var(--pink);
  color: var(--text);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-form h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--pink-deep);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--pink-soft);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--berry);
}

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

/* ==================================================
   Footer
   ================================================== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  color: white;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-links h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

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

/* ==================================================
   Category / inner pages
   ================================================== */
.page-hero {
  padding: 160px 0 72px;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--cream) 100%);
}

.page-hero-inner {
  max-width: 720px;
}

.page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.category-cta {
  text-align: center;
  margin-top: 48px;
}

.gallery-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
}

.reviews {
  background: var(--pink-soft);
}

.reviews .section-header h2 {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

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

.review-card {
  background: #efb6c4;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.btn-teal {
  background: var(--logo-teal);
  color: #fff;
}

.btn-teal:hover {
  background: #257f8a;
  color: #fff;
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

.review-name {
  font-weight: 700;
  color: var(--teal-deep);
}

.review-name span {
  font-weight: 500;
  color: var(--text-light);
}

.reviews-more {
  text-align: center;
  margin-top: 36px;
}

.berries {
  background: linear-gradient(135deg, #f7c5d0 0%, #fce8ee 55%, #d4efe8 100%);
}

.berries-inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
}

.berries-inner h2 {
  margin-bottom: 12px;
}

.berries-inner p {
  color: var(--text-light);
  margin-bottom: 22px;
}

.berries-note {
  color: var(--teal-deep) !important;
  font-weight: 600;
}

.berries-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.berries-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 50px;
  font-size: 1rem;
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.instagram {
  background: #fff;
}

.instagram-embed-wrap {
  display: flex;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.instagram-embed-wrap iframe,
.instagram-embed-wrap .instagram-media {
  margin: 0 auto !important;
}

.instagram-cta {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   Lightbox / zoom
   ================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 16, 18, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 12px 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pinch-zoom;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img {
  max-width: 96vw;
  max-height: calc(100dvh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.lightbox-stage img.is-zoomed {
  max-width: none;
  max-height: none;
  width: 180vw;
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--logo-pink);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-hint {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

/* ==================================================
   Animations & Utilities
   ================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   Responsive
   ================================================== */

/* Prevent horizontal overflow from slide animations */
.section,
.featured,
.gallery,
.cake-grid,
.gallery-grid,
.hero {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

}

@media (max-width: 600px) {
  .site-logo .logo-img {
    height: 70px;
    max-width: 260px;
  }
  .header-inner {
    min-height: 88px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 768px) {
  .cake-card.slide-left,
  .gallery-item.slide-left {
    -webkit-transform: translate3d(-70px, 0, 0);
    transform: translate3d(-70px, 0, 0);
  }
  .cake-card.slide-right,
  .gallery-item.slide-right {
    -webkit-transform: translate3d(70px, 0, 0);
    transform: translate3d(70px, 0, 0);
  }
}

/* Address map links */
.contact-info a[href*="maps.google"],
.footer-links a[href*="maps.google"] {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info a[href*="maps.google"] {
  color: #fff;
}
.contact-info a[href*="maps.google"]:hover {
  opacity: 0.9;
}
