* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #F9F5F6;
  min-height: 100vh;
  color: #44403c;
  line-height: 1.6;
  overflow-x: hidden;
}

h3 {
  font-family: "Fleur De Leah", cursive;
  color: #E27592;
  font-size: 2.8rem;
  text-align: center;
  font-weight: 400;
}

.screen {
  display: none;
  min-height: 100vh;
  background-image: url(Background.webp);
  background-size: cover;
}

.screen.active {
  display: block;
}

/* Login Screen Styles */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.login-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(68, 64, 60, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
  border: 1px solid #e7e5e4;
}

.login-header h1 {
  font-size: 2.5rem;
  color: #78716c;
  margin-bottom: 8px;
  font-weight: 300;
  letter-spacing: 2px;
}

.login-header p {
  color: #a8a29e;
  font-size: 1.1rem;
  margin-bottom: 32px;
  font-style: italic;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #57534e;
  font-weight: 500;
  font-size: 0.9rem;
}

.input-group input {
  width: 100%;
  padding: 16px;
  border: 2px solid #e7e5e4;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafaf9;
}

.input-group input:focus {
  outline: none;
  border-color: #a8a29e;
  background: white;
}

.login-btn {
  background: linear-gradient(135deg, #78716c 0%, #57534e 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 1px;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(68, 64, 60, 0.2);
}

.error-message {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
}

.error-message.show {
  display: block;
}

/* Invitation Screen Styles */
.invite-container {
  padding: 0;
}

.invite-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background-image: url(/traditionalBackground.png);
  background-size: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(68, 64, 60, 0.08);
  margin: 40px 20px;
}

.invite-header h1, .invite-header p {
  color: white;
}

.subtitle {
  font-size: 1.2rem;
  color: #a8a29e;
  margin-bottom: 8px;
  font-style: italic;
}

.invite-text {
  font-size: 1.1rem;
  color: #57534e;
  font-style: italic;
}

/* Hero Overlay */
.hero-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
}

.hero-cover {
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.4);
  background: #FCE0E4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.2) 65%,
    rgba(0,0,0,0.6) 85%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
}

.cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-brand {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 6px;
  color: rgba(226,117,146,0.9);
  text-transform: uppercase;
  margin-bottom: 4px;
  z-index: 2;
}

.hero-text {
  color: #44403c;
  text-shadow: none;
}

.hero-invite {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 4px;
  color: #f5f5f4;
  min-height: 1.8rem;
}

.hero-name {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: #E27592;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: 2px;
  min-height: 4.5rem;
}

.hero-age {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f5f5f4;
  min-height: 1.8rem;
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

/* Decorative corners */
.hero-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(226,117,146,0.5);
  border-style: solid;
  z-index: 5;
}

.hero-corner.top-left {
  top: 24px;
  left: 24px;
  border-width: 1px 0 0 1px;
}

.hero-corner.top-right {
  top: 24px;
  right: 24px;
  border-width: 1px 1px 0 0;
}

.hero-corner.bottom-left {
  bottom: 24px;
  left: 24px;
  border-width: 0 0 1px 1px;
}

.hero-corner.bottom-right {
  bottom: 24px;
  right: 24px;
  border-width: 0 1px 1px 0;
}

/* Glow behind cover photo */
.hero-overlay {
  position: relative;
}

.hero-glow {
  width: 320px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(226,117,146,0.7) 0%, rgba(226,117,146,0.3) 40%, transparent 70%);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(226,117,146,0.8);
  animation: floatUp 6s ease-in-out infinite;
}

