/* ============================================
   Lana's 40th - Travel Scrapbook Theme
   ============================================ */

:root {
  /* Main colors */
  --turquoise: #008b8b;
  --turquoise-dark: #006666;
  --terracotta: #e2725b;
  --terracotta-dark: #c04e3a;
  --sunset: #ff8c42;
  --beige: #f5f5dc;
  --sandy: #e9dcc9;
  --paper: #fdf6e3;

  /* Text colors */
  --text: #44403c;
  --text-muted: #78716c;
  --text-light: #ffffff;

  /* Shadows & effects */
  --postcard-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ============ Fonts ============ */
.font-script {
  font-family: 'Caveat', cursive;
}

.font-stamp {
  font-family: 'Bebas Neue', sans-serif;
}

.font-typewriter {
  font-family: 'Special Elite', serif;
}

/* ============ Reset & Base ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  min-height: 100dvh;
}

/* ============ Scrapbook Background ============ */
.scrapbook-bg {
  background-color: var(--sandy);
  background-image: radial-gradient(#d1c4b1 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}

/* ============ Page Wrapper ============ */
.page-wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow-x: hidden;
}

/* ============ Tape Effect ============ */
.tape {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(1px);
  position: absolute;
  width: 60px;
  height: 24px;
}

/* ============ Postcard & Photo Styles ============ */
.postcard {
  background: white;
  box-shadow: var(--postcard-shadow);
  position: relative;
}

.rotated-left {
  transform: rotate(-2deg);
}

.rotated-right {
  transform: rotate(3deg);
}

/* ============ Stamped Text ============ */
.stamped {
  border: 2px solid currentColor;
  padding: 2px 10px;
  display: inline-block;
  transform: rotate(-5deg);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

/* ============ Material Icons ============ */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* ============ Landing Page ============ */
.landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 360px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.hero-photo {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  width: 260px;
  height: 180px;
  background: white;
  padding: 8px;
  box-shadow: var(--postcard-shadow);
  transform: rotate(-2deg);
  z-index: 20;
}

.hero-photo .slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-photo .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-photo .slide.active {
  opacity: 1;
}

.hero-photo .tape {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-globe {
  position: absolute;
  top: 2rem;
  right: 0.5rem;
  width: 140px;
  height: 140px;
  background: rgba(226, 114, 91, 0.15);
  border-radius: 50%;
  border: 2px dashed rgba(226, 114, 91, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-globe .material-symbols-outlined {
  font-size: 72px;
  color: rgba(226, 114, 91, 0.3);
}

.hero-title {
  position: absolute;
  top: 200px;
  right: 1rem;
  text-align: right;
  z-index: 30;
}

.hero-title h1 {
  font-family: 'Caveat', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--turquoise);
  line-height: 1;
  margin: 0;
}

.hero-title .subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--sunset);
  margin-top: -4px;
}

.hero-quote {
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 200px;
  background: var(--paper);
  padding: 1rem;
  box-shadow: var(--postcard-shadow);
  transform: rotate(2deg);
  z-index: 40;
  border-left: 4px solid var(--sunset);
}

.hero-quote p {
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

/* Achievements Section */
.achievements {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.achievements::before {
  content: 'travel_explore';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: -2rem;
  top: 0;
  font-size: 100px;
  opacity: 0.08;
  transform: rotate(12deg);
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.achievement-item:nth-child(2) {
  margin-left: 1rem;
}

.achievement-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.achievement-icon.sunset {
  background: var(--sunset);
}

.achievement-icon.turquoise {
  background: var(--turquoise);
}

.achievement-text {
  flex: 1;
  border-bottom: 2px solid #e7e5e4;
  padding-bottom: 0.5rem;
}

.achievement-text p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin: 0;
}

.achievement-special {
  margin-left: 0.5rem;
}

.achievement-special .stamped {
  color: var(--terracotta);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.achievement-special .script-text {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding-left: 1rem;
  margin: 0;
}

/* Event Card */
.event-card {
  margin: 0 1.5rem 2rem;
  padding: 1.5rem;
  background: white;
  box-shadow: var(--postcard-shadow);
  border-top: 8px solid var(--turquoise);
  position: relative;
}

.event-card .celebration-icon {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  width: 48px;
  height: 48px;
  background: var(--sunset);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.event-card .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.event-card h3 {
  font-family: 'Caveat', cursive;
  font-size: 2.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.event-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.event-photo {
  flex-shrink: 0;
  width: 80px;
  height: 96px;
  background: #f5f5f4;
  border: 2px dashed #d6d3d1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-photo .material-symbols-outlined {
  font-size: 32px;
  color: #d6d3d1;
}

.event-info .venue {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--turquoise);
  margin: 0 0 0.25rem;
}

.event-info .date,
.event-info .time {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.event-info .time {
  font-style: italic;
}

.directions-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--text);
  color: white;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
  text-decoration: none;
}

.directions-btn:hover {
  background: var(--turquoise);
  color: white;
  text-decoration: none;
}

/* Food & Drinks Section */
.food-drinks {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--paper);
  border-radius: 8px;
  border: 2px dashed var(--sandy);
}

.food-drinks-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.food-drinks-item:first-child {
  border-bottom: 1px solid var(--sandy);
}

.food-drinks-item .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 28px;
  color: var(--sunset);
}

.food-drinks-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.food-drinks-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* RSVP CTA */
.rsvp-cta {
  padding: 0 1.5rem;
  margin-top: auto;
}

.rsvp-cta .connector {
  width: 2px;
  height: 40px;
  background: rgba(120, 113, 108, 0.3);
  margin: 0 auto 1rem;
}

.rsvp-btn {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: var(--button-shadow);
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.rsvp-btn:hover {
  background: var(--terracotta-dark);
  color: white;
  text-decoration: none;
}

.rsvp-btn:active {
  transform: scale(0.98);
}

.rsvp-cta .tagline {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* Footer Icons */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0 1rem;
  color: #d6d3d1;
}

.footer-icons .material-symbols-outlined {
  font-size: 1.5rem;
}

/* ============ RSVP Page ============ */
.rsvp-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.rsvp-card {
  background: white;
  box-shadow: var(--postcard-shadow);
  border-top: 8px solid var(--turquoise);
  padding: 2rem 1.5rem;
  position: relative;
}

.rsvp-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed var(--sandy);
}

.rsvp-header h1 {
  font-family: 'Caveat', cursive;
  font-size: 3rem;
  color: var(--turquoise);
  margin-bottom: 0.5rem;
}

.guest-greeting {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.update-notice {
  font-size: 0.85rem;
  color: var(--turquoise);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Form Styles */
.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--sandy);
  border-radius: 4px;
  font-family: 'Special Elite', serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.1);
}

.form-input[readonly] {
  background: var(--sandy);
  color: var(--text-muted);
  cursor: not-allowed;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--sandy);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--paper);
}

.radio-option:hover {
  border-color: var(--turquoise);
  background: white;
}

.radio-option input[type='radio'] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--turquoise);
}

