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

body {
  font-family: "Poppins", "Arial", sans-serif;
  overflow: hidden;
  background: #000;
}

.swiper {
  width: 100%;
  height: 100vh;
}
.swiper-pagination {
  position: fixed !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100% !important;
  height: auto !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(5px) !important;
  padding: 8px 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3) !important;
}
@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 0px !important;
    padding: 15px 12px !important;
  }
}
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    margin: 0 3px !important;
  }
}
.swiper-pagination-bullet-active {
  background: white !important;
  opacity: 1 !important;
  transform: scale(1.3) !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6) !important;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .swiper-slide.needs-scroll {
    display: block !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-bottom: 80px !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .swiper-slide.needs-scroll::-webkit-scrollbar {
    width: 4px;
  }
  .swiper-slide.needs-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .swiper-slide.needs-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
  }
  .swiper-slide.needs-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
}

.slide-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  position: relative;
  max-width: 90%;
  padding: 2rem;
}
@media (max-width: 768px) {
  .swiper-slide.needs-scroll .slide-content {
    max-width: 95%;
    padding: 2rem 1rem 4rem;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 3rem;
  }
}

.schedule-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .schedule-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 350px;
  }
  .swiper-slide.needs-scroll .schedule-container {
    margin: 2rem auto;
  }
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 450px;
  width: 100%;
}
@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 90%;
  }
  .swiper-slide.needs-scroll .form-container {
    margin: 2rem auto;
    position: relative;
    z-index: 3;
  }
}

.locations-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .locations-container {
    gap: 1.5rem;
    max-width: 350px;
  }
  .swiper-slide.needs-scroll .locations-container {
    margin: 2rem auto;
  }
}

.gift-container {
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gift-container {
    max-width: 350px;
  }
  .swiper-slide.needs-scroll .gift-container {
    margin: 2rem auto;
  }
}

.qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .qr-section {
    flex-direction: column;
    gap: 2rem;
  }
  .swiper-slide.needs-scroll .qr-section {
    margin: 2rem auto;
    padding: 0 1rem;
  }
}

.music-controls {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}
.music-controls:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .music-controls {
    top: 10px;
    right: 10px;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 768px) {
  .swiper-slide.needs-scroll::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1000;
    pointer-events: none;
  }
  .swiper-slide.needs-scroll::after {
    content: "";
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1000;
    pointer-events: none;
  }
}

.slide1 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/countdown.jpeg");
  background-size: cover;
  background-position: center;
}

.slide2 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/welcome.jpeg");
  background-size: cover;
  background-position: center;
}

.slide3 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/couple.jpeg");
  background-size: cover;
  background-position: center;
}

.slide4 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/schedule.jpeg");
  background-size: cover;
  background-position: center;
}

.slide5 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/venue.jpeg");
  background-size: cover;
  background-position: center;
}

.slide6 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/gift.jpeg");
  background-size: cover;
  background-position: center;
}

.slide7 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/rsvp.jpeg");
  background-size: cover;
  background-position: center;
}

.slide8 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url("images/gallery.jpeg");
  background-size: cover;
}

