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

body {
  background: #f5f5f5;
  overflow-x: hidden;
}
.Hero-Div {
  margin: 22.78px 20px 0px 20px;
  background: linear-gradient(
    180deg,
    rgba(197, 255, 253, 0.6) 32.43%,
    #4190ad 119.75%
  );
  border-radius: 38px;
  padding: 25.22px 22px 0px 22px;
}

/* Navbar styles moved to shared.css */

.hero-bottom-content {
  padding: 90px 30px 88px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  background: #ffffff99;
  border: 1.31px solid #4190ad47;
  padding: 18px 27px;
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: CAP_HEIGHT;
  line-height: 20px;
  letter-spacing: 15%;
  text-align: center;
  text-transform: uppercase;
  color: #4190ad;
  border-radius: 65.28px;
  margin-bottom: 45px;
}

.hero-title {
  font-family: Georgia;
  font-weight: 400;
  font-style: Regular;
  font-size: 120px;
  leading-trim: CAP_HEIGHT;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin-bottom: 50px;
}

/* Contact section and footer moved to shared.css */

/* ===========================
   WEDDING SECTION
=========================== */
.wedding-section {
  padding: 66px 89px 58px;
  background: #fff;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: CAP_HEIGHT;
  line-height: 24px;
  letter-spacing: 15%;
  text-align: center;
  text-transform: uppercase;
  color: #4190ad;
  margin-bottom: 32px;
}

.section-title {
  font-family: Georgia;
  font-weight: 400;
  font-style: Regular;
  font-size: 58px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 32px;
}

.section-desc {
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 153%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #545454;
  margin-bottom: 62px;
  max-width: 1055px;
}

.music-section {
  text-align: center;
}

.music-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 37px;
  height: 520px;
}

.music-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.music-card img,
.music-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-card.small {
  width: 465.14px;
  height: 310px;
}

.music-card.large {
  width: 738px;
  height: 490px;
}

/* Controls */
.controls {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 29px;
}

.buttonslider {
  height: 59px;
  width: 59px;
  background: #d7f4f080;
  border: 0.72px solid #ebebeb;
  box-shadow: 0px 2.88px 5.76px 0px #0000001f;
  cursor: pointer;
  border-radius: 90px;
}

.buttonslidersecond {
  height: 59px;
  width: 59px;
  background: linear-gradient(177.7deg, #418ca7 -1.74%, #386f83 98.07%);
  border: 0.72px solid #ebebeb;
  box-shadow: 0px 2.88px 5.76px 0px #0000001f;
  cursor: pointer;
  border-radius: 90px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 34px;
  height: 9px;
  background: #00000014;
  border-radius: 100px;
  transition: 0.3s ease;
}

.dot.active {
  width: 57px;
  height: 9px;
  background: #4190ad;
}

.songname {
  font-family: Georgia;
  font-weight: 400;
  font-style: Regular;
  font-size: 25.21px;
  leading-trim: CAP_HEIGHT;
  line-height: 28.8px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #272727;
  margin-top: 27px;
  transition: all 0.5s ease;
}

.songnamebig {
  font-family: Georgia;
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  leading-trim: CAP_HEIGHT;
  line-height: 45.69px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #272727;
  margin-top: 44px;
  transition: all 0.5s ease;
}

/* Responsive overrides for this page if needed */

/* Custom Video Play Button */
.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.music-card.small .custom-play-btn svg {
  width: 70px;
  height: 70px;
  transition: all 0.5s ease;
}

.music-card.large .custom-play-btn svg {
  width: 118px;
  height: 118px;
  transition: all 0.5s ease;
}

.custom-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 1800px) {
  .music-container {
    height: 480px;
    gap: 30px;
  }
  .music-card.large {
    width: 660px;
    height: 440px;
  }
  .music-card.small {
    width: 420px;
    height: 280px;
  }
  .controls {
    gap: 26px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 56px;
    height: 56px;
  }
  .carousel-dots {
    gap: 6px;
  }
  .dot {
    width: 32px;
    height: 9px;
  }
  .dot.active {
    width: 54px;
    height: 9px;
  }
  .songname { font-size: 24px; margin-top: 25px; line-height: 28px; }
  .songnamebig { font-size: 38px; margin-top: 40px; line-height: 44px; }
}

