/* Alta's 90th Birthday - Traditional Quilting Theme */
/* Color Palette - Classic Quilt Colors: Blues, Purples, Reds, Pinks, Greys */
:root {
  --deep-red: #A4243B;
  --soft-pink: #D89CAE;
  --lavender: #9B8DB5;
  --dusty-blue: #6B8BA9;
  --navy: #2C3E5D;
  --cream: #F5F1E8;
  --light-grey: #E5E5E5;
  --medium-grey: #A8A8A8;
  --rose-pink: #C87289;
  --periwinkle: #8B9DC3;
  --text-dark: #2C2C2C;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(164, 36, 59, 0.02) 100px, rgba(164, 36, 59, 0.02) 101px),
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(164, 36, 59, 0.02) 100px, rgba(164, 36, 59, 0.02) 101px),
    linear-gradient(180deg, var(--cream) 0%, var(--light-grey) 100%);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Hero Section - Traditional quilt colors with fabric pattern */
.hero {
  background:
    radial-gradient(ellipse at 50% 40%, var(--soft-pink) 0%, transparent 60%),
    linear-gradient(135deg, var(--dusty-blue) 0%, var(--lavender) 50%, var(--rose-pink) 100%);
  color: var(--white);
  padding: 6rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: visible;
  margin-bottom: 0;
}

/* Bottom stitching for hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(164, 36, 59, 0.8) 0px,
    rgba(164, 36, 59, 0.8) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: translateY(10px);
  z-index: 100;
  pointer-events: none;
}

/* Patchwork quilt pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    /* Quilting stitch grid */
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.08) 80px, rgba(255,255,255,0.08) 82px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.08) 80px, rgba(255,255,255,0.08) 82px),
    /* Diagonal pattern */
    repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255,255,255,0.05) 50px, rgba(255,255,255,0.05) 52px),
    repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255,255,255,0.05) 50px, rgba(255,255,255,0.05) 52px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--deep-red);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-red), var(--rose-pink), var(--lavender));
  border-radius: 2px;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.tagline {
  font-size: 1.75rem;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}

.event-details {
  font-size: 1.4rem;
  margin: 2.5rem 0;
  line-height: 2;
  font-weight: 300;
}

.event-details strong {
  font-weight: 700;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Animated Quilt Block */
.quilt-block-container {
  margin: 3rem auto;
  max-width: 400px;
  position: relative;
}

.quilt-block {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(139, 38, 53, 0.1);
  position: relative;
}

/* Quilting stitches around the block */
.quilt-block::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 2px dashed rgba(139, 38, 53, 0.3);
  border-radius: 8px;
  pointer-events: none;
}

/* Quilt block image styles */
.quilt-block-image {
  transition: opacity 0.5s ease-in-out;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.quilt-pattern-name {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-style: italic;
  transition: opacity 0.3s ease;
}

/* Quilt block animation */
.quilt-square.animating {
  animation: quiltFlip 0.6s ease-in-out;
}

@keyframes quiltFlip {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(0.8) rotate(180deg); opacity: 0.7; }
  100% { transform: scale(1) rotate(360deg); }
}

/* Flowing sections - full width quilt panels */
section {
  position: relative;
  padding: 5rem 2rem;
  width: 100%;
  margin: 0;
}

/* Content wrapper for sections */
section > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Quilt panel base styles */
.quilt-panel {
  background:
    /* Fabric pattern - small dots */
    radial-gradient(circle at 20% 30%, rgba(107, 139, 169, 0.08) 0%, transparent 2%),
    radial-gradient(circle at 80% 70%, rgba(200, 114, 137, 0.08) 0%, transparent 2%),
    radial-gradient(circle at 50% 50%, rgba(155, 141, 181, 0.08) 0%, transparent 2%),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  background-size: 40px 40px, 35px 35px, 50px 50px, 100% 100%;
  padding: 5rem 2rem;
  position: relative;
  margin: 0;
}

/* Top stitching line for quilt panels */
.quilt-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(164, 36, 59, 0.8) 0px,
    rgba(164, 36, 59, 0.8) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: translateY(-10px);
  z-index: 100;
  pointer-events: none;
}

/* Bottom stitching line for quilt panels */
.quilt-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(164, 36, 59, 0.8) 0px,
    rgba(164, 36, 59, 0.8) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: translateY(10px);
  z-index: 100;
  pointer-events: none;
}

/* Light panel variation */
.light-panel {
  background:
    /* Herringbone pattern */
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(107, 139, 169, 0.03) 10px, rgba(107, 139, 169, 0.03) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(155, 141, 181, 0.03) 10px, rgba(155, 141, 181, 0.03) 20px),
    linear-gradient(165deg, var(--cream) 0%, var(--white) 100%);
  border-left: 2px dashed rgba(155, 141, 181, 0.2);
  border-right: 2px dashed rgba(107, 139, 169, 0.2);
}

/* Travel section with subtle striped pattern background */
#travel {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(139, 157, 195, 0.08),
      rgba(139, 157, 195, 0.08) 15px,
      rgba(107, 139, 169, 0.05) 15px,
      rgba(107, 139, 169, 0.05) 30px
    ),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
}


/* Quilt story card with floral fabric pattern */
.quilt-story {
  background:
    /* Floral pattern */
    radial-gradient(circle at 10% 20%, rgba(216, 156, 174, 0.15) 0%, transparent 15%),
    radial-gradient(circle at 90% 80%, rgba(200, 114, 137, 0.15) 0%, transparent 15%),
    radial-gradient(circle at 50% 50%, rgba(155, 141, 181, 0.1) 0%, transparent 20%),
    linear-gradient(135deg, var(--soft-pink) 0%, var(--rose-pink) 100%);
  background-size: 80px 80px, 70px 70px, 90px 90px, 100% 100%;
  color: var(--white);
  padding: 3rem;
  border-radius: 24px;
  margin: 2rem 0 3rem;
  box-shadow: 0 10px 40px rgba(200, 114, 137, 0.3);
  position: relative;
  overflow: hidden;
}

