:root {
  /* Color Palette - Purple and Lavender */
  --primary-color: #7C4DFF;
  --secondary-color: #B388FF;
  --bg-soft-orange: #DCCBFF;
  --bg-cream: #F3EEFF;
  --text-dark: #2E2340;
  --text-light: #ffffff;
  --border-radius: 20px;
}

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

body {
  font-family: 'Comfortaa', 'Outfit', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  line-height: 1.6;
}

body.route-groom .couple-portraits .person[data-person='groom'] {
  order: 1;
}

body.route-groom .couple-portraits .person[data-person='bride'] {
  order: 2;
}

body.route-groom .footer-names-container .name-box[data-person='groom'] {
  order: 1;
  margin-right: 5px;
  margin-left: 0;
}

body.route-groom .footer-names-container .name-divider {
  order: 2;
}

body.route-groom .footer-names-container .name-box[data-person='bride'] {
  order: 3;
  margin-left: 5px;
  margin-right: 0;
}

.hidden-content {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hidden-content.active {
  display: block;
  opacity: 1;
}

/* Sticky Header */
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: var(--bg-cream);
  color: var(--primary-color);
  text-align: center;
  z-index: 2000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(243, 238, 255, 0.96);
  border: 1px solid rgba(124, 77, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 8px 20px rgba(46, 35, 64, 0.12);
}

.lang-btn {
  min-width: 42px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  background: transparent;
  color: var(--text-dark);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  font-family: 'Comfortaa', sans-serif;
}

.lang-btn:hover {
  color: var(--primary-color);
}

.lang-btn.active {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 5px 12px rgba(124, 77, 255, 0.28);
}

@media (max-width: 767px) {
  .lang-switcher {
    left: 10px;
    padding: 2px;
  }

  .lang-btn {
    min-width: 36px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }
}

.hamburger-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2001;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(243, 238, 255, 0.98);
  /* var(--bg-cream) with opacity */
  z-index: 1999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.nav-link {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2E2340;
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.sticky-title {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  line-height: 1;
}

.sticky-subtitle {
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
  color: #7E7197;
  height: 12px;
}

/* Closing Footer */
.closing-footer {
  position: relative;
  width: 100%;
  height: 750px;
  padding: 8rem 1rem 4rem;
  background-image: url('./images/footer-bg.PNG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 30, 86, 0.62);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

@media (max-width: 767px) {
  .closing-footer {
    background-attachment: scroll;
    background-position: center top;
    min-height: 650px;
  }
}

.scroll-to-top {
  background: #7C4DFF;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  background: #6935F5;
}

.footer-names-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
}

.footer-names-container .name-box[data-person='bride'] {
  margin-right: 5px;
}

.footer-names-container .name-box[data-person='groom'] {
  margin-left: 5px;
}

.name-box {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 1.5rem 0;
  font-family: 'Allura', cursive;
  font-size: 2.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  flex: 1;
  text-align: center;
  max-width: 250px;
}

.name-divider {
  width: 30px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  margin: 0 -15px;
  position: relative;
  z-index: 10;
}

.footer-decoration {
  width: 100%;
  max-width: 600px;
  color: white;
}

.footer-note {
  margin-top: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-heart {
  color: #ff4d6d;
}

.footer-instagram-link {
  margin-top: -3px;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-instagram-link:hover {
  transform: translateY(-2px);
  color: #ff4d6d;
}

.footer-instagram-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 600px) {
  .footer-names-container {
    flex-direction: row;
  }

  .name-box {
    font-size: 1.8rem;
    padding: 1rem 0;
    border-radius: 8px;
  }

  .footer-note {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .footer-note-row {
    gap: 0.55rem;
  }
}

#sticky-header.visible {
  transform: translateY(0);
}

/* Hero Cover */
#cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('./images/cover-bg.PNG');
  background-size: cover;
  background-position: center;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  text-align: center;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

#cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

@media (max-width: 767px) {

  /* Hero Cover */
  #cover {
    background-image: url('./images/cover-bg-mobile.PNG') !important;
  }
}

/* Responsive Hero Content Separators */
.desktop-hero-content {
  display: none;
}

.mobile-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.cover-content {
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 90%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(2px);
}

.cover-decor {
  font-family: 'Allura', cursive;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cover-greeting {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 5px;
}

.cover-names {
  font-size: 3rem;
  font-family: 'Allura', cursive;
  margin: 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.qr-placeholder {
  width: 80px;
  height: 40px;
  background: white;
  margin-top: 15px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: black;
  font-size: 0.8rem;
  font-weight: bold;
}

.open-invitation-btn {
  position: absolute;
  bottom: 50px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.open-invitation-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: var(--primary-color);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-15px);
  }

  60% {
    transform: translateY(-7px);
  }
}

@media (min-width: 768px) {

  /* Overrides for Desktop Mode */
  .mobile-hero-content {
    display: none;
  }

  .desktop-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
  }

  #cover {
    position: relative;
    transform: none !important;
    z-index: 1;
    /* Decreased z-index on desktop so main-content can overlap it */
  }

  .hidden-content {
    display: block !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-prayer {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  .hero-wedding-of {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }

  .hero-names {
    font-family: 'Allura', cursive;
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .hero-date {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 40px;
    font-size: 1.2rem;
    letter-spacing: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
  }

  .scroll-down-icon {
    position: absolute;
    bottom: 50px;
    animation: bounce 2s infinite;
    color: white;
  }

  /* Overlap the main content over the cover on desktop */
  #main-content {
    position: relative;
    z-index: 10;
    margin-top: -100px;
  }

  .couple-section {
    padding-top: 0;
  }

  .couple-container {
    background: white;
  }

  .couple-portraits {
    flex-direction: row !important;
    justify-content: center;
    gap: 5rem !important;
  }
}

/* Main Sections Layout */
.separator-wrapper {
  width: 100%;
  max-width: 600px;
  height: 60px;
  margin: 1.5rem auto 3.5rem;
  color: var(--primary-color);
  opacity: 0.8;
}

section {
  padding: 4rem 1.5rem 1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-family: 'Comfortaa', sans-serif;
  margin-bottom: 2rem;
}

.section-title.light {
  color: var(--text-light);
}

/* Our Story Section */
.our-story-section {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

body.story-carousel-scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

.story-carousel-section {
  margin-bottom: 3rem;
}

.story-carousel-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: rgba(46, 35, 64, 0.45);
  margin-bottom: 1rem;
}

.story-carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.story-carousel-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(124, 77, 255, 0.24);
  background: #ffffff;
  color: var(--primary-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(124, 77, 255, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.story-carousel-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(124, 77, 255, 0.2);
}

.story-carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.story-carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0.35rem;
  min-height: 760px;
}

.story-slide {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  right: 0.35rem;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0.4rem 0 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12%) scale(0.95) rotate(1deg);
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.story-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1) rotate(0deg);
  z-index: 4;
}

.story-slide.previous {
  opacity: 0;
  transform: translateX(-8%) scale(0.96) rotate(-1.5deg);
  z-index: 2;
}

.story-slide.next {
  opacity: 0;
  transform: translateX(9%) scale(0.95) rotate(1.8deg);
  z-index: 2;
}

.story-slide-tag {
  display: inline-flex;
  background: white;
  border-radius: 999px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.story-slide-title {
  font-family: 'Allura', cursive;
  color: var(--primary-color);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.story-slide-text {
  max-width: 470px;
  margin: 0 auto 1.35rem;
  color: rgba(46, 35, 64, 0.8);
  font-style: italic;
  font-size: 1rem;
}

.polaroid-stack {
  position: relative;
  width: min(340px, 78vw);
  margin: 0 auto;
}

.polaroid-stack::before,
.polaroid-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(46, 35, 64, 0.09);
  box-shadow: 0 10px 22px rgba(46, 35, 64, 0.13);
  z-index: 0;
}

.polaroid-stack::before {
  transform: translate(10px, -4px) rotate(2.4deg);
}

.polaroid-stack::after {
  transform: translate(-9px, -8px) rotate(-2.2deg);
}

.polaroid-frame {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 6px;
  padding: 0.9rem 0.9rem 1.6rem;
  box-shadow: 0 16px 26px rgba(46, 35, 64, 0.16);
  border: 1px solid rgba(46, 35, 64, 0.1);
}

.polaroid-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.polaroid-frame figcaption {
  margin-top: 0.55rem;
  font-family: 'Allura', cursive;
  color: #7d7197;
  font-size: 1.45rem;
}

.story-timeline-section {
  margin-top: 0.5rem;
}

.story-timeline-heading {
  font-family: 'Comfortaa', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(46, 35, 64, 0.64);
  margin-bottom: 1.2rem;
}

.story-timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.15) 0%, rgba(124, 77, 255, 0.8) 25%, rgba(124, 77, 255, 0.8) 75%, rgba(124, 77, 255, 0.15) 100%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
}