.slide1 .countdown-content {
  text-align: center;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
@media (max-width: 768px) {
  .slide1 .countdown-content {
    padding: 1.5rem;
    min-height: 70vh;
  }
}
.slide1 .couple-initials {
  margin-bottom: 1rem;
  display: inline-block;
}
.slide1 .couple-initials img {
  max-width: 250px;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}
.slide1 .couple-initials img:hover {
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .slide1 .couple-initials img {
    max-width: 160px;
    max-height: 160px;
  }
}
.slide1 .countdown-timer {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .slide1 .countdown-timer {
    gap: 0.4rem;
    margin: 1rem 0;
  }
}
.slide1 .countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  min-width: 98px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  flex-shrink: 0;
}
.slide1 .countdown-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .slide1 .countdown-item {
    padding: 1.2rem 0.8rem;
    min-width: 95px;
  }
}
.slide1 .countdown-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  font-family: "Poppins", "Arial", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .slide1 .countdown-number {
    font-size: 2rem;
  }
}
.slide1 .countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  font-weight: 300;
  font-family: "Playfair Display", serif;
}
@media (max-width: 768px) {
  .slide1 .countdown-label {
    font-size: 0.8rem;
  }
}
.slide1 .start-button {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  padding: 1rem 3rem;
  border-radius: 20px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Poppins", "Arial", sans-serif;
  letter-spacing: 1px;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 1rem;
}
.slide1 .start-button::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 23px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse-border 2s infinite ease-in-out;
  z-index: -1;
}
.slide1 .start-button::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse-border-outer 2s infinite ease-in-out 0.5s;
  z-index: -2;
}
.slide1 .start-button:hover {
  background: white;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #eecfca;
  backdrop-filter: blur(15px);
}
.slide1 .start-button:hover::before, .slide1 .start-button:hover::after {
  animation-play-state: paused;
  opacity: 0;
}
.slide1 .start-button:active {
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .slide1 .start-button {
    padding: 0.8rem 2.5rem;
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
@keyframes pulse-border-outer {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}
@keyframes gentle-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}
@keyframes gentle-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.5;
  }
}
.slide2 .welcome-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
}
.slide2 .welcome-content .bible-verse {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  font-style: italic;
  opacity: 0.85;
  line-height: 1.5;
  font-weight: 300;
}
.slide2 .welcome-content .bible-verse .verse-reference {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
  font-style: normal;
}
.slide2 .welcome-content .family-info {
  margin: 2.5rem 0;
}
.slide2 .welcome-content .family-info .together-text {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0.9;
}
.slide2 .welcome-content .family-info .family-names-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .slide2 .welcome-content .family-info .family-names-container {
    gap: 10rem;
  }
}
.slide2 .welcome-content .family-info .family-line {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.85;
}
.slide2 .welcome-content .family-info .family-line .family-names {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: 1.8rem;
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .slide2 .welcome-content .family-info .family-line .family-names {
    font-size: 1.4rem;
  }
}
.slide2 .welcome-content .family-info .family-line .family-label {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}
.slide2 .welcome-content .couple-names {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  font-weight: 400;
  margin: 2.5rem 0;
  letter-spacing: 1px;
  line-height: 1.1;
}
.slide2 .welcome-content .couple-names .wedding-rings {
  font-size: 2rem;
  opacity: 0.8;
  margin: 0 0.8rem;
  color: #eecfca;
  display: inline-block;
  vertical-align: middle;
}
.slide2 .welcome-content .couple-names .wedding-rings svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .slide2 .welcome-content .couple-names .wedding-rings {
    font-size: 1.5rem;
    margin: 0 0.5rem;
  }
  .slide2 .welcome-content .couple-names .wedding-rings svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .slide2 .welcome-content .couple-names {
    font-size: 2rem;
  }
}
.slide2 .welcome-content .wedding-details {
  margin-top: 2.5rem;
}
.slide2 .welcome-content .wedding-details .invitation-text {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  opacity: 0.9;
  font-style: italic;
  line-height: 1.4;
}
.slide2 .welcome-content .wedding-details .wedding-date {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 1.5rem 0;
  color: #fff;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .slide2 .welcome-content .wedding-details .wedding-date {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .slide2 .welcome-content {
    padding: 1.5rem;
  }
  .slide2 .welcome-content .bible-verse {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }
  .slide2 .welcome-content .family-info {
    margin: 2rem 0;
  }
}

h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

.subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.9;
  letter-spacing: 1px;
}
.subtitle.highlight {
  font-weight: bold;
  font-size: 0.8rem;
}

.date {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.venue {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.heart {
  color: #eecfca;
  font-size: 1.5rem;
  margin: 0 10px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.1);
  }
}
.slide4 .slide-content {
  max-width: 600px;
  margin: 0 auto;
}

.schedule-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 1rem auto;
}
@media (max-width: 768px) {
  .schedule-container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 350px;
  }
}

.schedule-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .schedule-item {
    padding: 1.8rem 1.2rem;
    border-radius: 18px;
  }
}

.schedule-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  min-width: unset;
  text-align: unset;
}
.schedule-icon i {
  color: #fff;
}
@media (max-width: 768px) {
  .schedule-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.schedule-details {
  flex: unset;
  text-align: center;
  width: 100%;
}

.schedule-event {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .schedule-event {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
}

.schedule-time {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0;
  font-weight: unset;
  margin-bottom: unset;
}
.schedule-time i {
  font-size: 0.9rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .schedule-time {
    font-size: 0.95rem;
  }
}

.locations-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .locations-container {
    gap: 1.5rem;
    max-width: 350px;
  }
}

.modern-location-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.modern-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .modern-location-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}

