/* ===== MR C FLORALS & BALLOONS ===== */
/* Palette: Deep Burgundy (#3D0C1E) — base, rich, floral-elegant */
/*          Warm Cream (#FFF8F0) — background, warm, inviting */
/*          Electric Coral (#FF4D6D) — accent, joyful, balloon-energy */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Palette */
  --burgundy: #3D0C1E;
  --burgundy-dark: #2A0612;
  --burgundy-soft: #5A1E32;
  --cream: #FFF8F0;
  --cream-warm: #FFF5EB;
  --coral: #FF4D6D;
  --coral-hover: #FF3357;
  --coral-glow: rgba(255, 77, 109, 0.3);
  --gold: #D4A853;
  --gold-soft: rgba(212, 168, 83, 0.12);

  /* Functional */
  --bg: var(--cream);
  --surface: #FFFFFF;
  --ink: #1A0A12;
  --ink-soft: #5A3A46;
  --muted: #8A6A76;
  --rule: rgba(58, 12, 30, 0.1);
  --shadow: rgba(26, 10, 18, 0.08);
  --shadow-strong: rgba(26, 10, 18, 0.16);

  /* Typography */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 96px;
  --space-3xl: 144px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p { max-width: 65ch; color: var(--ink-soft); }

.section-label {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: var(--space-md);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-2xl) 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--burgundy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 6, 18, 0.92) 0%,
    rgba(61, 12, 30, 0.75) 40%,
    rgba(61, 12, 30, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 77, 109, 0.15);
  border: 1px solid rgba(255, 77, 109, 0.3);
  color: var(--coral);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.hero h1 {
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: var(--space-md);
  max-width: 800px;
}

.hero h1 .ampersand {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

.hero-tagline {
  font-family: var(--body);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 248, 240, 0.8);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--coral);
  color: #FFFFFF;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px var(--coral-glow);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--coral-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: transparent;
  color: #FFFFFF;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 77, 109, 0.08);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 248, 240, 0.9);
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.hero-phone:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-phone svg {
  width: 18px;
  height: 18px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 248, 240, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--burgundy);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-section .section-label {
  color: var(--coral);
}

.reviews-section h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-xl);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s ease;
  position: relative;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 77, 109, 0.2);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.review-text {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 248, 240, 0.9);
  margin-bottom: var(--space-md);
}

.review-author {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
}

.review-author span {
  font-weight: 400;
  color: rgba(255, 248, 240, 0.4);
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--cream-warm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--rule);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--burgundy);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--burgundy-dark);
  color: #FFFFFF;
}

.gallery-section .section-label {
  color: var(--coral);
}

.gallery-section h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-xl);
}

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

.gallery-grid .gallery-item:first-child {
  grid-column: 1 / -1;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item:first-child {
  aspect-ratio: 16/7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== HOURS & INFO ===== */
.info-section {
  background: var(--cream-warm);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--rule);
}

.info-card h3 {
  font-size: 1.2rem;
  color: var(--burgundy);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--rule);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--ink-soft);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.info-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--rule);
}

.info-detail:last-child {
  border-bottom: none;
}

.info-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.info-detail-text {
  font-size: 0.95rem;
}

.info-detail-text strong {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 2px;
}

.info-detail-text a {
  color: var(--coral);
  font-weight: 600;
}

.info-detail-text a:hover {
  text-decoration: underline;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--burgundy);
  color: #FFFFFF;
  position: relative;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-section .section-label {
  color: var(--coral);
}

.contact-section h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.contact-section > .container > p {
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: var(--space-xl);
}

.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 248, 240, 0.8);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  transition: all 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 248, 240, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15);
}

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

.form-status {
  font-size: 0.9rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  display: none;
}

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

.form-status.success {
  background: rgba(255, 255, 255, 0.08);
  color: var(--coral);
  border: 1px solid rgba(255, 77, 109, 0.2);
}

.form-status.error {
  background: rgba(255, 77, 77, 0.1);
  color: #FF6B6B;
  border: 1px solid rgba(255, 77, 77, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--burgundy-dark);
  color: rgba(255, 248, 240, 0.6);
  padding: var(--space-xl) 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer-content .attribution {
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-content .attribution a {
  color: rgba(255, 248, 240, 0.6);
}

.footer-content .attribution a:hover {
  color: var(--coral);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px var(--coral-glow); }
  50% { box-shadow: 0 4px 35px var(--coral-glow), 0 0 60px rgba(255, 77, 109, 0.15); }
}

.hero-content > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

.btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-content > * { opacity: 1; }
  .btn-primary { animation: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: var(--space-xl) 0; }

  .hero { min-height: 90vh; align-items: flex-end; padding-bottom: var(--space-xl); }

  .hero-content { padding: var(--space-xl) var(--space-md) var(--space-lg); }

  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }

  .hero-tagline { font-size: 1rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }

  .btn-primary, .btn-outline, .hero-phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust { flex-direction: column; gap: var(--space-sm); }

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

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: 1; aspect-ratio: 4/3; }

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

  .footer-content { flex-direction: column; text-align: center; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:first-child { grid-column: 1 / -1; }
}