.timeline-item.left .timeline-card {
  grid-column: 1;
}

.timeline-item.right .timeline-card {
  grid-column: 3;
}

.timeline-dot {
  grid-column: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  justify-self: center;
  border: 4px solid var(--bg-cream);
  background: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(124, 77, 255, 0.45);
}

.timeline-card {
  border-radius: 18px;
  text-align: left;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 10px 24px rgba(124, 77, 255, 0.18);
  border: 1px solid rgba(124, 77, 255, 0.18);
}

.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  font-family: 'Comfortaa', sans-serif;
}

.timeline-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.timeline-card-solid {
  background: var(--primary-color);
  color: var(--text-light);
}

.timeline-card-light {
  background: #ede5ff;
  color: var(--text-dark);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  margin-bottom: 0.65rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-card-solid .timeline-step {
  color: var(--primary-color);
  background: #ffffff;
}

.timeline-card-light .timeline-step {
  color: var(--text-light);
  background: var(--primary-color);
}

@media (max-width: 767px) {
  .story-carousel-section.is-mobile-pinned {
    position: sticky;
    top: 62px;
    z-index: 30;
    background: var(--bg-cream);
    padding-top: 0.35rem;
  }

  .story-carousel-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .story-carousel-nav {
    display: none;
  }

  .story-carousel-track {
    min-height: 82vh;
    max-height: none;
  }

  .story-slide {
    min-height: calc(82vh - 0.7rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 1.15rem;
    transform: translateY(10%) scale(0.96) rotate(1deg);
  }

  .story-slide.previous {
    transform: translateY(-7%) scale(0.95) rotate(-1.6deg);
  }

  .story-slide.next {
    transform: translateY(8%) scale(0.94) rotate(1.7deg);
  }

  .story-slide-title {
    font-size: 2rem;
  }

  .story-slide-text {
    font-size: 0.95rem;
  }

  .polaroid-stack {
    width: min(320px, 70vw);
  }

  .polaroid-frame {
    padding-bottom: 1.9rem;
  }

  .polaroid-frame figcaption {
    margin-top: 0.65rem;
    text-align: center;
    line-height: 1.1;
    font-size: 1.28rem;
    color: #5c4b7a;
  }

  .story-timeline::before {
    left: 10px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 32px 1fr;
  }

  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card {
    grid-column: 2;
  }

  .timeline-dot {
    grid-column: 1;
  }
}

/* The Couple */
.couple-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  background: var(--bg-cream);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.18);
}