.radio-option:has(input:checked) {
  border-color: var(--turquoise);
  background: white;
  box-shadow: 0 2px 8px rgba(0, 139, 139, 0.1);
}

.radio-option:has(input:checked) .radio-text {
  color: var(--turquoise);
  font-weight: bold;
}

.radio-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--button-shadow);
  transition: background 0.2s, transform 0.1s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--terracotta-dark);
}

.btn-submit:active {
  transform: scale(0.98);
}

/* HTMX Loading Indicator */
.htmx-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.htmx-indicator.htmx-request {
  display: flex;
}

.rsvp-form.htmx-request .btn-text,
.rsvp-form.htmx-request .btn-icon {
  display: none;
}

.rsvp-form.htmx-request .btn-submit {
  pointer-events: none;
  opacity: 0.9;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form container transition */
#rsvp-form-container {
  animation: fadeIn 0.3s ease;
}

.rsvp-form.htmx-request {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Back Link */
.rsvp-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--sandy);
  text-align: center;
}

.back-link {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--turquoise);
  text-decoration: none;
}

/* ============ Thank You Message ============ */
.thank-you-message {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.thank-you-message h2 {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.thank-you-message p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--turquoise);
  border: 2px solid var(--turquoise);
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--turquoise);
  color: white;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Calendar Links */
.calendar-links {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--paper);
  border-radius: 8px;
  border: 2px dashed var(--sandy);
}

.calendar-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem !important;
}

.calendar-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
}

.calendar-btn .material-symbols-outlined {
  font-size: 18px;
}

.calendar-btn.google {
  background: var(--turquoise);
  color: white;
}

.calendar-btn.google:hover {
  background: var(--turquoise-dark);
  text-decoration: none;
  color: white;
}

.calendar-btn.ics {
  background: var(--sunset);
  color: white;
}

.calendar-btn.ics:hover {
  background: #e07830;
  text-decoration: none;
  color: white;
}

/* ============ Alerts ============ */
.alert {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(125, 155, 118, 0.1);
  border: 2px solid #7d9b76;
  color: #5a7a53;
}

.alert-error {
  background: rgba(226, 114, 91, 0.1);
  border: 2px solid var(--terracotta);
  color: var(--terracotta-dark);
}

/* ============ Error Page ============ */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--sandy);
  background-image: radial-gradient(#d1c4b1 0.5px, transparent 0.5px);
  background-size: 20px 20px;
}

.error-content {
  text-align: center;
  padding: 2rem;
  background: white;
  box-shadow: var(--postcard-shadow);
  max-width: 400px;
  margin: 1rem;
}

.error-content h1 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
}

/* ============ Responsive - Small Mobile ============ */
@media (max-width: 400px) {
  .hero-title h1 {
    font-size: 2.75rem;
  }

  .hero-photo {
    width: 200px;
    height: 140px;
  }

  .hero-quote {
    width: 160px;
  }

  .achievement-text p {
    font-size: 1rem;
  }
}

