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

body {
  font-family: 'Cormorant', serif;
  color: #2c2c2c;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, #e8f4f8 0%, #f5f5f5 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#hero-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen;
  opacity: 0.8;
}

.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.1em;
}

.nav-link {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #2c2c2c;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  margin-top: 18vh;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: 'Cormorant', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Color Block Sections */
.color-block-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
}

.venue-section.color-block-section {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.bg-sage {
  background-color: #c8d5c0;
}

.bg-cream {
  background-color: #f9f6f1;
}

.bg-blush {
  background-color: #e8a0b4;
}

.bg-slate {
  background-color: #efefef; /* Clean, studio-like neutral */
}

.our-song-section .section-content {
  grid-template-columns: 1fr;
  max-width: 1000px;
}

.song-editorial-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.song-editorial-text {
  text-align: left;
  border-left: 1px solid rgba(44, 44, 44, 0.1);
  padding-left: 3rem;
}

.studio-label {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  opacity: 0.6;
  margin-bottom: 2rem;
}

.studio-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  font-weight: 300 !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 3rem !important;
}

.studio-notes {
  max-width: 480px;
}

.studio-notes .detail-text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.7;
}

.studio-notes .detail-small {
  font-style: italic;
  margin-top: 2rem;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .song-editorial-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .song-editorial-text {
    border-left: none;
    padding-left: 0;
  }
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-content.reverse {
  direction: rtl;
}

.section-content.reverse > * {
  direction: ltr;
}

.text-content {
  padding: 2rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.detail-large {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.detail-medium {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.detail-text {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.detail-small {
  font-family: 'Cormorant', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
}

.text-only-section {
  justify-content: center;
}

.text-only-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.tiny-label {
  font-family: 'Cormorant', serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

.about-text {
  margin-top: 2.5rem;
}

.about-text .detail-text {
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Venue Section - Custom Layout */
.venue-section {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.venue-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: stretch;
  max-width: none;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

.venue-left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem 4rem 3rem 3rem;
}

.venue-small-image {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.venue-small-image .image-mask {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.venue-small-image .reveal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-text-content {
  padding: 1rem 0;
  text-align: center;
  max-width: 100%;
}

.venue-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.venue-large-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.venue-large-image .image-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.venue-large-image .reveal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.date-details, .venue-details {
  margin-top: 2rem;
}

.venue-details-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 100%;
}

.venue-detail-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.venue-detail-column .detail-medium {
  font-size: clamp(1.5rem, 4vw, 1.25rem);
  margin-bottom: 0.75rem;
}

.venue-detail-column .detail-small {
  font-size: clamp(1.1rem, 3vw, 0.95rem);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .venue-section {
    padding-right: 0;
  }

  .venue-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .venue-left-column {
    gap: 1.5rem;
    padding: 4rem 1rem;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .venue-small-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  
  .venue-text-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
  }
  
  .venue-large-image {
    display: none;
  }
  
  .venue-details-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Full Bleed Interlude Section */
.full-bleed-section {
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #e8e5df;
  position: relative;
}

.full-bleed-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.full-bleed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.full-bleed-quote-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.full-bleed-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 
               0 4px 24px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .full-bleed-section {
    height: 70vh;
    min-height: 400px;
  }
  
  .full-bleed-quote {
    font-size: 1.5rem;
  }
}

/* Story Timeline Section */
.story-timeline-section {
  background-color: #dbeafe;
  padding: 6rem 3rem 7rem 3rem;
  position: relative;
}

.story-timeline-pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  width: 100%;
}

.story-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2c2c2c;
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  border: none;
}

.story-dot.active {
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .story-timeline-pagination {
    display: flex;
  }
}

.story-timeline-header {
  text-align: left;
  margin-bottom: 5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
}

.story-timeline-header .tiny-label {
  margin-bottom: 1rem;
  opacity: 0.4;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
}

.story-timeline-header .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.story-timeline {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem 3rem;
}

.story-timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-timeline-item:nth-child(1) {
  margin-top: 0;
}

.story-timeline-item:nth-child(2) {
  margin-top: 5rem;
}

.story-timeline-item:nth-child(3) {
  margin-top: 2.5rem;
}

.story-timeline-item:nth-child(4) {
  margin-top: 7rem;
}

.story-timeline-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(44, 44, 44, 0.08);
}

.story-timeline-image .image-mask {
  width: 100%;
  height: 100%;
}

.story-timeline-image .reveal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(0.95);
}

.story-timeline-text {
  padding: 1.5rem 0 0.5rem 0;
}

.story-timeline-year {
  font-family: 'Cormorant', serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.story-timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.story-timeline-text .detail-text {
  margin-bottom: 0;
  opacity: 0.75;
  font-size: clamp(0.8rem, 1.05vw, 0.95rem);
  line-height: 1.6;
  font-weight: 300;
}

/* Tablet size adjustments (641px - 900px) */
@media (max-width: 900px) and (min-width: 641px) {
  .venue-left-column {
    padding: 3rem 1.5rem 3rem 2rem;
  }

  .venue-small-image {
    width: 160px;
    height: 160px;
  }

  .venue-text-content .tiny-label {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }

  .venue-detail-column .detail-medium {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .venue-detail-column .detail-small {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .venue-details-columns {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .story-timeline-section {
    padding: 4rem 1rem 5rem 1rem;
  }

  .story-timeline {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for cleaner look */
  }

  .story-timeline::-webkit-scrollbar {
    display: none;
  }

  .story-timeline-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .story-timeline-header {
    margin-bottom: 3rem;
    text-align: left;
    padding-left: 0;
  }

  .story-timeline-item:nth-child(1),
  .story-timeline-item:nth-child(2),
  .story-timeline-item:nth-child(3),
  .story-timeline-item:nth-child(4) {
    margin-top: 0;
  }

  .story-timeline-image {
    width: 100%;
  }

  .story-timeline-text {
    padding: 1.25rem 0.25rem 0.5rem 0.25rem;
  }

  .story-timeline-year {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .story-timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .story-timeline-text .detail-text {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  /* Venue Directions Mobile Optimization */
  .venue-directions-section {
    padding: 4rem 1.5rem !important;
  }

  .venue-directions-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .venue-info {
    gap: 2.5rem;
    text-align: left;
  }

  .venue-info-item .detail-medium {
    font-size: 1.5rem;
  }

  .venue-info-item .detail-small {
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .venue-image-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 5;
    margin-top: 1rem;
  }
}

/* Music Player Styles */
.music-player-container {
  margin-top: 1.5rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.03);
  max-width: 320px;
  margin-left: auto;
}

.album-cover-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem; /* Reduced margin */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-info {
  margin-bottom: 1rem; /* Reduced margin */
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem; /* Reduced gap */
}

.player-btn {
  background: none;
  border: 1px solid #2c2c2c;
  width: 36px; /* Scaled down button */
  height: 36px; /* Scaled down button */
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.player-btn:hover {
  background: #2c2c2c;
  color: #fff;
}

.progress-container {
  flex-grow: 1;
  height: 2px;
  background: rgba(44, 44, 44, 0.1);
  position: relative;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: #2c2c2c;
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 640px) {
  .music-player-container {
    margin-left: auto;
    margin-right: auto;
  }
}

.story-text {
  margin-top: 2rem;
}

/* Venue & Directions */
.venue-directions-section {
  min-height: auto !important;
  padding: 4rem 4rem !important;
  background-color: #fbfaf8 !important; /* Slightly lighter, more neutral */
}

.venue-directions-section .section-content {
  gap: 4rem;
  align-items: center; /* Vertically center text with image */
}

.venue-image-wrapper {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 5;
  position: relative;
}

.venue-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.venue-info-item .detail-medium {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.text-link {
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  color: #2c2c2c;
  text-decoration: none;
  border-bottom: 1px solid #2c2c2c;
  align-self: flex-start;
  padding-bottom: 2px;
  margin-top: 1rem;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link:hover {
  opacity: 0.6;
}

/* Image Reveal Animation */
.image-reveal-container {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Ensure venue mask fills the ratio wrapper */
.venue-image-wrapper .image-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.reveal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 1.2s ease-out;
}

.reveal-image.revealed {
  transform: scale(1);
  opacity: 1;
}

/* RSVP Section */
.rsvp-section {
  min-height: 80vh;
  background-color: #556b2f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.rsvp-content {
  color: #fff;
}

.rsvp-content .section-title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.rsvp-content .detail-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.rsvp-button {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
}

.rsvp-button:hover {
  background-color: #fff;
  color: #2c2c2c;
  transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

/* Utility classes for JS logic */
.hidden { display: none !important; }
.flex { display: flex !important; }
.block { display: block; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.text-sm { font-size: 0.875rem; }
.text-gray-700 { color: #374151; }
.hover\:bg-blue-50:hover { background-color: #f9f6f1; }
.hover\:text-blue-700:hover { color: #2c2c2c; }
.rounded-lg { border-radius: 0.5rem; }
.transition-colors { transition: background-color 0.15s, color 0.15s; }

.modal-container {
  background: #f9f6f1;
  width: 100%;
  max-width: 600px;
  position: relative;
  padding: 4rem 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  margin: auto;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  z-index: 1001;
}

/* Ensure the container is visible when the overlay is shown via .flex */
.modal-overlay.flex .modal-container {
  display: block;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  color: #2c2c2c;
  line-height: 1;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
  opacity: 0.6;
}

.rsvp-modal-button {
  display: inline-block;
  padding: 1.25rem 3.5rem;
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: none;
  border: 1px solid #2c2c2c;
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}

.rsvp-modal-button:hover {
  background-color: transparent;
  color: #2c2c2c;
}

.rsvp-form {
  max-width: 100%;
  text-align: left;
}

.modal-overlay .rsvp-form input[type="text"],
.modal-overlay .rsvp-form input[type="email"],
.modal-overlay .rsvp-form textarea {
  border-bottom-color: rgba(44, 44, 44, 0.2);
  color: #2c2c2c;
}

.modal-overlay .rsvp-form input::placeholder,
.modal-overlay .rsvp-form textarea::placeholder {
  color: rgba(44, 44, 44, 0.4);
}

.modal-overlay .rsvp-form input:focus,
.modal-overlay .rsvp-form textarea:focus {
  border-bottom-color: #2c2c2c;
}

.modal-overlay .radio-group label {
  color: #2c2c2c;
}

.modal-overlay .radio-label input {
  accent-color: #2c2c2c;
}

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

.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: 'Cormorant', serif;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.rsvp-form textarea {
  height: 80px;
  resize: none;
}

.rsvp-form input::placeholder,
.rsvp-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.rsvp-form input:focus,
.rsvp-form textarea:focus {
  border-bottom-color: #fff;
}

.radio-group {
  margin-top: 1rem;
}

.radio-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.radio-options {
  display: flex;
  gap: 2rem;
}

.radio-label {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
}

.radio-label input {
  accent-color: #fff;
}

/* Footer */
.footer {
  background-color: #f9f6f1;
  padding: 3rem 2rem;
  text-align: center;
  font-family: 'Cormorant', serif;
  font-size: 1rem;
  font-style: italic;
  color: #2c2c2c;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
  .nav-bar {
    padding: 1.5rem 2rem;
  }
  
  .section-content,
  .section-content.reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
    direction: ltr;
  }
  
  .venue-directions-section .section-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .color-block-section {
    padding: 4rem 1rem;
    min-height: auto;
  }
  
  .image-reveal-container {
    height: 300px;
  }
  
  .venue-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-content {
    margin-top: 15vh;
  }
  
  .hero-image-container {
    height: 100%;
  }
  
  .venue-directions-section .text-content {
    max-width: 100%;
    padding: 0;
  }

  .venue-image-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .text-content {
    padding: 0;
  }
  
  /* Venue Directions Mobile-Only Styling */
  .venue-directions-section {
    padding: 4rem 2rem !important;
  }

  .venue-directions-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .venue-info {
    gap: 2.5rem;
    text-align: left;
  }

  .venue-info-item .detail-medium {
    font-size: 1.5rem;
  }

  .venue-info-item .detail-small {
    font-size: 1.15rem;
    line-height: 1.6;
  }

  .venue-image-wrapper {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 2rem;
  }
}