.location-icon-top {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .location-icon-top {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.location-main-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .location-main-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.location-details {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .location-details {
    margin-bottom: 1.5rem;
  }
}

.location-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .location-name {
    font-size: 1.2rem;
  }
}

.location-place {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .location-place {
    font-size: 1rem;
  }
}

.location-time {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.location-time::before {
  content: "\f017";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .location-time {
    font-size: 0.9rem;
  }
}

.modern-map-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}
.modern-map-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse-border 2s infinite ease-in-out;
  z-index: -1;
}
.modern-map-btn::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse-border-outer 2s infinite ease-in-out 0.5s;
  z-index: -2;
}
.modern-map-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #eecfca;
}
.modern-map-btn:hover::before, .modern-map-btn:hover::after {
  animation-play-state: paused;
  opacity: 0;
}
@media (max-width: 768px) {
  .modern-map-btn {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 1rem;
  }
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes pulse-border-outer {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.gift-container {
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .gift-container {
    max-width: 350px;
  }
}

.modern-gift-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.modern-gift-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .modern-gift-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}

.gift-icon-top {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .gift-icon-top {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.gift-main-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .gift-main-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.gift-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 768px) {
  .gift-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}

.iban-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  margin: 1.5rem auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  max-width: 16rem;
}
@media (max-width: 768px) {
  .iban-section {
    gap: 0.5rem;
    padding: 0.8rem 0.2rem;
    max-width: 14rem;
  }
}

.iban-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.iban-number {
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .iban-number {
    font-size: 1rem;
  }
}

.copy-iban-btn {
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 0.5rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.copy-iban-btn:hover {
  color: #eecfca;
  background: rgba(255, 255, 255, 0.1);
}
.copy-iban-btn[style*="display: none"] {
  visibility: hidden;
  pointer-events: none;
}
.copy-iban-btn i {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .copy-iban-btn {
    right: 0.3rem;
  }
}

.copy-success {
  color: #4CAF50;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
}
.copy-success.show {
  opacity: 1;
}
.copy-success i {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .copy-success {
    right: 0.3rem;
  }
}

.account-details {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
  line-height: 1.4;
}
.account-details strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
@media (max-width: 768px) {
  .account-details {
    font-size: 0.85rem;
  }
}

.gift-card {
  display: none;
}

.gift-header {
  display: none;
}

.gift-icon {
  display: none;
}

.gift-title {
  display: none;
}

.iban-container {
  display: none;
}

.copy-btn {
  display: none;
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 450px;
  width: 100%;
  position: relative;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .form-container {
    padding: 1.5rem;
    margin: 1rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.submit-btn:hover {
  color: #eecfca;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.submit-btn:hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  display: none !important;
}

.success-state {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.success-state.show {
  display: block;
  animation: slideInUp 0.6s ease-out;
}
.success-state .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4CAF50, #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
  animation: bounceIn 0.8s ease-out 0.3s both;
}
.success-state .success-icon.declined {
  background: linear-gradient(45deg, #ff6b9d, #ff8fab);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}
@media (max-width: 768px) {
  .success-state .success-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}
.success-state .success-title {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.6s ease-out 0.5s both;
}
@media (max-width: 768px) {
  .success-state .success-title {
    font-size: 2rem;
  }
}
.success-state .success-message-text {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}
@media (max-width: 768px) {
  .success-state .success-message-text {
    font-size: 1.1rem;
  }
}
.success-state .success-heart {
  font-size: 1.5rem;
  color: #eecfca;
  animation: heartBeat 1.5s ease-in-out infinite 1s;
}
.success-state .edit-button {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  animation: fadeInUp 0.6s ease-out 0.9s both;
}
.success-state .edit-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .success-state .edit-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.confetti {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  animation: confetti-fall 3s linear infinite;
}
.confetti::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.confetti.color-1::before {
  background: #ff6b9d;
}
.confetti.color-2::before {
  background: #4ecdc4;
}
.confetti.color-3::before {
  background: #45b7d1;
}
.confetti.color-4::before {
  background: #f9ca24;
}
.confetti.color-5::before {
  background: #6c5ce7;
}
.confetti.color-6::before {
  background: #a0e7e5;
}
.confetti.color-7::before {
  background: #ffeaa7;
}
.confetti.color-8::before {
  background: #fab1a0;
}

.hearts-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.floating-heart {
  position: absolute;
  color: #ff6b9d;
  font-size: 1.2rem;
  opacity: 0;
  animation: heart-float 4s linear infinite;
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes heartBeat {
  0%, 50%, 100% {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(1.1);
  }
}
@keyframes confetti-fall {
  0% {
    transform: translateY(-100px) rotateZ(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(600px) rotateZ(720deg);
    opacity: 0;
  }
}
@keyframes heart-float {
  0% {
    transform: translateY(100px) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    transform: translateY(-200px) scale(0.8);
    opacity: 0;
  }
}
.form-fade-out {
  animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.music-controls {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}
.music-controls:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .music-controls {
    top: 10px;
    right: 10px;
    padding: 0.6rem 1rem;
  }
}

.music-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.music-btn:hover {
  transform: scale(1.1);
}
.music-btn.playing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .volume-control {
    display: none;
  }
}

.volume-slider {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}
.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.music-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-right: 0.3rem;
}

.navigation-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .qr-section {
    flex-direction: column;
    gap: 2rem;
  }
}

.qr-container {
  text-align: center;
}
.qr-container #qrcode {
  width: 200px;
  height: 200px;
  padding: 1rem;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.qr-text {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.qr-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.photo-sharing-info {
  flex: 1;
  text-align: center;
}
.photo-sharing-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.sharing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sharing-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.feature-item i {
  font-size: 1.2rem;
  color: #eecfca;
  min-width: 20px;
}
.feature-item span {
  font-size: 0.9rem;
  text-align: left;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
  text-decoration: none;
}
.gallery-btn:hover {
  color: #eecfca;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.gallery-btn:hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=styles.css.map */