@media (max-width: 1600px) {
  .music-container {
    height: 440px;
    gap: 25px;
  }
  .music-card.large {
    width: 600px;
    height: 400px;
  }
  .music-card.small {
    width: 390px;
    height: 260px;
  }
  .controls {
    gap: 24px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 54px;
    height: 54px;
  }
  .carousel-dots {
    gap: 6px;
  }
  .dot {
    width: 31px;
    height: 8px;
  }
  .dot.active {
    width: 51px;
    height: 8px;
  }
  .songname { font-size: 23px; margin-top: 24px; line-height: 27px; }
  .songnamebig { font-size: 36px; margin-top: 38px; line-height: 42px; }
}

@media (min-width: 1451px) and (max-width: 1500px) {
  .hero-badge {
    margin-bottom: 40px;
    font-size: 18px;
    padding: 15px 25px;
  }
  .hero-title {
    font-size: 100px;
    margin-bottom: 40px;
  }
  .hero-desc {
    font-size: 18px;
  }
  .hero-bottom-content {
    padding: 70px 30px 70px 30px;
  }
  .music-container {
    height: 400px;
    gap: 25px;
  }
  .music-card.large {
    width: 550px;
    height: 366px;
  }
  .music-card.small {
    width: 400px;
    height: 266px;
  }
  .controls {
    gap: 22px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 51px;
    height: 51px;
  }
  .carousel-dots {
    gap: 6px;
  }
  .dot {
    width: 29px;
    height: 8px;
  }
  .dot.active {
    width: 48px;
    height: 8px;
  }
  .songname { font-size: 22px; margin-top: 22px; line-height: 26px; }
  .songnamebig { font-size: 34px; margin-top: 36px; line-height: 40px; }
}