.hero-particles span:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s;   width: 2px; height: 2px; }
.hero-particles span:nth-child(2)  { left: 25%; top: 75%; animation-delay: 0.5s; background: rgba(255,255,255,0.5); }
.hero-particles span:nth-child(3)  { left: 40%; top: 10%; animation-delay: 1s; }
.hero-particles span:nth-child(4)  { left: 60%; top: 85%; animation-delay: 1.5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(5)  { left: 75%; top: 30%; animation-delay: 2s;   background: rgba(255,255,255,0.4); }
.hero-particles span:nth-child(6)  { left: 88%; top: 60%; animation-delay: 2.5s; }
.hero-particles span:nth-child(7)  { left: 15%; top: 50%; animation-delay: 3s;   width: 2px; height: 2px; }
.hero-particles span:nth-child(8)  { left: 50%; top: 90%; animation-delay: 0.8s; background: rgba(255,255,255,0.5); }
.hero-particles span:nth-child(9)  { left: 70%; top: 15%; animation-delay: 1.8s; }
.hero-particles span:nth-child(10) { left: 35%; top: 60%; animation-delay: 3.5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(11) { left: 82%; top: 45%; animation-delay: 4s;   background: rgba(255,255,255,0.4); }
.hero-particles span:nth-child(12) { left: 5%;  top: 88%; animation-delay: 4.5s; }
.hero-particles span:nth-child(13) { left: 92%; top: 10%; animation-delay: 0.3s; width: 2px; height: 2px; }
.hero-particles span:nth-child(14) { left: 18%; top: 35%; animation-delay: 1.2s; background: rgba(255,255,255,0.5); }
.hero-particles span:nth-child(15) { left: 55%; top: 55%; animation-delay: 2.2s; }
.hero-particles span:nth-child(16) { left: 30%; top: 92%; animation-delay: 3.2s; width: 2px; height: 2px; }
.hero-particles span:nth-child(17) { left: 45%; top: 25%; animation-delay: 0.7s; background: rgba(226,117,146,0.9); width: 4px; height: 4px; }
.hero-particles span:nth-child(18) { left: 68%; top: 70%; animation-delay: 1.4s; }
.hero-particles span:nth-child(19) { left: 8%;  top: 45%; animation-delay: 2.8s; background: rgba(255,255,255,0.4); }
.hero-particles span:nth-child(20) { left: 95%; top: 35%; animation-delay: 3.8s; width: 2px; height: 2px; }
.hero-particles span:nth-child(21) { left: 22%; top: 8%;  animation-delay: 5s;   background: rgba(226,117,146,0.7); }
.hero-particles span:nth-child(22) { left: 78%; top: 92%; animation-delay: 5.5s; width: 2px; height: 2px; }
.hero-particles span:nth-child(23) { left: 48%; top: 42%; animation-delay: 4.8s; background: rgba(255,255,255,0.3); }
.hero-particles span:nth-child(24) { left: 62%; top: 5%;  animation-delay: 5.2s; background: rgba(226,117,146,0.8); width: 4px; height: 4px; }

.hero-particles span.big {
  width: 8px;
  height: 8px;
  background: rgba(226,117,146,0.7);
  box-shadow: 0 0 8px rgba(226,117,146,0.8);
  animation-duration: 8s;
}

.hero-particles span.big:nth-child(25) { left: 12%; top: 40%; animation-delay: 0s; }
.hero-particles span.big:nth-child(26) { left: 85%; top: 25%; animation-delay: 2s; }
.hero-particles span.big:nth-child(27) { left: 45%; top: 80%; animation-delay: 4s; background: rgba(255,255,255,0.5); box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.hero-particles span.big:nth-child(28) { left: 70%; top: 55%; animation-delay: 6s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.4); opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll Indicator */
.scroll-indicator {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
  z-index: 10;
  margin-top: 16px;
}

.scroll-indicator p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  padding: 14px 14px;
  background-color: #E27592;
  border-radius: 25px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid #E27592;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Content Wrapper */
.content-wrapper {
  background: linear-gradient(135deg, #f5f5f4 0%, #e7e5e4 100%);
  min-height: 100vh;
  padding: 40px 20px;
  overflow-x: hidden;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Wedding Details */
.wedding-details {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
  width: 100%;
}


.detail-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  
}

.pink-bg {
  background-color: #FCE0E4;
  box-shadow: 0 8px 24px rgba(68, 64, 60, 0.08);
}

.dark-pink-bg {
  background-color: #E27592;
}

.detail-card h3 {
  margin-bottom: 16px;
}

.detail-card p {
  margin-bottom: 8px;
  text-align: center;
}

.save-date-btn {
  background: #E27592;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  border: none;
}

.rsvp-name-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-top: 8px;
  outline: none;
  text-align: center;
}

.rsvp-name-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.rsvp-name-input:focus {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.3);
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rsvp-question {
  text-align: center;
}

.radio-group {
  display: flex;
  gap: 1em;
  justify-content: center;
}

.date, .venue {
  font-size: 1.2rem;
  font-weight: 600;
  color: #57534e;
}

.time {
  font-size: 1.1rem;
  color: #78716c;
}

.venue-info {
  display: flex;
  align-items: center;
  gap: 2em;
}

.venue-info a {
  padding: 8px 12px 4px 12px;
  border-radius: 15px;
  border: 2px solid #e7e5e4;
  transition: all 0.3s ease-in-out;
}

.venue-info a:hover {
  border: 2px solid #a5a5a5;
}



.address {
  color: #a8a29e;
  font-style: italic;
}

/* Enhanced RSVP card with contrasting colors to make it stand out */
.rsvp-card {
  background-color: #E27592;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.3);
}

.rsvp-card h3 {
  color: #ffffff;
}

.rsvp-card .personal-message {
  color: #e5e7eb;
}

.rsvp-card .rsvp-deadline {
  color: #d1d5db;
}

.rsvp-card .rsvp-question label:first-child {
  color: #f3f4f6;
}

.rsvp-card .radio-option {
  color: #e5e7eb;
  border-color: #4b5563;
}

.rsvp-card .radio-option:hover {
  background: rgba(75, 85, 99, 0.3);
  border-color: #6b7280;
}

.rsvp-card .radio-custom {
  border-color: #9ca3af;
}

.rsvp-card .radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #f59e0b;
  background: #f59e0b;
}

/* Submit button styling with disabled state */
.rsvp-submit-btn {
  background: #FCE0E4;
  color: #E27592;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 8px;
}

.rsvp-submit-btn:disabled {
  background: #ff85a6;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

/* Added RSVP success message styles */
.rsvp-success {
  text-align: center;
  padding: 24px;
  background-color: #E7D060;
  border-radius: 8px;
  
}

.rsvp-success p:first-child {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Quiz Section */
.quiz-section {
  margin-bottom: 40px;
}

.quiz-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(226, 117, 146, 0.15);
  border: 1px solid #FCE0E4;
}

.quiz-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.quiz-image {
  width: 100%;
  height: auto;
  display: block;
}

.quiz-content {
  padding: 24px 24px 16px 24px;
  text-align: center;
}

.quiz-content h3 {
  margin-bottom: 8px;
}

.quiz-cta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #E27592;
}

.quiz-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, transparent 30%, rgba(226, 117, 146, 0.6) 100%);
}