.quilt-story::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.quilt-story h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.quilt-story p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Venue info card - solid and readable */
.venue-info {
  background: var(--white);
  color: var(--text-dark);
  padding: 3rem;
  border-radius: 24px;
  margin: 2rem 0 3rem;
  box-shadow: 0 10px 40px rgba(107, 139, 169, 0.2);
  border-top: 5px solid var(--periwinkle);
}

.venue-info h3 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.venue-info p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.venue-info .venue-note {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Hotel info - modern card with gradient */
.hotel-info {
  background: linear-gradient(135deg, var(--dusty-blue) 0%, var(--periwinkle) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 24px;
  margin: 2rem 0 3rem;
  box-shadow: 0 10px 40px rgba(107, 139, 169, 0.3);
  position: relative;
  overflow: hidden;
}

.hotel-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hotel-info h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.hotel-info p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hotel-info .location-note {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.hotel-info em {
  opacity: 0.9;
  font-size: 1rem;
}

/* Map Container */
.map-container {
  margin: 3rem 0;
  text-align: center;
}

.map-container h3 {
  color: var(--deep-red);
  margin-bottom: 1rem;
}

.map-container p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Airport Grid - Modern cards */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.airport-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.airport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--deep-red), var(--rose-pink));
}

.airport-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.airport-code {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
}

.airport-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1rem 0;
}

.airport-note {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Schedule section - warm gradient background */
#schedule {
  background: linear-gradient(15deg, var(--sand) 0%, var(--cream) 50%, #FFF5E1 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding: 6rem 2rem;
  margin-top: -2rem;
}

#schedule h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.schedule-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-day {
  margin-bottom: 3rem;
}

.schedule-day h3 {
  color: var(--electric-orange);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.schedule-day h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--bright-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.schedule-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--turquoise);
  transition: transform 0.2s, box-shadow 0.2s;
}

.schedule-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.schedule-time {
  font-weight: 800;
  color: var(--deep-teal);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.schedule-description {
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* RSVP Section - Traditional quilt gradient with gingham pattern */
#rsvp {
  background:
    /* Gingham check pattern */
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.08) 20px, rgba(255,255,255,0.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255,255,255,0.08) 20px, rgba(255,255,255,0.08) 40px),
    linear-gradient(135deg, var(--deep-red) 0%, var(--rose-pink) 50%, var(--lavender) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  position: relative;
  margin: 0;
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
  border-right: 2px dashed rgba(255, 255, 255, 0.2);
}

/* Top stitching line - brighter for visibility on dark background */
#rsvp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0px,
    rgba(255, 255, 255, 0.7) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: translateY(-10px);
  z-index: 100;
  pointer-events: none;
}

/* Bottom stitching line - dark for visibility on light background below */
#rsvp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(164, 36, 59, 0.8) 0px,
    rgba(164, 36, 59, 0.8) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: translateY(10px);
  z-index: 100;
  pointer-events: none;
}

#rsvp h2 {
  color: var(--white);
  text-align: center;
}

#rsvp h2::after {
  background: linear-gradient(90deg, var(--white), var(--soft-pink));
}

#rsvp > p {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

/* Form - Clean modern design */
.form-container {
  background: var(--white);
  color: var(--text-dark);
  padding: 3rem;
  border-radius: 24px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

/* Form Messages */
.form-message {
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.form-success h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-success p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.form-error {
  background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

.form-error h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-error p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-error a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* Buttons - Bold and modern */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-pink) 0%, var(--deep-red) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(164, 36, 59, 0.4);
  font-weight: 800;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(164, 36, 59, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--periwinkle) 0%, var(--dusty-blue) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(107, 139, 169, 0.3);
  font-weight: 800;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(107, 139, 169, 0.5);
}



#about-az h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--soft-pink);
}

.info-card h3 {
  margin-bottom: 1.5rem;
}

.info-card ul {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.info-card li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Weather Card Specific Styles */
.weather-card {
  border-top: 5px solid var(--periwinkle);
  background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
}

.weather-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.weather-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.weather-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.weather-stat:hover {
  transform: translateY(-4px);
}

.weather-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.weather-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.weather-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

/* Footer - Simple and clean */
footer {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-red) 100%);
  color: var(--cream);
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

/* Top stitching for footer */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0px,
    rgba(255, 255, 255, 0.7) 10px,
    transparent 10px,
    transparent 15px
  );
  transform: translateY(-10px);
  z-index: 100;
  pointer-events: none;
}

footer p {
  margin: 0.75rem 0;
  font-size: 1.1rem;
}

footer a {
  color: var(--soft-pink);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--lavender);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.3rem;
  }

  .event-details {
    font-size: 1.2rem;
  }

  .quilt-block {
    width: 250px;
    height: 250px;
    padding: 8px;
  }

  .quilt-pattern-name {
    font-size: 1.1rem;
  }

  .weather-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

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

  .form-container {
    padding: 2rem;
  }

  /* Reduce textarea padding on mobile to prevent placeholder overflow */
  .form-group textarea {
    padding: 0.75rem;
  }

  .hotel-info {
    padding: 2rem;
  }

  /* Simplify stitching on mobile */
  .quilt-panel,
  #rsvp,
  .hero {
    border-width: 1px;
  }

  .quilt-panel::before,
  #rsvp::before,
  #about-az::before {
    transform: translateY(-5px);
  }

  .quilt-panel::after,
  #rsvp::after,
  .hero::after,
  #about-az::after {
    transform: translateY(5px);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}
