/* 
 * Rajasthani Wedding Website
 * Version: 1.2.0
 * Last Updated: 2025-01-01
 * Features: Responsive design, Traditional iconography, Cache busting
 */

:root {
  /* Traditional Rajasthani Colors */
  --royal-crimson: #dc143c;
  --majestic-purple: #6b46c1;
  --royal-blue: #1e40af;
  --golden-yellow: #f59e0b;
  --rich-orange: #ea580c;
  --deep-maroon: #800020;

  /* Supporting Colors */
  --primary-gold: #d97706;
  --soft-rose: #f3e8ff;
  --warm-peach: #fef3c7;
  --cream: #fffbeb;
  --dusty-rose: #fde68a;
  --light-gold: #fef3c7;
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --accent-terracotta: #dc2626;
  --soft-lavender: #ede9fe;

  /* Traditional Rajasthani Accent Colors */
  --mirror-silver: #c0c0c0;
  --peacock-green: #008b8b;
  --saffron: #ff6347;
  --royal-purple: #4c1d95;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
}

/* Fluid Typography */
@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  html {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (768 - 320)));
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--deep-maroon) 0%,
    var(--royal-purple) 100%
  );
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 3px solid var(--golden-yellow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--golden-yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.8rem 1.5rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  font-family: "Crimson Text", serif;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--golden-yellow);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero {
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--royal-crimson) 0%,
    var(--majestic-purple) 50%,
    var(--royal-blue) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      var(--primary-gold) 2px,
      transparent 2px
    ),
    radial-gradient(circle at 75% 75%, var(--saffron) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  animation: floatPattern 25s ease-in-out infinite;
}

@keyframes floatPattern {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Traditional Rajasthani Iconography */
.decorative-peacock {
  font-size: 3rem;
  margin-top: 6.5rem;
  margin-bottom: 0rem;
  animation: gentleBounce 3s ease-in-out infinite;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.decorative-element {
  font-size: 1.5rem;
  color: var(--golden-yellow);
  margin: 0 1rem;
  display: inline-block;
  animation: gentleFloat 4s ease-in-out infinite;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes gentleBounce {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

/* Responsive decorative elements */
@media (max-width: 768px) {
  .decorative-element {
    font-size: 1.2rem;
    margin: 0 0.5rem;
  }

  .decorative-peacock {
    font-size: 2.5rem;
    margin-top: 6rem;
    margin-bottom: 0rem;
  }
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  position: relative;
}

.hindi-blessing {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--golden-yellow);
  margin-top: 0;
  margin-bottom: 0.4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.couple-names {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 3px;
}

.heart {
  color: var(--royal-crimson);
  font-size: 3.5rem;
  margin: 0 1rem;
  animation: heartbeat 2s ease-in-out infinite;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.tagline {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: "Crimson Text", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hindi-date {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: 1.1rem;
  color: var(--golden-yellow);
  margin-top: 0.5rem;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wedding-date {
  margin-bottom: 3rem;
}

.wedding-date p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.date {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: 700;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.countdown-item span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.countdown-item label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: var(--primary-gold);
  margin: 1rem auto;
}

.couple-section {
  padding: 6rem 0 5rem 0;
  background: linear-gradient(135deg, var(--soft-rose) 0%, var(--cream) 100%);
}

.couple-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.couple-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    var(--warm-peach) 100%
  );
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-gold);
  transition: transform 0.3s ease;
}

.couple-card:hover {
  transform: translateY(-10px);
}

.couple-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-gold);
}

.couple-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.couple-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.couple-title {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.couple-description {
  line-height: 1.8;
  color: var(--text-dark);
}

.events-section {
  padding: 6rem 0 4rem 0;
  background: linear-gradient(
    135deg,
    var(--warm-peach) 0%,
    var(--light-gold) 100%
  );
  /* min-height: 100vh;
    display: flex;
    align-items: center; */
}

.events-timeline {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.event-item {
  position: relative;
  text-align: center;
}

.event-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-date {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  flex-grow: 1;
}

.event-time {
  color: var(--accent-terracotta);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.event-description {
  color: var(--text-dark);
  line-height: 1.4;
  font-size: 0.8rem;
  opacity: 0.7;
}

.gallery-section {
  padding: 6rem 0 5rem 0;
  background: linear-gradient(
    135deg,
    var(--soft-lavender) 0%,
    var(--warm-peach) 100%
  );
  min-height: 100vh;
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* PhotoSwipe Gallery Grid */
.pswp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.pswp-gallery a {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.pswp-gallery a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.1) 0%,
    rgba(128, 0, 32, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.pswp-gallery a:hover::before {
  opacity: 1;
}

.pswp-gallery a:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pswp-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

/* Featured items */
.pswp-gallery a:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.pswp-gallery a:nth-child(4) {
  grid-column: span 2;
}

.venue-section {
  padding: 6rem 0 5rem 0;
  background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--cream) 100%);
}

.venue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.venue-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.venue-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.venue-address {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.venue-description {
  line-height: 1.8;
  margin-bottom: 2rem;
}

.venue-info h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 2.5rem 0 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 0.5rem;
}

.accommodation-list {
  list-style: none;
  margin-bottom: 2rem;
}

.accommodation-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gold);
}

.venue-map iframe {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.travel-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.travel-info li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.travel-info li strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.rsvp-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--soft-rose) 0%, var(--light-gold) 100%);
  color: var(--text-dark);
  position: relative;
}

.rsvp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paisley" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d97706" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23paisley)"/></svg>') repeat;
  opacity: 0.3;
  pointer-events: none;
}