.quiz-image-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.quiz-content {
  padding: 28px 24px;
  text-align: center;
}

.quiz-content h3 {
  margin-bottom: 12px;
}

.quiz-desc {
  color: #78716c;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.quiz-teaser {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.teaser-item {
  background: #FFF0F3;
  border: 1px solid #FCE0E4;
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: #57534e;
  text-align: left;
}

.quiz-cta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #E27592;
  font-weight: 600;
}

/* Memory Gallery */
.memory-section {
  text-align: center;
  margin-bottom: 40px;
}

.memory-desc {
  color: #78716c;
  font-style: italic;
  margin: 8px 0 40px 0;
  font-size: 1rem;
}

.memory-stack {
  position: relative;
  width: 260px;
  height: 320px;
  margin: 0 auto;
  cursor: pointer;
}

.polaroid {
  position: absolute;
  width: 240px;
  background: white;
  padding: 12px 12px 40px 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 4px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, box-shadow 0.3s ease;
}

.polaroid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.polaroid p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #78716c;
  margin-top: 10px;
  text-align: center;
}

.polaroid.active {
  box-shadow: 0 16px 40px rgba(226, 117, 146, 0.3);
  z-index: 10;
}

.memory-hint {
  margin-top: 20px;
  color: #a8a29e;
  font-size: 0.85rem;
  font-style: italic;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Dress Code Carousel */
.dress-code-section {
  margin-bottom: 40px;
  text-align: center;
}

.dress-code-desc {
  color: #78716c;
  font-style: italic;
  margin: 8px 0 24px 0;
  font-size: 1.1rem;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 12px;
  animation: autoScroll 40s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 380px;
  width: 280px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@keyframes autoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #c45a75;
}

.map-container iframe {
  display: block;
  border-radius: 12px 12px 0 0;
}

.directions-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #E27592;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 0 0 12px 12px;
  transition: background 0.3s ease;
}