/* ============ Responsive - Tablet ============ */
@media (min-width: 640px) {
  .page-wrapper {
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 12px;
    min-height: auto;
  }

  .hero-section {
    min-height: 420px;
    padding: 2rem;
  }

  .hero-photo {
    width: 300px;
    height: 210px;
  }

  .hero-title {
    top: 240px;
  }

  .hero-title h1 {
    font-size: 4.5rem;
  }

  .hero-title .subtitle {
    font-size: 1.75rem;
  }

  .hero-quote {
    width: 240px;
  }

  .hero-globe {
    width: 180px;
    height: 180px;
  }

  .hero-globe .material-symbols-outlined {
    font-size: 90px;
  }

  .achievements {
    padding: 0 2rem;
  }

  .achievement-text p {
    font-size: 1.5rem;
  }

  .achievement-special .script-text {
    font-size: 1.75rem;
  }

  .event-card {
    margin: 0 2rem 2rem;
    padding: 2rem;
  }

  .event-card h3 {
    font-size: 2.75rem;
  }

  .rsvp-cta {
    padding: 0 2rem;
  }

  .rsvp-btn {
    font-size: 2rem;
    padding: 1.25rem;
  }

  .rsvp-page {
    padding: 2rem;
  }

  .rsvp-card {
    padding: 2.5rem 2rem;
  }

  .rsvp-header h1 {
    font-size: 3.5rem;
  }
}

/* ============ Responsive - Desktop ============ */
@media (min-width: 1024px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }

  .page-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .hero-section {
    min-height: 480px;
    padding: 2.5rem;
  }

  .hero-photo {
    width: 360px;
    height: 250px;
    top: 1.5rem;
    left: 2rem;
  }

  .hero-title {
    top: 280px;
    right: 2rem;
  }

  .hero-title h1 {
    font-size: 5.5rem;
  }

  .hero-title .subtitle {
    font-size: 2rem;
  }

  .hero-quote {
    width: 280px;
    left: 2rem;
    padding: 1.25rem;
  }

  .hero-quote p {
    font-size: 0.9rem;
  }

  .hero-globe {
    width: 200px;
    height: 200px;
    top: 2.5rem;
    right: 1rem;
  }

  .hero-globe .material-symbols-outlined {
    font-size: 100px;
  }

  .achievements {
    padding: 0 3rem;
    margin-bottom: 3rem;
  }

  .achievement-item {
    margin-bottom: 2rem;
  }

  .achievement-icon {
    width: 56px;
    height: 56px;
  }

  .achievement-icon .material-symbols-outlined {
    font-size: 28px;
  }

  .achievement-text p {
    font-size: 1.75rem;
  }

  .achievement-special .stamped {
    font-size: 1.25rem;
    padding: 4px 14px;
  }

  .achievement-special .script-text {
    font-size: 2rem;
  }

  .event-card {
    margin: 0 3rem 3rem;
    padding: 2.5rem;
  }

  .event-card .label {
    font-size: 0.875rem;
  }

  .event-card h3 {
    font-size: 3rem;
  }

  .event-details {
    gap: 1.5rem;
  }

  .event-photo {
    width: 100px;
    height: 120px;
  }

  .event-info .venue {
    font-size: 1.5rem;
  }

  .event-info .date,
  .event-info .time {
    font-size: 1rem;
  }

  .directions-btn {
    font-size: 1.25rem;
    padding: 1rem;
  }

  .rsvp-cta {
    padding: 0 3rem 2rem;
  }

  .rsvp-btn {
    font-size: 2.25rem;
    padding: 1.5rem;
    border-radius: 16px;
  }

  .rsvp-cta .tagline {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }

  .footer-icons {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-icons .material-symbols-outlined {
    font-size: 2rem;
  }

  /* RSVP Page Desktop */
  .rsvp-page {
    padding: 3rem;
    display: flex;
    justify-content: center;
  }

  .rsvp-card {
    max-width: 600px;
    width: 100%;
    padding: 3rem;
  }

  .rsvp-header h1 {
    font-size: 4rem;
  }

  .guest-greeting {
    font-size: 1.75rem;
  }

  .form-label {
    font-size: 1.125rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
  }

  .radio-option {
    padding: 1.25rem;
  }

  .radio-text {
    font-size: 1.25rem;
  }

  .btn-submit {
    font-size: 1.75rem;
    padding: 1.25rem;
  }

  .back-link {
    font-size: 1.5rem;
  }

  /* Thank You Desktop */
  .thank-you-message {
    padding: 3rem;
  }

  .thank-you-icon {
    font-size: 5rem;
  }

  .thank-you-message h2 {
    font-size: 3rem;
  }

  .thank-you-message p {
    font-size: 1.1rem;
  }

  .btn-secondary {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
  }
}

/* ============ Responsive - Large Desktop ============ */
@media (min-width: 1280px) {
  .page-wrapper {
    max-width: 900px;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-photo {
    width: 400px;
    height: 280px;
  }

  .hero-title {
    top: 320px;
  }

  .hero-title h1 {
    font-size: 6rem;
  }

  .hero-quote {
    width: 300px;
  }

  .hero-globe {
    width: 220px;
    height: 220px;
  }
}