@media (min-width: 768px) {
  .couple-container {
    flex-direction: column;
    justify-content: center;
    gap: 5rem;
  }
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portrait-wrapper {
  position: relative;
  width: 302px;
  height: 310px;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.portrait-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.portrait {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
}

.person-name {
  font-size: 3rem;
  color: var(--primary-color);
  font-family: 'Allura', cursive;
}

.person-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.relation {
  font-size: 1.2rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 5px;
}

.person-details .event-address {
  color: #666;
}

.parents-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-links a {
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: var(--secondary-color);
}

.social-links svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Details & Events UI Card */
.dark-events-section {
  background-color: var(--primary-color);
  padding: 4rem 2rem;
  margin: 2rem auto;
  max-width: 900px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(255, 199, 132, 0.4);
  color: var(--text-light);
  text-align: center;
}

.details-greeting {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--bg-cream);
}

.dark-date-title {
  text-align: center;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 2rem 0;
  letter-spacing: 1px;
}

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

.countdown-item {
  background: white;
  color: var(--primary-color);
  padding: 15px 10px;
  border-radius: 12px;
  min-width: 70px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-item span:first-child {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.countdown-item .cd-label {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Mini Calendar */
.mini-calendar {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem auto 2.5rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.mini-cal-header {
  font-family: 'Allura', cursive;
  font-size: 1.6rem;
  color: var(--bg-cream);
  text-align: center;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}

.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.mini-cal-day-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bg-soft-orange);
  padding: 4px 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mini-cal-day-name.weekend {
  color: #ffb3c1;
}

.mini-cal-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 4px;
  border-radius: 8px;
  line-height: 1;
}

.mini-cal-date.holiday {
  color: #ffb3c1;
  font-weight: 600;
}

.mini-cal-date.wedding-day {
  background: #ff6b8a;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 3px 4px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  box-shadow: 0 2px 8px rgba(255, 107, 138, 0.6);
  animation: heartPulse 1.4s ease-in-out infinite;
}

.mini-cal-heart {
  width: 12px;
  height: 12px;
  color: #fff;
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

/* Event Cards */
.events-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .events-container {
    flex-direction: row;
  }
}

.event-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex: 1;
  position: relative;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  z-index: 1;
}

.event-icon {
  margin-bottom: 1rem;
}

.event-icon svg {
  width: 48px;
  height: 48px;
}

.event-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: 'Comfortaa', sans-serif;
  color: white;
}

.border-spacer {
  width: 80%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 15px auto;
}

.event-time {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.event-location-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Comfortaa', sans-serif;
}

.event-address {
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 300;
  color: #E9E1FF;
  margin-bottom: 30px;
}

.event-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 25px;
  background-color: white;
  border: none;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
  cursor: pointer;
  font-family: 'Comfortaa', sans-serif;
}

