.gallery-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  font-size: 1.5rem;
  color: var(--color-purple);
  font-family: var(--font-abril);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 30px;
}

.our-gallery {
  position: relative;
}

/* ============================================
   Wedding Invitation - Custom SCSS Styles
   Design: Purple & Pink Color Scheme
   Mobile-First Approach (430px optimized)
   ============================================ */
/* ============================================
   CSS Variables
   ============================================ */
:root {
  --color-purple: #78487a;
  --color-pink: #ff699b;
  --color-pink-alt: #ff637e;
  --color-text-dark: #1e2939;
  --color-text-gray: #4a5565;
  --color-bg-light: #f1e5f1;
  --color-white: #ffffff;
  --font-playball: "Playball", cursive;
  --font-abril: "Abril Fatface", serif;
  --font-inter: "Inter", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-greatvibes: "Great Vibes", cursive;
  --max-width: 430px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ============================================
   Layout Container
   ============================================ */
.wrapper {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  background: var(--color-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  min-height: 100vh;
  margin: 0 auto;
}

.wedding-page {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  width: 100%;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  background-color: var(--color-purple);
  color: var(--color-white);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  padding: 12px 32px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #58355a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(120, 72, 122, 0.3);
}

.btn-secondary {
  background-color: var(--color-pink);
  color: var(--color-white);
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  padding: 12px 57px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-secondary:hover {
  background-color: #ff3679;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 105, 155, 0.3);
}

.hero-section {
  text-align: center;
  position: relative;
  background: var(--color-bg-light);
  padding-bottom: 40px;
}
.hero-section .cover-photo {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  margin: 0 0 40px 0;
  min-height: 350px;
  /* Video background styles */
}
.hero-section .cover-photo .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -o-object-position: center top;
     object-position: center top;
  pointer-events: none;
}
.hero-section .cover-photo:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  background: url(../images/flower-border.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
.hero-section .cover-photo .ta-logo {
  background: url(../images/ta-logo-frame.png) no-repeat;
  background-position: center center;
  width: 280px;
  height: 231px;
  margin: 0 auto;
  background-size: contain;
  padding: 70px;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -110px;
  z-index: 2;
}
.hero-section .cover-photo .ta-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-section h2 {
  font-family: var(--font-greatvibes);
  font-size: 46px;
  color: var(--color-text-dark);
  font-weight: 500;
  margin: 130px 0 0 0;
}
.hero-section h3 {
  font-family: var(--font-greatvibes);
  color: var(--color-pink);
  font-size: 28px;
  font-weight: 500;
}
.hero-section .invite-cta {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 40px 0 0 0;
  justify-content: center;
}
.hero-section .invite-cta .btn-primary {
  width: 70%;
}

.wicon {
  height: 16px;
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  display: inline-block;
  background-size: cover;
}
.wicon.date {
  background-image: url(../images/calendar-icon.svg);
}
.wicon.time {
  background-image: url(../images/time-icon.svg);
}
.wicon.location {
  background-image: url(../images/location-icon.svg);
}
.wicon.direction {
  background-image: url(../images/direction-icon.svg);
}

.getting-married {
  padding: 20px;
  background: var(--color-bg-light);
}
.getting-married .couple {
  margin-top: 32px;
}
.getting-married .content {
  background-color: #F5F5F5;
  padding: 30px;
  text-align: center;
  border: 6px solid var(--color-purple);
  font-size: 14px;
  position: relative;
}
.getting-married .content:before {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 201px;
  height: 237px;
  background: url(../images/corner-flower2.png) no-repeat;
  background-size: contain;
}
.getting-married .content img {
  border-radius: 50%;
  margin: 20px auto;
  display: block;
}
.getting-married .content h3 {
  font-family: var(--font-abril);
  font-size: 26px;
  color: var(--color-purple);
  margin-bottom: 12px;
  font-weight: 400;
}
.getting-married .content p {
  margin: 12px 0;
}
.getting-married .content blockquote {
  color: var(--color-pink);
  font-style: italic;
}

.section-heading {
  font-family: var(--font-playball);
  font-size: 42px;
  color: var(--color-pink);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1;
}

.wedding-events {
  padding: 20px 20px 60px 20px;
  background: var(--color-bg-light);
}
.wedding-events .events-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wedding-events .events-list .corner-flower {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: url(../images/corner-flower.png) no-repeat;
  background-size: contain;
  background-position: center center;
  pointer-events: none;
}
.wedding-events .events-list .corner-flower.left {
  background-image: url(../images/corner-flower-left.png);
  left: -40px;
  top: 39%;
}
.wedding-events .events-list .corner-flower.right {
  right: -40px;
  bottom: 16%;
  top: auto;
}
.wedding-events .events-list .center-flower {
  width: 100%;
  height: 90px;
  background: url(../images/center-flower.png) no-repeat;
  background-size: contain;
  background-position: center center;
  pointer-events: none;
  position: absolute;
  top: 18%;
}
.wedding-events .events-list .center-flower.two {
  top: 58%;
}
.wedding-events .events-list .bottom-flower {
  position: absolute;
  bottom: -100px;
  width: 100%;
  height: 80px;
  background: url(../images/bottom-flower.png) no-repeat;
  background-size: contain;
  background-position: center center;
  pointer-events: none;
}
.wedding-events .events-list .event {
  padding: 24px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.wedding-events .events-list .event .event-image {
  height: 220px;
  overflow: hidden;
}
.wedding-events .events-list .event .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wedding-events .events-list .event .event-details h3 {
  color: #1E2939;
  font-family: var(--font-abril);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.396px;
  line-height: 1;
}
.wedding-events .events-list .event .event-details .date-time {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 24px;
  color: var(--color-text-gray);
  flex-wrap: wrap;
  margin: 12px 0;
}
.wedding-events .events-list .event .event-details .date-time p {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  width: 50%;
}
.wedding-events .events-list .event .event-details .date-time p:last-child {
  width: 100%;
}
.wedding-events .events-list .event .event-details .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.wedding-events .events-list .event .event-details .event-actions .btn-primary,
.wedding-events .events-list .event .event-details .event-actions .btn-secondary {
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.wedding-events .events-list .event .event-details .event-actions .btn-primary img, .wedding-events .events-list .event .event-details .event-actions .btn-primary svg,
.wedding-events .events-list .event .event-details .event-actions .btn-secondary img,
.wedding-events .events-list .event .event-details .event-actions .btn-secondary svg {
  width: 16px;
  height: 16px;
}

.our-gallery {
  padding: 60px 20px 90px;
}
.our-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-auto-flow: dense;
  position: relative;
}
.our-gallery .gallery-grid .gallery-item {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.our-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  display: block;
}
.our-gallery .gallery-grid .gallery-item:nth-child(1),
.our-gallery .gallery-grid .gallery-item:nth-child(5) {
  grid-row: span 2;
  border-radius: 18px;
}
.our-gallery .gallery-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}

.page-footer {
  padding: 100px 20px 40px 20px;
  text-align: center;
  background: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.page-footer:before {
  content: "";
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: 200px;
  background: url(../images/flower-border.png) no-repeat;
  background-size: cover;
  z-index: 1;
}
.page-footer h3 {
  color: var(--color-text-dark);
  text-align: center;
  font-family: var(--font-abril);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 120% */
  letter-spacing: 0.396px;
}
.page-footer h4 {
  color: var(--color-text-dark);
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  letter-spacing: -0.449px;
}
.page-footer p {
  color: var(--color-text-gray);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  letter-spacing: -0.312px;
}
.page-footer p a {
  color: var(--color-purple);
}

/* Audio toggle (fixed play/pause) */
.audio-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-pink-alt);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
}
.audio-toggle:focus {
  box-shadow: 0 0 0 4px rgba(255, 99, 126, 0.15);
  outline: none;
}
.audio-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
}
.audio-toggle.playing {
  background: var(--color-purple);
  transform: scale(1.05);
}

/* ============================================
   Image Modal Styles
   ============================================ */
.image-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  /* Ensure SVGs scale and inherit color */
}
.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.image-modal .modal-content {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal img {
  max-width: 100%;
  max-height: 100%;
}
.image-modal .modal-close,
.image-modal .modal-nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-text-dark);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.image-modal .modal-close svg path,
.image-modal .modal-nav svg path {
  stroke: #fff;
}
.image-modal .modal-close {
  top: 18px;
  right: 18px;
}
.image-modal .modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 26px;
  padding: 0;
}
.image-modal .modal-nav svg path {
  stroke: #fff;
}
.image-modal .modal-prev {
  left: 14px;
}
.image-modal .modal-next {
  right: 14px;
}
.image-modal .modal-close svg,
.image-modal .modal-nav svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
}

