/* ══════════════════════════════════════════════════════════
   Real Brides Magazine — Landing Page Stylesheet
   ══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --rose-50:  #FFF1F2;
  --rose-100: #FFE4E6;
  --rose-200: #FECDD3;
  --rose-300: #FDA4AF;
  --rose-400: #FB7185;
  --rose-500: #F43F5E;
  --rose-600: #E11D48;
  --rose-700: #BE123C;
  --rose-800: #9F1239;
  --rose-900: #881337;

  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --blush: #FDF2F8;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.10);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── Base ──────────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; }


/* ── Utility ───────────────────────────────────────────── */
.bg-blush { background-color: var(--blush); }
.bg-dark-rose { background-color: var(--rose-800); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.text-purple { color: #9333EA; }
.text-green { color: #10B981; }
.text-blue { color: #3B82F6; }
.text-amber { color: #F59E0B; }
.text-cyan { color: #0EA5E9; }
.text-indigo { color: #6366F1; }

.section-padding {
  padding: 100px 0;
}

@media (max-width: 767.98px) {
  .section-padding { padding: 60px 0; }
}


/* ── Buttons ───────────────────────────────────────────── */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-rose {
  background-color: var(--rose-500);
  color: var(--white);
  border: 2px solid var(--rose-500);
}
.btn-rose:hover {
  background-color: var(--rose-600);
  border-color: var(--rose-600);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,63,94,0.25);
}

.btn-outline-rose {
  background-color: transparent;
  color: var(--rose-600);
  border: 2px solid var(--rose-300);
}
.btn-outline-rose:hover {
  background-color: var(--rose-500);
  border-color: var(--rose-500);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background-color: var(--white);
  color: var(--rose-600);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background-color: var(--rose-50);
  border-color: var(--rose-50);
  color: var(--rose-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  color: var(--white);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}


/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-size: 18px;
  color: var(--rose-400);
}

.brand-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .brand-text {
  color: var(--gray-800);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85) !important;
  transition: var(--transition);
  padding: 8px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.navbar.scrolled .nav-link {
  color: var(--gray-600) !important;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--rose-600) !important;
}

.navbar-toggler {
  border: none;
  font-size: 24px;
  color: var(--white);
  padding: 4px 8px;
}
.navbar.scrolled .navbar-toggler {
  color: var(--gray-700);
}

/* Mobile nav dropdown */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 12px;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .navbar-collapse .nav-link {
    color: var(--gray-700) !important;
    padding: 10px 8px !important;
  }
  .navbar-collapse .nav-link:hover {
    color: var(--rose-600) !important;
  }
}


/* ── Hero ──────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('https://cpgpqbuejvxmahuqaoob.supabase.co/storage/v1/object/public/article-images/1772177091676-rb9x8f.jpg') center/cover no-repeat,
              linear-gradient(135deg, var(--rose-800) 0%, var(--rose-900) 40%, #4A0E23 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(136,19,55,0.72), rgba(74,14,35,0.88));
}

.hero-pre-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-stats {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
}
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-top: 2px;
}

/* Hero phone screenshot */
.hero-cover-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone-frame {
  display: inline-block;
  background: #111;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.hero-phone-frame:hover {
  transform: perspective(900px) rotateY(0deg) rotateX(0deg);
}
.hero-cover {
  max-width: 240px;
  width: 100%;
  border-radius: 28px;
  display: block;
}
@media (max-width: 991.98px) {
  .hero-cover { max-width: 180px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center !important; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}


/* ── Offers Strip ──────────────────────────────────────── */
.offers-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.offer-icon {
  font-size: 28px;
  color: var(--rose-500);
  margin-bottom: 8px;
}
.offer-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.offer-desc {
  font-size: 12px;
  color: var(--gray-400);
  margin: 0;
}


/* ── Section Labels & Titles ───────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-500);
  display: inline-block;
  margin-bottom: 12px;
}
.section-label--light { color: var(--rose-300); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* Light text on dark backgrounds */
.bg-dark-rose .section-text,
.bg-dark-rose .section-title {
  color: var(--white);
}
.bg-dark-rose .section-text {
  color: rgba(255,255,255,0.85);
}


/* ── Feature List ──────────────────────────────────────── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--gray-700);
}
.feature-list li i {
  color: var(--rose-500);
  font-size: 16px;
  flex-shrink: 0;
}

.feature-list--light li {
  color: rgba(255,255,255,0.85);
}
.feature-list--light li i {
  color: var(--rose-300);
}


/* ── Image Placeholders ────────────────────────────────── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px dashed var(--gray-300);
}
.img-placeholder i {
  font-size: 40px;
  color: var(--gray-300);
}
.img-placeholder span {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.img-placeholder--portrait { aspect-ratio: 3/4; }
.img-placeholder--landscape { aspect-ratio: 16/10; }
.img-placeholder--square { aspect-ratio: 1; max-width: 340px; margin: 0 auto; }

.img-placeholder--light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.img-placeholder--light i { color: rgba(255,255,255,0.4); }
.img-placeholder--light span { color: rgba(255,255,255,0.5); }

/* ── Section Images (real) ─────────────────────────────── */
.section-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.section-img--portrait { aspect-ratio: 3/4; }
.section-img--landscape { aspect-ratio: 16/10; }
.section-img--square { aspect-ratio: 1; max-width: 340px; margin: 0 auto; display: block; border-radius: var(--radius-lg); }

/* ── Gallery Images (real) ─────────────────────────────── */
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}


/* ── Planner Feature Cards ─────────────────────────────── */
.planner-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.planner-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.planner-feature-card i { font-size: 20px; flex-shrink: 0; }
.planner-feature-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}


/* ── Vendor Cards ──────────────────────────────────────── */
.vendor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
}
.vendor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--rose-200);
}
.vendor-card-icon {
  font-size: 32px;
  color: var(--rose-500);
  margin-bottom: 10px;
}
.vendor-card h6 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}