.rsvp-section .section-title {
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.rsvp-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rsvp-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.8;
}

.rsvp-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--primary-gold);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--dusty-rose);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
  transform: translateY(-1px);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid var(--dusty-rose);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.checkbox-group label:hover {
  background: rgba(217, 119, 6, 0.1);
  border-color: var(--primary-gold);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  transform: scale(1.2);
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  border: 1px solid #34d399;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid #f87171;
}

.submit-btn {
  background: linear-gradient(45deg, var(--primary-gold), var(--golden-yellow));
  color: var(--text-dark);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: linear-gradient(45deg, var(--golden-yellow), var(--saffron));
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(217, 119, 6, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.blessings-section {
  padding: 5rem 0;
  background: var(--cream);
}

.blessing-form {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blessing-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.blessing-form-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blessings-display {
  max-width: 800px;
  margin: 0 auto;
}

.blessing-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-gold);
}

.blessing-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.blessing-item p {
  line-height: 1.6;
  font-style: italic;
}

.footer {
  background: linear-gradient(
    135deg,
    var(--deep-maroon) 0%,
    var(--royal-purple) 100%
  );
  color: var(--golden-yellow);
  text-align: center;
  padding: 2rem 0;
  border-top: 3px solid var(--golden-yellow);
  font-family: "Crimson Text", serif;
  font-weight: 500;
}

/* Lightbox Gallery */
/* PhotoSwipe customization */
.pswp {
  --pswp-bg: rgba(0, 0, 0, 0.9);
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: var(--primary-gold);
}

.pswp__button {
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pswp__button:hover {
  background-color: var(--primary-gold) !important;
}

.pswp__counter {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.pswp img {
  max-width: none;
  object-fit: contain;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--golden-yellow);
  margin: 3px 0;
  transition: 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }

  .couple-names {
    font-size: 3rem;
  }

  .events-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pswp-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .venue-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown {
    gap: 1.5rem;
  }

  .countdown-item {
    min-width: 100px;
    padding: 1.2rem 0.8rem;
  }

  .countdown-item span {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(
      135deg,
      rgba(128, 0, 32, 0.95) 0%,
      rgba(76, 29, 149, 0.95) 100%
    );
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--golden-yellow);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0.3rem 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
    display: block;
    border-radius: 8px;
    margin: 0 1rem;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-weight: 500;
  }

  .nav-menu a:hover {
    background: rgba(248, 229, 133, 0.2);
    color: var(--golden-yellow);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }

  .hero {
    min-height: calc(100vh - 70px);
    padding: 2rem 1rem;
  }

  .couple-names {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .countdown {
    flex-wrap: nowrap;
    gap: 0.8rem;
    overflow-x: auto;
  }

  .countdown-item {
    flex: 1;
    min-width: 85px;
    padding: 1rem 0.5rem;
  }

  .events-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .event-card {
    padding: 1.5rem 1rem;
  }

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

  .event-item {
    text-align: center;
  }

  .venue-content {
    grid-template-columns: 1fr;
  }

  .pswp-gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .gallery-section {
    padding: 3rem 0;
  }

  .pswp-gallery a:nth-child(1),
  .pswp-gallery a:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .couple-names {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .countdown-item span {
    font-size: 1.5rem;
  }

  .countdown-item label {
    font-size: 0.7rem;
  }

  .countdown-item {
    min-width: 70px;
    padding: 0.8rem 0.3rem;
  }

  .rsvp-form,
  .blessing-form-container {
    padding: 1.5rem;
  }
}