.map-btn:hover {
  transform: translateY(-2px);
  background-color: #EFE8FF;
  color: var(--secondary-color);
}

.pin-icon {
  width: 18px;
  height: 18px;
}

.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 25px;
  border-radius: 25px;
  background-color: white;
  border: none;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  font-family: 'Comfortaa', sans-serif;
}

.calendar-btn:hover {
  transform: translateY(-2px);
  background-color: #EFE8FF;
  color: var(--secondary-color);
}

.calendar-icon {
  width: 18px;
  height: 18px;
}

/* Calendar Dropdown */
.cal-dropdown {
  position: absolute;
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  min-width: 220px;
  overflow: hidden;
  animation: calDropIn 0.18s ease;
}

@keyframes calDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cal-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  background: #f7f3ff;
  border-bottom: 1px solid #ede8f8;
}

.cal-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  background: none;
  border: none;
  border-bottom: 1px solid #f2f0f8;
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}

.cal-dropdown-item:last-child {
  border-bottom: none;
}

.cal-dropdown-item:hover {
  background: #f3eeff;
  color: var(--primary-color);
}

.cal-dropdown-icon {
  display: flex;
  align-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cal-dropdown-icon svg {
  width: 28px;
  height: 28px;
}

/* Gift Section */
.gift-section {
  padding: 4rem 1.5rem;
  background-color: var(--bg-cream);
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gift-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gift-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 180, 72, 0.2);
}

.gift-icon {
  width: 50px;
  height: 50px;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.gift-card h3 {
  font-family: 'Comfortaa', sans-serif;
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.gift-btn {
  margin-top: auto;
  padding: 10px 25px;
  background-color: var(--bg-soft-orange);
  color: var(--text-dark);
  border: none;
  font-family: inherit;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gift-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Gallery Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 1rem 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Form Styles */
.rsvp-form {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(255, 199, 132, 0.2);
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bg-soft-orange);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-color);
}

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

.captcha-note {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.86rem;
  color: #6f628a;
}

.rsvp-status {
  min-height: 22px;
  margin-top: -0.25rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.rsvp-status.info {
  color: #9a6200;
}

.rsvp-status.success {
  color: #1d7a3a;
}

.rsvp-status.error {
  color: #b42b2b;
}

/* RSVP Responses Section */
.rsvp-responses-section {
  padding: 4rem 1.5rem;
  background-color: var(--bg-cream);
}

.rsvp-list-container {
  max-width: 700px;
  margin: 0 auto;
}

.rsvp-list-container.has-scrollable {
  max-height: 600px;
  overflow-y: scroll;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rsvp-list-container.has-scrollable::-webkit-scrollbar {
  width: 12px;
}

.rsvp-list-container.has-scrollable::-webkit-scrollbar-track {
  background: #e8e8e8;
  border-radius: 10px;
  margin: 5px;
}

.rsvp-list-container.has-scrollable::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  border: 2px solid white;
}

.rsvp-list-container.has-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  box-shadow: 0 0 6px rgba(124, 77, 255, 0.4);
}

.rsvp-comments-container {
  display: grid;
  gap: 1.5rem;
}

.rsvp-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 1rem;
}

.rsvp-loader p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rsvp-no-more {
  padding: 1.5rem;
  text-align: center;
  color: #999;
  font-size: 0.95rem;
}