@media (min-width: 1351px) and (max-width: 1450px) {
  .hero-badge {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .hero-title {
    font-size: 90px;
    margin-bottom: 30px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-bottom-content {
    padding: 60px 30px 60px 30px;
  }
  .music-container {
    height: 370px;
    gap: 20px;
  }
  .music-card.large {
    width: 510px;
    height: 340px;
  }
  .music-card.small {
    width: 400px;
    height: 266px;
  }
  .controls {
    gap: 20px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 48px;
    height: 48px;
  }
  .carousel-dots {
    gap: 5px;
  }
  .dot {
    width: 27px;
    height: 8px;
  }
  .dot.active {
    width: 45px;
    height: 8px;
  }
  .songname { font-size: 21px; margin-top: 21px; line-height: 25px; }
  .songnamebig { font-size: 32px; margin-top: 34px; line-height: 38px; }
}

@media (min-width: 1201px) and (max-width: 1350px) {
  .hero-desc {
    max-width: 700px;
  }
  .hero-badge {
    margin-bottom: 20px;
    font-size: 14px;
    padding: 12px 20px;
  }
  .hero-title {
    font-size: 70px;
    margin-bottom: 20px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 20px;
  }
  .hero-bottom-content {
    padding: 40px 20px 40px 20px;
  }
  .music-container {
    height: 350px;
    gap: 15px;
  }
  .music-card.large {
    width: 500px;
    height: 333px;
  }
  .music-card.small {
    width: 360px;
    height: 240px;
  }
  .controls {
    gap: 18px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 45px;
    height: 45px;
  }
  .carousel-dots {
    gap: 5px;
  }
  .dot {
    width: 25px;
    height: 7px;
  }
  .dot.active {
    width: 42px;
    height: 7px;
  }
  .songname { font-size: 20px; margin-top: 20px; line-height: 24px; }
  .songnamebig { font-size: 30px; margin-top: 32px; line-height: 36px; }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }
  .hero-badge {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .music-container {
    height: 320px;
    gap: 15px;
  }
  .music-card.large {
    width: 450px;
    height: 300px;
  }
  .music-card.small {
    width: 310px;
    height: 206px;
  }
  .music-card.large .custom-play-btn svg {
    width: 90px;
    height: 90px;
  }
  .music-card.small .custom-play-btn svg {
    width: 50px;
    height: 50px;
  }
  .controls {
    gap: 16px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 42px;
    height: 42px;
  }
  .carousel-dots {
    gap: 5px;
  }
  .dot {
    width: 23px;
    height: 7px;
  }
  .dot.active {
    width: 39px;
    height: 7px;
  }
  .songname { font-size: 19px; margin-top: 18px; line-height: 23px; }
  .songnamebig { font-size: 28px; margin-top: 30px; line-height: 34px; }
}

@media (max-width: 1000px) {
  .hero-title {
    font-size: 50px;
    line-height: 60px;
  }
  .hero-desc {
    max-width: 500px;
  }
  .music-container {
    height: 280px;
    gap: 10px;
  }
  .music-card.large {
    width: 400px;
    height: 266px;
  }
  .music-card.small {
    width: 240px;
    height: 160px;
  }
  .music-card.large .custom-play-btn svg {
    width: 80px;
    height: 80px;
  }
  .music-card.small .custom-play-btn svg {
    width: 45px;
    height: 45px;
  }
  .controls {
    gap: 14px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 40px;
    height: 40px;
  }
  .carousel-dots {
    gap: 4px;
  }
  .dot {
    width: 21px;
    height: 6px;
  }
  .dot.active {
    width: 36px;
    height: 6px;
  }
  .songname { font-size: 18px; margin-top: 16px; line-height: 22px; }
  .songnamebig { font-size: 26px; margin-top: 26px; line-height: 32px; }
}

@media (max-width: 768px) {
  .Hero-Div {
    margin: 12px 10px 0 10px;
    padding: 16px 12px 0 12px;
    border-radius: 24px;
  }
  .hero-bottom-content {
    padding: 30px 16px 30px 16px;
  }
  .hero-badge {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 14px;
    padding: 10px 16px;
  }
  .hero-title {
    font-size: 44px;
    line-height: 48px;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* Wedding/Music section */
  .wedding-section {
    padding: 36px 20px 30px;
  }
  .section-label {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .section-title {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .section-desc {
    font-size: 15px;
    margin-bottom: 36px;
  }

  /* Carousel — show only center large card on mobile */
  .music-container {
    height: auto;
    gap: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  /* Hide the two side small cards */
  .music-card.small {
    display: none !important;
  }
  /* Hide their wrapper divs too */
  .music-container > div:first-child,
  .music-container > div:nth-child(3) {
    display: none !important;
  }
  .music-card.large {
    width: 92vw;
    max-width: 520px;
    height: 260px;
  }
  .music-card.large .custom-play-btn svg {
    width: 70px;
    height: 70px;
  }
  .songnamebig {
    font-size: 22px;
    margin-top: 16px;
  }
  .controls {
    margin-top: 24px;
    gap: 18px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 48px;
    height: 48px;
  }

  .carousel-dots {
    gap: 6px;
  }
  .dot {
    width: 18px;
    height: 8px;
  }
  .dot.active {
    width: 30px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .Hero-Div {
    margin: 8px 6px 0 6px;
    padding: 12px 8px 0 8px;
    border-radius: 16px;
  }
  .hero-bottom-content {
    padding: 20px 10px 20px 10px;
  }
  .hero-title {
    font-size: 34px;
    line-height: 40px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
    margin-bottom: 8px;
  }
  .hero-desc {
    font-size: 13px;
    line-height: 20px;
  }

  .wedding-section {
    padding: 24px 12px 20px;
  }
  .section-label {
    font-size: 14px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .music-card.large {
    width: 90vw;
    height: 220px;
  }
  .music-card.small {
    display: none !important;
  }
  .songnamebig {
    font-size: 20px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 42px;
    height: 42px;
  }

  .carousel-dots {
    gap: 5px;
  }
  .dot {
    width: 12px;
    height: 6px;
  }
  .dot.active {
    width: 20px;
    height: 6px;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 28px;
    line-height: 34px;
  }
  .hero-badge {
    font-size: 10px;
    padding: 7px 12px;
  }
  .section-title {
    font-size: 22px;
  }
  .section-desc {
    font-size: 12px;
  }
  .music-card.large {
    width: 88vw;
    height: 200px;
  }
  .music-card.small {
    display: none !important;
  }
  .music-card.large .custom-play-btn svg {
    width: 56px;
    height: 56px;
  }
  .songnamebig {
    font-size: 17px;
  }
  .controls {
    gap: 12px;
  }

  .carousel-dots {
    gap: 4px;
  }
  .dot {
    width: 8px;
    height: 5px;
  }
  .dot.active {
    width: 12px;
    height: 5px;
  }
}

@media (max-width: 320px) {
  .Hero-Div {
    margin: 4px 4px 0 4px;
    padding: 8px 6px 0 6px;
    border-radius: 12px;
  }
  .hero-bottom-content {
    padding: 14px 8px 14px 8px;
  }
  .hero-title {
    font-size: 24px;
    line-height: 30px;
  }
  .hero-badge {
    font-size: 9px;
    padding: 6px 10px;
    margin-bottom: 6px;
  }
  .hero-desc {
    font-size: 11px;
    line-height: 17px;
  }

  .wedding-section {
    padding: 16px 8px 14px;
  }
  .section-label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .section-desc {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .music-card.large {
    width: 88vw;
    height: 170px;
  }
  .music-card.small {
    display: none !important;
  }
  .music-card.large .custom-play-btn svg {
    width: 44px;
    height: 44px;
  }
  .songnamebig {
    font-size: 15px;
  }
  .buttonslider,
  .buttonslidersecond {
    width: 36px;
    height: 36px;
  }
  .controls {
    gap: 12px;
  }

  .carousel-dots {
    gap: 4px;
  }
  .dot {
    width: 14px;
    height: 4px;
  }
  .dot.active {
    width: 22px;
    height: 4px;
  }
}

/* Tablet and mobile carousel rules, aligned with the homepage's fluid layout. */
body {
  overflow-x: clip;
}

@media (min-width: 1451px) and (max-width: 1500px) {
  .hero-title { font-size: 72px; line-height: 1.15; }
}

@media (min-width: 1351px) and (max-width: 1450px) {
  .hero-title { font-size: 66px; }
}

@media (min-width: 1201px) and (max-width: 1350px) {
  .hero-title { font-size: 60px; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .wedding-section { padding-inline: 32px; }
  .music-container { height: auto; gap: 0; }
  .music-container > div:not(:nth-child(2)) { display: none !important; }
  .music-card.large { width: min(100%, 680px); height: auto; aspect-ratio: 3 / 2; }
  .songnamebig { font-size: clamp(22px, 3vw, 30px); margin-top: 20px; }
  .controls { margin-top: 32px; }
}

/* Keep the visible carousel item centered at every width below 1100px. */
@media (max-width: 1100px) {
  .music-container { justify-content: center; }
  .music-container > div:not(:nth-child(2)) { display: none !important; }
  .music-container > div:nth-child(2) { display: block !important; width: 100%; }
  .music-container > div:nth-child(2) .music-card { margin-inline: auto; }
}

/* Desktop text scale, matching the homepage breakpoints. */
@media (min-width: 1451px) and (max-width: 1700px) {
  .section-label { font-size: 20px; }
  .section-title { font-size: 50px; }
  .section-desc { font-size: 16px; }
}

@media (min-width: 1201px) and (max-width: 1450px) {
  .section-label { font-size: 18px; }
  .section-title { font-size: 45px; }
  .section-desc { font-size: 15px; }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .section-label { font-size: 16px; }
  .section-title { font-size: 40px; }
  .section-desc { font-size: 14px; }
}

/* Homepage-matched hero typography at desktop and tablet widths. */
@media (min-width: 1501px) and (max-width: 1700px) {
  .hero-badge { margin-bottom: 40px; font-size: 18px; padding: 15px 25px; }
  .hero-title { font-size: 100px; margin-bottom: 40px; }
  .hero-bottom-content { padding: 70px 30px; }
}
@media (min-width: 1451px) and (max-width: 1500px) {
  .hero-badge { margin-bottom: 30px; font-size: 16px; }
  .hero-title { font-size: 90px; margin-bottom: 30px; }
  .hero-bottom-content { padding: 60px 30px; }
}
@media (min-width: 1351px) and (max-width: 1450px) {
  .hero-badge { margin-bottom: 20px; font-size: 15px; }
  .hero-title { font-size: 80px; margin-bottom: 30px; }
}
@media (min-width: 1201px) and (max-width: 1350px) {
  .hero-badge { margin-bottom: 20px; font-size: 14px; padding: 12px 20px; }
  .hero-title { font-size: 70px; margin-bottom: 20px; }
  .hero-bottom-content { padding: 40px 20px; }
}
@media (min-width: 1001px) and (max-width: 1200px) {
  .hero-badge { margin-bottom: 15px; font-size: 13px; }
  .hero-title { font-size: 60px; }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .hero-title { font-size: 50px; line-height: 60px; }
}
