/* ============================================
   THE RÓS CAFÉ — COMPONENTS STYLESHEET
   css/components.css
   Buttons, cards, menu items, forms, etc.
   ============================================ */

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: var(--shadow-pink);
}

.btn-pink:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 80, 122, 0.3);
}

.btn-pink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s var(--ease-smooth);
}

.btn-pink:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--pink);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--pink-pale);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  min-height: 40px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  min-height: 52px;
}

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--pink);
  transition: color var(--duration-fast) var(--ease-smooth);
}

.arrow-link:hover {
  color: var(--pink-dark);
}

.arrow-link .arrow {
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.arrow-link:hover .arrow {
  transform: translateX(5px);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────────
   SERVICE / OVERVIEW CARDS
   ───────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

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

.card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text-dark);
}

.card-text {
  color: var(--text-mid);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--duration-normal) var(--ease-smooth);
}

.card-link:hover {
  gap: var(--space-sm);
}

.card-link-soon {
  color: var(--text-mid);
  cursor: default;
}

.card-link-soon::before {
  content: "🕒";
  margin-right: 0.35em;
}

/* Service card grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1199px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
   MENU ITEM CARDS
   ───────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.menu-item {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-md);
  position: relative;
  transition: box-shadow var(--duration-normal) var(--ease-smooth);
}

.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--pink);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.menu-item-content {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.menu-item-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--pink);
  font-weight: 600;
  flex-shrink: 0;
}

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

/* ─────────────────────────────────────────────
   FEATURE CARDS (Cakes & Catering)
   ───────────────────────────────────────────── */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

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

.feature-card-icon {
  width: 64px;
  height: 64px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto var(--space-md);
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.feature-card:hover .feature-card-icon {
  animation: pulse 0.5s var(--ease-smooth);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.feature-card-text {
  font-size: 0.9375rem;
  color: var(--text-mid);
}

@media (max-width: 991px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
   INFO TILES (Catering)
   ───────────────────────────────────────────── */
.info-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.info-tile {
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--pink-light);
}

.info-tile-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.info-tile-label {
  font-size: 0.8125rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .info-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────────
   NOTICE / BADGE BOXES
   ───────────────────────────────────────────── */
.notice {
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.notice-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--pink-dark);
}

.notice-content p {
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.notice-success {
  background: #f0fdf4;
  border-color: #86efac;
}

.notice-success h3 {
  color: #166534;
}

/* ─────────────────────────────────────────────
   ORNAMENTAL DIVIDERS
   ───────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.ornament-line {
  height: 1px;
  width: 80px;
  background: var(--pink-light);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-smooth);
}

.ornament.is-visible .ornament-line {
  transform: scaleX(1);
}

.ornament-dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
}

.ornament-rose {
  color: var(--pink);
  font-size: 1.25rem;
}

/* ─────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--text-dark);
  text-align: left;
  background: white;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.faq-question:hover {
  background: var(--pink-pale);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth);
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   CONTACT FORM
   ───────────────────────────────────────────── */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e5dfe2;
  border-radius: var(--radius-md);
  background: var(--warm-white);
  transition: border-color var(--duration-fast) var(--ease-smooth),
              box-shadow var(--duration-fast) var(--ease-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(212, 80, 122, 0.1);
}

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

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: #ef4444;
  animation: shake 0.4s var(--ease-smooth);
}

/* Focus underline effect */
.form-field {
  position: relative;
}

.form-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--duration-normal) var(--ease-smooth),
              left var(--duration-normal) var(--ease-smooth);
}

.form-field:focus-within::after {
  width: 100%;
  left: 0;
}

/* Form row for side by side fields */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 575px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
   FORM SUCCESS STATE
   ───────────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.is-visible {
  display: block;
  animation: fadeIn 0.5s var(--ease-smooth);
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
}

.success-checkmark-circle {
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkCircle 0.6s var(--ease-smooth) forwards;
}

.success-checkmark-check {
  fill: none;
  stroke: var(--pink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkMark 0.3s var(--ease-smooth) 0.6s forwards;
}

@keyframes checkCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkMark {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.success-text {
  color: var(--text-mid);
}

/* ─────────────────────────────────────────────
   GALLERY
   ───────────────────────────────────────────── */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  position: relative;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border-radius: var(--radius-full);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
  z-index: 1;
}

.gallery-tab:hover {
  color: var(--pink);
}

.gallery-tab.is-active {
  color: white;
}

.tab-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--pink);
  border-radius: var(--radius-full);
  transition: transform var(--duration-normal) var(--ease-smooth),
              width var(--duration-normal) var(--ease-smooth);
  z-index: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-light);
  font-size: 2rem;
}

.gallery-content {
  position: relative;
}

.gallery-panel {
  display: none;
}