.directions-btn:hover {
  background: #c45a75;
}

/* Additional Info */
.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.info-section {
  padding: 24px;
  border-radius: 15px;
  display: flex;
  gap: 1em;
  border: solid 2px #E27592;
}

.info-section a {
  text-decoration: none;
  color: #d6c25a;
  font-weight: 500;
}

.info-section h4 {
  font-size: 1.2rem;
  color: #E27592;
  font-weight: 500;
}

.info-section p {
  color: #57534e;
}

.additional-info .info-section:first-child {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.additional-info .info-section:last-child {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.additional-info .info-section.slide-in {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.invite-footer {
  position: relative; /* Needed for the pseudo-element */
  text-align: center;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(68, 64, 60, 0.08);
  overflow: hidden; /* Ensure pseudo-element doesn't overflow */
}

/* Add the background image with reduced opacity */
.info-section {
  position: relative;
}

.dress, .gift {
  max-width: 50px;
  height: auto;
}

.dress img, .gift img {
  max-width: 50px;
  height: auto;
}

.invite-footer p {
  font-size: 1.2rem;
  color: #78716c;
  font-style: italic;
}

.countdown-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.timer {
  display: flex;
  justify-content: center;
  gap: 2em;
  font-weight: 600;
  font-size: 1.2rem;
  width: 100%;
  color: #E27592;
}

.logout-btn {
  background: transparent;
  border-color: #a8a29e;
  color: #78716c;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.logout-btn:hover {
  color: #272727;
  border: 2px solid #e7e5e4;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .login-card {
    padding: 32px 24px;
    margin: 20px;
  }

  .login-header h1 {
    font-size: 2rem;
  }

  .content-wrapper {
    padding: 20px 16px;
  }

  .invite-header {
    padding: 32px 20px;
    margin: 32px 16px;
  }

  .invite-header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .detail-card {
    padding: 24px 20px;
  }

  .additional-info {
    grid-template-columns: 1fr;
  }

  .mute-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
  }

  /* Added mobile styles for RSVP form */
  .radio-group {
    gap: 8px;
  }

  .radio-option {
    padding: 10px;
  }

  .save-date-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-header h1 {
    font-size: 1.8rem;
  }

  .invite-header h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .detail-card {
    padding: 20px 16px;
  }
}

/* Hidden state before scrolling into view */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state when in view */
.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Site Footer */
.site-footer {
  background: #111;
  text-align: center;
  padding: 28px 20px;
  margin-top: 0;
}

.site-footer-crafted {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #78716c;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.site-footer-brand {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.1rem;
  color: #E27592;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.site-footer-services {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #57534e;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/*Scroll Bar*/


body {
  --sb-track-color: #e7e5e4;
  --sb-thumb-color: #E27592;
  --sb-size: 14px;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}