/* ============================================
   Invite Modal Styles
   ============================================ */
.invite-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}
.invite-modal .ta-logo {
  margin-bottom: 24px;
}
.invite-modal .ta-logo img {
  width: 200px;
  margin: 0 auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.invite-modal.open,
.invite-modal[aria-hidden=false] {
  pointer-events: auto;
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.invite-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.invite-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding: 24px;
  border-radius: 12px;
  width: 92%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.invite-modal .invite-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.invite-modal .invite-options {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.invite-modal .invite-options button {
  width: 100%;
}

@media (min-width: 740px) {
  .hero-section .invite-cta .btn-primary {
    width: auto;
  }
}
body.modal-open {
  overflow: hidden;
}

.dot {
  width: 35px;
  height: 35px;
  position: absolute;
  background: url(http://img.babathe.com/upload/specialDisplay/htmlImage/2019/20190104_rose2.png);
  background-size: 100% 100%;
  z-index: 10;
  top: 0;
}

.dot2 {
  width: 35px;
  height: 35px;
  position: absolute;
  background: url(http://img.babathe.com/upload/specialDisplay/htmlImage/2019/20190104_rose.png);
  background-size: 100% 100%;
  z-index: 10;
  top: 0;
}

.dot3 {
  width: 35px;
  height: 35px;
  position: absolute;
  background: url(http://img.babathe.com/upload/specialDisplay/htmlImage/2019/20190104_rose3.png);
  background-size: 100% 100%;
  z-index: 10;
  top: 0;
}

#DiacoDesignLink, #pens {
  color: #fff;
}/*# sourceMappingURL=main.css.map */