.gallery-panel.is-active {
  display: block;
  animation: fadeIn var(--duration-normal) var(--ease-smooth);
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .gallery-tabs {
    gap: var(--space-xs);
  }

  .gallery-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* ─────────────────────────────────────────────
   MAP SECTION
   ───────────────────────────────────────────── */
.map-container {
  background: var(--pink-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--text-mid);
}

.map-placeholder-icon {
  font-size: 3rem;
  color: var(--pink);
}

/* ─────────────────────────────────────────────
   HOURS STRIP
   ───────────────────────────────────────────── */
.hours-strip {
  background: var(--charcoal);
  color: white;
  padding: var(--space-lg) 0;
}

.hours-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.hours-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hours-strip-day {
  font-weight: 600;
  color: var(--pink-light);
}

.hours-strip-time {
  color: rgba(255, 255, 255, 0.8);
}

.hours-strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
  .hours-strip .container {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hours-strip-divider {
    display: none;
  }
}

/* ─────────────────────────────────────────────
   HOURS TABLE (Contact Page)
   ───────────────────────────────────────────── */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid #e5dfe2;
}

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

.hours-day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-time {
  color: var(--text-mid);
}

.hours-closed {
  color: var(--pink);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   PINK CTA BANNER
   ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ─────────────────────────────────────────────
   PDF DOWNLOAD CTA
   ───────────────────────────────────────────── */
.download-cta {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.download-cta-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.download-cta-content p {
  color: var(--text-mid);
  font-size: 0.9375rem;
}

@media (max-width: 575px) {
  .download-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────
   SECTION HEADINGS
   ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .eyebrow {
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-mid);
}

/* ─────────────────────────────────────────────
   STORY / ABOUT SECTION
   ───────────────────────────────────────────── */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--pink-pale), var(--cream));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.story-content .eyebrow {
  margin-bottom: var(--space-md);
}

.story-content h2 {
  margin-bottom: var(--space-lg);
}

.story-quote {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--pink);
  border-left: 3px solid var(--pink);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.story-content p {
  color: var(--text-mid);
  line-height: 1.8;
}

@media (max-width: 991px) {
  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ─────────────────────────────────────────────
   CONTACT INFO
   ───────────────────────────────────────────── */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--text-dark);
}

.contact-info-content a {
  color: var(--pink);
  font-weight: 500;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.contact-info-content a:hover {
  color: var(--pink-dark);
}

.contact-info-content p {
  color: var(--text-mid);
  font-size: 0.9375rem;
}

/* ─────────────────────────────────────────────
   INSTAGRAM CTA
   ───────────────────────────────────────────── */
.instagram-cta {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  color: white;
}

.instagram-cta h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.instagram-cta p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

/* ─────────────────────────────────────────────
   CROSS LINKS
   ───────────────────────────────────────────── */
.cross-links {
  background: var(--pink-pale);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.cross-links p {
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

.cross-links a {
  color: var(--pink);
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.cross-links a:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   TWO COLUMN LAYOUT
   ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.two-col-wide-left {
  grid-template-columns: 1.2fr 0.8fr;
}

.two-col-wide-right {
  grid-template-columns: 0.8fr 1.2fr;
}

@media (max-width: 991px) {
  .two-col,
  .two-col-wide-left,
  .two-col-wide-right {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
   INTRO TEXT
   ───────────────────────────────────────────── */
.intro-text {
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.intro-text p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   CAKE GALLERY PLACEHOLDER
   ───────────────────────────────────────────── */
.cake-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.cake-gallery-item {
  aspect-ratio: 1;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.cake-gallery-item:hover {
  transform: scale(1.03);
}

@media (max-width: 575px) {
  .cake-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─────────────────────────────────────────────
   INSTAGRAM FEED
   ───────────────────────────────────────────── */
.instagram-feed {
  text-align: center;
}

.instagram-handle {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

.instagram-handle:hover {
  color: var(--pink-dark);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.instagram-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.instagram-item:hover img,
.instagram-item:focus-visible img {
  transform: scale(1.06);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 32, 40, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.instagram-item:hover .instagram-overlay,
.instagram-item:focus-visible .instagram-overlay {
  opacity: 1;
}

.instagram-icon {
  color: white;
}

.instagram-icon svg {
  width: 32px;
  height: 32px;
}

.instagram-overlay-text {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-follow {
  margin-top: var(--space-lg);
}

.instagram-follow .btn {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 767px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-icon svg {
    width: 24px;
    height: 24px;
  }

  .instagram-overlay-text {
    font-size: 0.7rem;
  }
}

/* ─────────────────────────────────────────────
   GOOGLE MAPS EMBED
   ───────────────────────────────────────────── */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─────────────────────────────────────────────
   REAL PHOTOS IN PLACEHOLDER FRAMES
   Lets <img> fill the hero, story and cake-gallery
   frames (gallery-item img is already handled above).
   ───────────────────────────────────────────── */
.hero-placeholder,
.story-image,
.cake-gallery-item {
  overflow: hidden;
  padding: 0;
}

.hero-placeholder > img,
.story-image > img,
.cake-gallery-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────────────
   GALLERY ITEMS ALWAYS VISIBLE
   The .gallery-grid grids carry .stagger-children but NOT
   .scroll-reveal, so the IntersectionObserver never adds
   .is-visible and the items would stay at opacity:0.
   Reveal them via CSS so the photos always show (incl. on
   tab switches, where hidden panels may not re-observe).
   ───────────────────────────────────────────── */
.gallery-grid.stagger-children > .gallery-item {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────────
   MENU CARD PREVIEW (cake & catering menu images)
   ───────────────────────────────────────────── */
.menu-preview {
  text-align: center;
}
.menu-preview img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease-smooth);
}
.menu-preview a:hover img {
  transform: scale(1.02);
}