.comment-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #ECE2FF;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.comment-avatar {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Comfortaa', sans-serif;
  flex-shrink: 0;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.comment-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Comfortaa', sans-serif;
}

.comment-availability {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  background-color: #f0f0f0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.comment-availability.attending {
  background-color: #d4edda;
  color: #1d7a3a;
}

.comment-availability.not-attending {
  background-color: #f8d7da;
  color: #b42b2b;
}

.comment-availability .icon {
  font-weight: 700;
  font-size: 0.9rem;
}

.comment-wishes {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  text-align: left;
}

/* Micro Animations / Intersection Observer Utilities */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 4rem 1.5rem;
  background: var(--bg-cream);
}

.faq-container {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 16px;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(124, 77, 255, 0.08);
  transition: box-shadow 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(124, 77, 255, 0.14);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background: var(--bg-cream);
}

.faq-question.open {
  color: var(--primary-color);
  background: rgba(124, 77, 255, 0.05);
}

.faq-icon {
  min-width: 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.faq-question.open .faq-icon {
  background: var(--primary-color);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 600px;
}

.faq-answer-content {
  padding: 0 1.4rem 1.4rem;
  color: #555;
  font-size: 0.93rem;
  line-height: 1.8;
}

.faq-directions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-route {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.7rem 1rem;
  background: var(--bg-cream);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
  font-size: 0.9rem;
}

.faq-route-from {
  font-weight: 700;
  color: var(--primary-color);
  min-width: 105px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .faq-route {
    flex-direction: column;
    gap: 0.3rem;
  }

  .faq-route-from {
    min-width: unset;
  }
}

/* ===== End FAQ Section ===== */

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scratch to Reveal Screen ===== */
#scratch-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-cream);
  z-index: 1002;
  display: none;
  /* shown via JS on mobile */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.scratch-bg-decor {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.scratch-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  max-width: 400px;
  width: 100%;
}

.scratch-logo {
  width: min(180px, 52vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(124, 77, 255, 0.16));
  margin: 0.1rem 0 0.15rem;
}

.scratch-gesture-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(124, 77, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  animation: scratch-wobble 1.9s ease-in-out infinite;
  margin-bottom: 2px;
}

@keyframes scratch-wobble {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  20% {
    transform: translateX(5px) rotate(-14deg);
  }

  50% {
    transform: translateX(-5px) rotate(14deg);
  }

  80% {
    transform: translateX(3px) rotate(-7deg);
  }
}

.scratch-hint {
  font-size: 0.78rem;
  color: #999;
  font-family: 'Comfortaa', sans-serif;
  text-align: center;
  margin: 0;
}

.scratch-title {
  font-family: 'Allura', cursive;
  font-size: 5rem;
  color: var(--primary-color);
  line-height: 1;
  margin: 4px 0 0;
}

.scratch-subtitle {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  margin: 0;
}

.scratch-circles {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
}

@media (max-width: 380px) {
  .scratch-logo {
    width: min(200px, 48vw);
  }
}

.scratch-circle-wrapper {
  position: relative;
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.scratch-prize {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(124, 77, 255, 0.07);
  border: 2px solid rgba(124, 77, 255, 0.16);
  gap: 1px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scratch-circle-wrapper.completed .scratch-prize {
  transform: scale(1.1);
}

.prize-value {
  font-family: 'Comfortaa', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.prize-label {
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.56rem;
  color: var(--secondary-color);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scratch-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  cursor: crosshair;
  touch-action: none;
}

.scratch-progress {
  display: flex;
  gap: 8px;
  margin-top: 0.9rem;
}

.scratch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(124, 77, 255, 0.18);
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scratch-dot.done {
  background: var(--primary-color);
  transform: scale(1.25);
}

.scratch-skip-btn {
  margin-top: 0.7rem;
  background: none;
  border: none;
  color: #bbb;
  font-family: 'Comfortaa', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 20px;
  transition: color 0.2s ease;
}

.scratch-skip-btn:hover {
  color: var(--primary-color);
}

/* Confetti canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  display: none;
}

.music-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2200;
  border: none;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Comfortaa', sans-serif;
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 12px 24px rgba(46, 35, 64, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.music-fab svg {
  width: 22px;
  height: 22px;
}

.music-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(46, 35, 64, 0.35);
}

.music-fab.is-muted {
  background: rgba(46, 35, 64, 0.88);
}

@media (max-width: 767px) {
  .music-fab {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .music-fab svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== End Scratch to Reveal Screen ===== */