/* ── Gallery ───────────────────────────────────────────── */
.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery-card--tall { height: 100%; min-height: 340px; }
.gallery-card:not(.gallery-card--tall) { min-height: 160px; }

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, var(--rose-100), var(--rose-200));
}
.gallery-placeholder i { font-size: 28px; color: var(--rose-300); }
.gallery-placeholder span { font-size: 12px; color: var(--rose-400); font-weight: 500; }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-couple {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.gallery-venue {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}


/* ── Tools Cards ───────────────────────────────────────── */
.tool-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.tool-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.tool-card i {
  font-size: 28px;
  color: var(--rose-500);
  margin-bottom: 12px;
  display: block;
}
.tool-card h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.tool-card p {
  font-size: 12px;
  color: var(--gray-400);
  margin: 0;
}


/* ── Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F59E0B;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}


/* ── Vendor Stats Card ─────────────────────────────────── */
.vendor-stats-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vendor-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.vendor-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-600);
  line-height: 1;
}
.vendor-stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
  letter-spacing: 0.5px;
}


/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: url('https://cpgpqbuejvxmahuqaoob.supabase.co/storage/v1/object/public/article-images/1772180679547-tsbdqh.jpg') center/cover no-repeat,
              linear-gradient(135deg, var(--rose-700), var(--rose-900));
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(136,19,55,0.82), rgba(74,14,35,0.9));
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
}


/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .brand-mark { color: var(--rose-400); }
.footer-brand .brand-text {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 4px;
}

.footer-about {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--rose-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--rose-400);
  padding-left: 4px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 40px 0 20px;
}

.footer-bottom {
  padding-bottom: 24px;
  font-size: 12px;
  color: var(--gray-500);
}
.footer-bottom .bi-heart-fill { color: var(--rose-500); }


/* ══════════════════════════════════════════════════════════
   ANIMATIONS — Scroll reveal
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {
  .hero-title { margin-bottom: 14px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.4rem; }

  .gallery-card--tall { min-height: 260px; }
  .gallery-card:not(.gallery-card--tall) { min-height: 140px; }
  .gallery-overlay { opacity: 1; }

  .vendor-stats-card { gap: 10px; }
  .vendor-stat { padding: 16px 12px; }
  .vendor-stat-num { font-size: 1.5rem; }
}

@media (min-width: 992px) {
  .section-padding { padding: 120px 0; }
}


/* ══════════════════════════════════════════════════════════
   VIDEO INTRO SECTION
   ══════════════════════════════════════════════════════════ */
#intro-section {
  position: relative;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 80vh;
}

#intro-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

#intro-tap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* shown only when autoplay is blocked */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 3.5rem;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#intro-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2rem;
  padding: 0.45rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}

#intro-skip:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

#intro-sound {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}

#intro-sound:hover {
  background: rgba(255, 255, 255, 0.25);
}
