* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: white;
  color: #fff;
}


/* Desktop Block */
.desktop-block {
  display: none;
  height: 100vh;
  background: #000;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Mobile Content */
.mobile-content {
  display: none;
}

/* Desktop view */
@media (min-width: 1025px) {
  .desktop-block {
    display: flex;
  }
}

/* Mobile view */
@media (max-width: 1024px) {
  .mobile-content {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  background-size: cover;
  /* KEY */
  background-position: center;
  /* KEY */
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Mobile safe height */
@media (max-width: 768px) {
  .hero {
    height: 90svh;
    /* mobile safe viewport */
  }
}

/* OVERLAY CONTENT */


.hero-bottom {
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottom h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}


.play-fixed {
  position: fixed;
  bottom: 40px;
  right: 16px;
  z-index: 1000;
}

/* PLAY BUTTON */
.play-btn {
  width: 56px;
  height: 56px;
  background: #ff2b5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

/* OFFER BAR */
.offer-bar {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 999;

  background: #fff;
  border-radius: 14px;
  padding: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.price {
  font-size: 14px;
  color: #000;
}

.price .old {
  text-decoration: line-through;
  color: #999;
}

.price .new {
  color: #ff2b5e;
  font-size: 18px;
  font-weight: bold;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #ff2b5e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

/* OTHER SECTIONS */
.section {
  padding: 80px 16px;
  background: #0b1020;
  color: #fff;
}


/* INVITATION PAGE */
.invite-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 16px 35px;
  overflow: hidden;
}

@supports (height: 100svh) {
  .invite-section {
    min-height: 85svh;
  }
}

/* Blurred palace background */
.invite-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/palace.jpg') center center / cover no-repeat;
  /* filter: blur(6px); */
  transform: scale(1.1);
  z-index: 0;
}

/* Overlay */
.invite-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 220, 170, 0.80);
  z-index: 1;
}

/* Lamps */
.lamp {
  position: absolute;
  top: 0;
  width: clamp(140px, 25vw, 220px);
  height: auto;
  z-index: 2;
  object-fit: contain;
}

.lamp.left {
  left: clamp(4px, 2vw, 12px);
}

.lamp.right {
  right: clamp(4px, 2vw, 12px);
}

/* Invitation content */
.invite-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
  width: 100%;
  color: #3b2a1a;
  padding: 0 12px;
}

/* Ganesh image */
.ganesh {
  width: clamp(120px, 28vw, 170px);
  height: auto;
  margin: 0 auto clamp(20px, 5vh, 30px);
  display: block;
  object-fit: contain;
}

/* Blessing text */
.blessing {
  font-size: clamp(19px, 4.2vw, 25px);
  margin-bottom: clamp(20px, 5vh, 30px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
   font-family: 'Lobster Two', sans-serif;
}

/* Names styling */
.names {
  font-size: clamp(45px, 10vw, 59px);
  line-height: 1.2;
  font-weight: bolder;
  margin-bottom: clamp(20px, 5vh, 30px);
  font-family: 'Lobster Two', sans-serif;
  color: #2a1810;
}

.names span {
  font-size: clamp(36px, 9vw, 48px);
  display: inline-block;
  margin: clamp(6px, 1.5vh, 10px) 0;
}

/* Date styling */
.date {
  font-size: clamp(19px, 4vw, 25px);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
   font-family: 'Lobster Two', sans-serif;
}

/* .top-divider {
      position: absolute;
      top: -17px;
      left: 50%;
      transform: translateX(-50%);
      width: clamp(200px, 45vw, 320px);
      max-width: 90%;
      height: auto;
      z-index: 3;
      object-fit: contain;
    } */

/* Small phones (up to 360px) */
@media (max-width: 360px) {
  .invite-section {
    padding: 45px 12px 28px;
    min-height: 80vh;
  }

  .lamp {
    width: 120px;
  }

  .lamp.left {
    left: 2px;
  }

  .lamp.right {
    right: 2px;
  }

  .invite-content {
    padding: 0 8px;
  }

  .ganesh {
    margin-bottom: 16px;
  }

  .blessing {
    margin-bottom: 16px;
  }

  .names {
    margin-bottom: 16px;
  }
}

/* Medium phones (361px - 480px) */
@media (min-width: 361px) and (max-width: 480px) {
  .invite-section {
    padding: 50px 14px 32px;
    min-height: 82vh;
  }

  .lamp {
    width: clamp(130px, 22vw, 160px);
  }
}

/* Large phones (481px - 599px) */
@media (min-width: 481px) and (max-width: 599px) {
  .invite-section {
    padding: 55px 16px 38px;
    min-height: 85vh;
  }

  .lamp {
    width: clamp(150px, 20vw, 190px);
  }

  .lamp.left {
    left: 8px;
  }

  .lamp.right {
    right: 8px;
  }

  .invite-content {
    max-width: 450px;
  }
}

/* Tablets (600px - 900px) */
@media (min-width: 600px) and (max-width: 900px) {
  .invite-section {
    padding: 60px 24px 45px;
    min-height: 85vh;
  }

  .lamp {
    width: clamp(170px, 18vw, 210px);
  }

  .lamp.left {
    left: 12px;
  }

  .lamp.right {
    right: 12px;
  }

  .invite-content {
    max-width: 520px;
    padding: 0 16px;
  }

  .ganesh {
    width: 180px;
    margin-bottom: 32px;
  }

  .blessing {
    font-size: 23px;
    margin-bottom: 32px;
  }

  .names {
    font-size: 60px;
    margin-bottom: 32px;
  }

  .names span {
    font-size: 50px;
  }

  .date {
    font-size: 21px;
  }
}

/* Large tablets (901px+) */
@media (min-width: 901px) {
  .invite-section {
    padding: 70px 32px 55px;
    min-height: 85vh;
  }

  .lamp {
    width: 220px;
  }

  .lamp.left {
    left: 16px;
  }

  .lamp.right {
    right: 16px;
  }

  .invite-content {
    max-width: 560px;
  }

  .ganesh {
    width: 190px;
    margin-bottom: 36px;
  }

  .blessing {
    font-size: 24px;
    margin-bottom: 36px;
  }

  .names {
    font-size: 64px;
    margin-bottom: 36px;
  }

  .names span {
    font-size: 54px;
  }

  .date {
    font-size: 22px;
  }
}

/* Landscape orientation for phones */
@media (orientation: landscape) and (max-height: 500px) {
  .invite-section {
    min-height: auto;
    padding: 40px 16px 30px;
  }

  .lamp {
    width: clamp(70px, 12vw, 100px);
  }

  .ganesh {
    width: 80px;
    margin-bottom: 12px;
  }

  .blessing {
    margin-bottom: 12px;
  }

  .names {
    margin-bottom: 12px;
  }
}

/* Very short landscape screens */
@media (orientation: landscape) and (max-height: 400px) {
  .invite-section {
    padding: 30px 16px 20px;
  }

  .lamp {
    width: 60px;
  }

  .ganesh {
    width: 60px;
    margin-bottom: 8px;
  }

  .blessing {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .names {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .names span {
    font-size: 24px;
  }

  .date {
    font-size: 12px;
  }
}

/* FIXED PLAY BUTTON */
/* .play-fixed {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 1000;
} */

/* ZIG ZAG DIVIDER */
.zigzag-divider {
  width: 100%;
  height: 18px;
  background:
    linear-gradient(135deg, #f5dcae 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, #f5dcae 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, #f5dcae 25%, transparent 25%),
    linear-gradient(45deg, #f5dcae 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: white;
  /* HERO bottom color */
}


/* WEDDING DETAILS SECTION */
.wedding-details {
  position: relative;
  padding: 0px 0px 0px;
  background: #f5e3b8;
  text-align: center;
  color: #3b2a1a;
  overflow: hidden;
}

/* Palace watermark */
.wedding-details::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/palace-outline.png') center/contain no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.decor-top {
  width: 100vw;
  /* full screen width */
  max-width: 100%;
  display: block;
  margin: -16px 0px 0px 0px;
  /* no gap */
  position: relative;
  z-index: 3;
}

.decor-bottom {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.decor-top {
  margin-bottom: 24px;
}

.decor-bottom {
  margin-top: 40px;
}

/* Ganesh */
.ganesh-main {
  width: 140px;
  margin: 0 auto 12px;
  display: block;
  position: relative;
  z-index: 2;
}

.blessing-text {
 font-family: 'Courgette', cursive;
  font-size: 16px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* Person Block */
.person {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* Circular photo frame */
.photo-frame {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  border-radius: 50%;
  padding: 6px;
  background: url('../images/frame.png') center/cover no-repeat;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Names */
.person-name {
 font-family: 'Amita', sans-serif;
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: bolder;
}

/* Description */
.person-desc {
 font-family: 'Niramit', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 0 10px;
}

/* Weds text */
.weds {
  font-family: 'Lobster Two', sans-serif;
  font-size: 32px;
  color: red;
  margin: 24px 0;
  position: relative;
  z-index: 2;
  font-weight: bold;
}


/* ROTATING PHOTO FRAME */
.photo-rotate-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
}

/* Decorative rotating border */
.rotate-border {
  position: absolute;
  inset: 0;
  background: url('../images/ring1.png') center/cover no-repeat;
  animation: rotateCircle 5s linear infinite;
  z-index: 3;
}

.rotate-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(rgba(255, 255, 255, .5),
      transparent,
      transparent);
}


.photo-inner {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  z-index: 4;
  /* 🔥 FIX */
}


.photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Rotation animation */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 3rd section */
/* Events Section */
.events-section {
  padding: 40px 16px 0px;
  background: linear-gradient(to bottom, #f5dcaa 0%, #f7e6bf 100%);
  text-align: center;
  max-width: 100%;
  overflow-x: hidden;
}

/* Header Images */
.events-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 3vw, 16px);
  margin-bottom: 20px;
}

.elephant {
  width: clamp(105px, 15vw, 140px);
  height: auto;
}

.couple {
  width: clamp(120px, 20vw, 170px);
  height: auto;
}

/* Title */
.events-title {
  font-family: 'Amita', sans-serif;
  font-size: clamp(40px, 6vw, 50px);
  color: #5a3a1c;
  margin: 0 0 30px;
  font-weight: 700;
}

/* Event Cards Container */
.events-container {
  max-width: 500px;
  margin: 0 auto;
}

/* Event Cards */
.event-card {
  position: relative;
  border-radius: 70px 70px 16px 16px;
  padding: 28px 24px 24px;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  overflow: hidden;
}



/* Background couple image - behind gradient */
.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/CoupleImg56.png') center/cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  background-position: center 40%;
}

/* Gradient overlay on top of image */
.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* .event-card.pink::before {
  background-image: url('../images/groombride-1.png')center/cover no-repeat;;
}
.event-card.yellow::before {
  background-image: url('../images/groombride-1.png')center/cover no-repeat;;
}
.event-card.purple::before {
  background-image: url('../images/groombride-1.png')center/cover no-repeat;;
} */
/* Pink/Orange Card */
.event-card.pink::after {
  background: linear-gradient(180deg,
      rgba(255, 165, 75, 0.70) 0%,
      /* Bright orange top */
      rgba(255, 140, 100, 0.75) 25%,
      /* Orange-coral */
      rgba(255, 110, 130, 0.80) 60%,
      /* Coral-pink */
      rgba(240, 75, 120, 0.85) 100%
      /* Deep pink bottom */
    );
}

/* Yellow/Orange Card */
.event-card.yellow::after {
  background: linear-gradient(180deg,
      rgba(255, 200, 80, 0.70) 0%,
      /* Golden yellow top */
      rgba(255, 180, 90, 0.75) 40%,
      /* Orange-yellow */
      rgba(255, 150, 100, 0.80) 80%,
      /* Orange */
      rgba(255, 130, 110, 0.85) 100%
      /* Coral bottom */
    );
}


.event-card.purple::after {
  background: linear-gradient(180deg,
      rgba(200, 80, 200, 0.70) 0%,
      /* Purple top */
      rgba(220, 70, 190, 0.75) 40%,
      /* Magenta */
      rgba(240, 60, 170, 0.80) 70%,
      /* Pink-magenta */
      rgba(255, 50, 150, 0.85) 100%
      /* Hot pink bottom */
    );
}


/* Pink/Orange Card - solid base color */
.event-card.pink {
  background: #ff8c69;
}

/* Yellow/Orange Card - solid base color */
.event-card.yellow {
  background: #ffc857;
}

.event-card.purple {
  background-color: rgba(255, 70, 180, 0.90);
}

/* Event Title */
.event-card h3 {
   font-family: 'Lobster Two', sans-serif;
  font-size: clamp(28px, 6vw, 36px);
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

/* Event Details */
.event-card p {
  font-size: clamp(15px, 3.8vw, 18px);
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  color: white;
}
.eventtext
{
  color: white !important;
} 

.event-card p .icon {
  font-size: clamp(20px, 4.5vw, 24px);
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card p .text {
  flex: 1;
  font-family: 'Niramit', sans-serif;
}

.event-card .location-row {
  display: block;
  margin: 12px 0;
  position: relative;
  z-index: 3;
}

.event-card .location-main {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}

.event-card .address {
  margin: 0;
  padding-left: 46px;
  font-size: clamp(14px, 3.5vw, 17px);
  line-height: 1.5;
  font-weight: 500;
}

.countdown-section .title
{
    font-family: 'Amita', sans-serif !important;
    font-weight: bolder !important;

}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .events-section {
    padding: 50px 24px 120px;
  }

  .events-container {
    max-width: 600px;
  }

  .event-card {
    padding: 36px 32px 28px;
    border-radius: 50px 50px 20px 20px;
    margin-bottom: 28px;
  }

  .elephant {
    width: 90px;
  }

  .couple {
    width: 120px;
  }
}

/* Large Tablet & Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
  .events-section {
    padding: 60px 32px 140px;
  }

  .events-container {
    max-width: 700px;
  }

  .event-card {
    padding: 40px 36px 32px;
    border-radius: 60px 60px 24px 24px;
    margin-bottom: 32px;
  }

  .elephant {
    width: 100px;
  }

  .couple {
    width: 130px;
  }
}

/* Desktop Block (Hide on Mobile) */
.desktop-block {
  display: none;
  height: 100vh;
  background: #000;
  color: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.desktop-block h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.desktop-block p {
  font-size: 18px;
  color: #ccc;
}

/* Show desktop block only on desktop */
@media (min-width: 1025px) {
  .desktop-block {
    display: flex;
  }

  .events-section {
    display: none;
  }
}

/* Small Mobile Optimization */
@media (max-width: 375px) {
  .events-section {
    padding: 32px 12px 90px;
  }

  .event-card {
    padding: 24px 18px 20px;
    border-radius: 32px 32px 12px 12px;
    margin-bottom: 20px;
  }

  .event-card p {
    gap: 10px;
  }

  .event-card p .icon {
    width: 28px;
  }

  .event-card .address {
    padding-left: 38px;
  }
}

/* 4th Section - Ceremony */
.ceremony-section {
  background: linear-gradient(to bottom, #f9ecd4 0%, #f6e7c6 100%);
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Mandala at top */
.mandala-top {
  width: 100%;
  max-width: 100%;
  height: auto;
  opacity: 0.25;
  display: block;
  margin: 0;
  object-fit: cover;
}

/* Content Container */
.ceremony-content {
  max-width: 500px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 40px) clamp(16px, 4vw, 24px) clamp(40px, 8vw, 60px);
}

/* Title Row with Side Images */
.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 5vw, 32px);
  margin-bottom: clamp(24px, 6vw, 36px);
}

.side-img {
  width: clamp(120px, 15vw, 160px);
  height: clamp(120px, 15vw, 160px);
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

/* Title */
.title {
  font-family: 'Amita', sans-serif !important;
  font-size: clamp(32px, 8vw, 48px);
  color: #6b3410;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
}

/* Main Text */
.text {
  font-size: clamp(18px, 3.8vw, 21px);
  line-height: 1.8;
  color: #6b3410;
  /* margin-bottom: clamp(24px, 6vw, 36px); */
  font-family: 'Courgette', cursive;
}

/* Highlight (date and time) */
.highlight {
  color: #d32f2f;
  font-weight: bold;
  font-style: italic;
}

/* Bottom Decorative Divider */
.bottom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(24px, 6vw, 32px);
}

.divider-dot {
  width: 6px;
  height: 6px;
  background: #6b3410;
  border-radius: 50%;
}

.divider-diamond {
  width: 14px;
  height: 14px;
  background: #6b3410;
  transform: rotate(45deg);
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .ceremony-content {
    max-width: 600px;
    padding: 36px 32px 50px;
  }

  .title {
    font-size: 42px;
  }

  .text {
    font-size: 16px;
    line-height: 1.9;
  }

  .side-img {
    width: 70px;
    height: 70px;
  }
}

/* Large Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .ceremony-content {
    max-width: 700px;
    padding: 44px 40px 60px;
  }

  .title {
    font-size: 50px;
  }

  .text {
    font-size: 18px;
    line-height: 2;
  }

  .side-img {
    width: 90px;
    height: 90px;
  }
}

/* Small Mobile Optimization */
@media (max-width: 375px) {
  .ceremony-content {
    padding: 20px 12px 36px;
  }

  .title-row {
    gap: 12px;
  }

  .side-img {
    width: 55px;
  }

  .text {
    font-size: 13px;
  }
}


/* 4th section */
.warm-regards-section {
  background: linear-gradient(to bottom, #f4c542 0%, #e8b730 100%);
  text-align: center;
  /* padding: clamp(32px, 8vw, 60px) clamp(16px, 4vw, 24px) clamp(24px, 6vw, 40px); */
  position: relative;
  overflow: hidden;
}

/* Decorative dots background */
.warm-regards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(218, 165, 32, 0.3) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Confetti/Sparkles Animation */
.confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
  z-index: 2;
}

.confetti-piece {
  position: absolute;
  width: 5px;
  height: 10px;
  background: #ff6b9d;
  opacity: 0;
  border-radius: 50% 0 50% 0;
  /* Creates leaf shape */
  animation: confetti-fall 3s ease-in infinite;
}

@keyframes confetti-fall {
  0% {
    top: -10px;
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    top: 250px;
    opacity: 0;
    transform: translateX(var(--drift)) rotate(360deg);
  }
}

/* Different colored confetti */
/* Update confetti pieces - random starting positions from TOP */
.confetti-piece:nth-child(1) {
  left: 10%;
  top: 5%;
  /* Start from top area */
  --drift: 20px;
  --rotation: 360deg;
  animation-delay: 0s;
  background: #ff6b9d;
}

.confetti-piece:nth-child(2) {
  left: 45%;
  top: 2%;
  --drift: -15px;
  --rotation: -270deg;
  animation-delay: 0.3s;
  background: #4ecdc4;
}

.confetti-piece:nth-child(3) {
  left: 78%;
  top: 8%;
  --drift: 25px;
  --rotation: 450deg;
  animation-delay: 0.6s;
  background: #ffe66d;
}

.confetti-piece:nth-child(4) {
  left: 25%;
  top: 3%;
  --drift: -20px;
  --rotation: -360deg;
  animation-delay: 0.9s;
  background: #a8e6cf;
}

.confetti-piece:nth-child(5) {
  left: 62%;
  top: 10%;
  --drift: 30px;
  --rotation: 540deg;
  animation-delay: 1.2s;
  background: #ff6b9d;
}

.confetti-piece:nth-child(6) {
  left: 88%;
  top: 4%;
  --drift: -25px;
  --rotation: -450deg;
  animation-delay: 1.5s;
  background: #dda0dd;
}

.confetti-piece:nth-child(7) {
  left: 35%;
  top: 7%;
  --drift: 15px;
  --rotation: 270deg;
  animation-delay: 1.8s;
  background: #4ecdc4;
}

.confetti-piece:nth-child(8) {
  left: 92%;
  top: 6%;
  --drift: -30px;
  --rotation: -540deg;
  animation-delay: 2.1s;
  background: #ffaaa5;
}

.confetti-piece:nth-child(9) {
  left: 18%;
  top: 9%;
  --drift: 20px;
  --rotation: 360deg;
  animation-delay: 2.4s;
  background: #ffe66d;
}

.confetti-piece:nth-child(10) {
  left: 55%;
  top: 1%;
  --drift: -10px;
  --rotation: -270deg;
  animation-delay: 0.4s;
  background: #a8e6cf;
}

.confetti-piece:nth-child(11) {
  left: 72%;
  top: 5%;
  --drift: 18px;
  --rotation: 450deg;
  animation-delay: 0.7s;
  background: #dda0dd;
}

.confetti-piece:nth-child(12) {
  left: 8%;
  top: 8%;
  --drift: -22px;
  --rotation: -360deg;
  animation-delay: 1s;
  background: #ffaaa5;
}

.confetti-piece:nth-child(13) {
  left: 42%;
  top: 3%;
  --drift: 28px;
  --rotation: 540deg;
  animation-delay: 1.3s;
  background: #4ecdc4;
}

.confetti-piece:nth-child(14) {
  left: 68%;
  top: 10%;
  --drift: -18px;
  --rotation: -450deg;
  animation-delay: 1.6s;
  background: #ffe66d;
}

.confetti-piece:nth-child(15) {
  left: 95%;
  top: 2%;
  --drift: 12px;
  --rotation: 270deg;
  animation-delay: 1.9s;
  background: #ff6b9d;
}

.confetti-piece:nth-child(16) {
  left: 28%;
  top: 6%;
  --drift: -28px;
  --rotation: -540deg;
  animation-delay: 2.2s;
  background: #a8e6cf;
}

.confetti-piece:nth-child(17) {
  left: 82%;
  top: 4%;
  --drift: 22px;
  --rotation: 360deg;
  animation-delay: 2.5s;
  background: #dda0dd;
}

.confetti-piece:nth-child(18) {
  left: 52%;
  top: 7%;
  --drift: -15px;
  --rotation: -450deg;
  animation-delay: 2.8s;
  background: #ffaaa5;
}

/* Update animation */
@keyframes confetti-fall {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    top: 250px;
    opacity: 0;
    transform: translateX(var(--drift)) rotate(var(--rotation));
  }
}

/* Content Container */
.regards-content {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Top Character Image */
.top-character {
  width: clamp(130px, 32vw, 180px);
  height: auto;
  margin: 0 auto clamp(16px, 4vw, 24px);
  display: block;
}

/* Title */
.regards-title {
  font-family: 'Amita', sans-serif;
  font-size: clamp(32px, 8vw, 48px);
  color: #1a1a1a;
  margin-bottom: clamp(24px, 6vw, 36px);
  font-weight: bold;
}

/* Family Grid */
.family-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 5vw, 32px);
  margin-bottom: clamp(24px, 6vw, 36px);
}

/* Family Member Card */
.family-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
}

/* Profile Image Container */
.profile-image {
  width: clamp(120px, 23vw, 170px);
  height: clamp(120px, 23vw, 170px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.member-name {
 font-family: 'Niramit', sans-serif;
  color: #2a2a2a;
  font-weight: 600;
  margin: 0;
}

/* Relation */
.member-relation {
  font-family: 'Niramit', sans-serif;
  font-size: clamp(13px, 2.8vw, 16px);
  color: #4a4a4a;
  margin: 0;
}

.banner-container {
      width: 100%;
    }

    /* Top decorative border */
    .top-border {
      height: 20px;
      background: linear-gradient(to right, #3d2817 0%, #5a3d28 50%, #3d2817 100%);
      border-top: 1px solid #2a1a0f;
      border-bottom: 1px solid #2a1a0f;
      position: relative;
      overflow: hidden;
    }

    .top-border::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: repeating-linear-gradient(90deg,
        rgba(212, 175, 55, 0.6) 0px,
        rgba(212, 175, 55, 0.6) 8px,
        transparent 8px,
        transparent 16px);
    }

    /* Main banner area */
    .main-banner {
      background: #EDE0CA;
      padding: 18px 40px;
      position: relative;
    }

    /* Subtle texture on beige background */
    .main-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        repeating-linear-gradient(0deg,
          transparent 0px,
          rgba(0, 0, 0, 0.01) 1px,
          transparent 2px);
      pointer-events: none;
    }

    .banner-text {
      font-family: 'Courgette', cursive;
      font-size: clamp(22px, 4.5vw, 30px);
      color: #3d2817;
      text-align: center;
      position: relative;
      z-index: 1;
      font-weight: normal;
      letter-spacing: 0.5px;
    }

    /* Bottom decorative border */
    .bottom-border {
      height: 20px;
      background: linear-gradient(to right, #3d2817 0%, #5a3d28 50%, #3d2817 100%);
      border-top: 1px solid #2a1a0f;
      border-bottom: 1px solid #2a1a0f;
      position: relative;
      overflow: hidden;
    }

    .bottom-border::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: repeating-linear-gradient(90deg,
        rgba(212, 175, 55, 0.6) 0px,
        rgba(212, 175, 55, 0.6) 8px,
        transparent 8px,
        transparent 16px);
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .main-banner {
        padding: 4px 24px;
      }
    }

/* Play Button */
.play-button {
  width: clamp(40px, 10vw, 56px);
  height: clamp(40px, 10vw, 56px);
  background: #dc143c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.play-button:hover {
  transform: scale(1.1);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: clamp(12px, 3vw, 16px) solid #fff;
  border-top: clamp(8px, 2vw, 10px) solid transparent;
  border-bottom: clamp(8px, 2vw, 10px) solid transparent;
  margin-left: 3px;
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .regards-content {
    max-width: 600px;
  }

  .family-grid {
    gap: 28px;
  }

  .profile-image {
    width: 130px;
    height: 130px;
  }

  .top-character {
    width: 170px;
  }
}

/* Large Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .regards-content {
    max-width: 700px;
  }

  .family-grid {
    gap: 36px;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .top-character {
    width: 190px;
  }
}

/* Small Mobile Optimization */
@media (max-width: 375px) {
  .warm-regards-section {
    padding: 28px 12px 20px;
  }

  .family-grid {
    gap: 16px;
  }

  .profile-image {
    width: 85px;
    height: 85px;
    border: 2px solid #fff;
  }
}


/* 5th countdown section */
/* 5th countdown section */
.countdown-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  background-image: url('../images/countdownImg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Decorative pattern overlay - REMOVE opacity: 0.5 */
.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

/* Add z-index to content wrapper */
.content-wrapper {
  position: relative;
  z-index: 2;
  /* Make sure content is above overlay */
  text-align: center;
  width: 100%;
  max-width: 600px;
}

/* Decorative elements */
.decorative-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(219, 114, 38, 0.3), transparent);
  z-index: 1;
}


.title {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: bolder;
  color: #2c1810;
  margin-bottom: 35px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Dancing Script', cursive;
  letter-spacing: 1px;
  font-family: 'Pinyon Script', cursive;

}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.time-box {
  background: #c41e3a;
  border-radius: 50%;
  width: clamp(80px, 18vw, 110px);
  height: clamp(80px, 18vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 215, 140, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.3),
    inset 0 -2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.time-box::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 2px solid rgba(255, 215, 140, 0.4);
  border-radius: 50%;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.time-value {
  font-size: clamp(24px, 6vw, 40px);
  font-weight: bold;
  color: white;
  line-height: 1;
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(255, 215, 140, 0.3);}


.time-label {
  font-size: clamp(10px, 2.5vw, 14px);
  color: rgba(255, 255, 255, 0.95);
  text-transform: capitalize;
  margin-top: 4px;
  font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);

}

/* Bottom decorative element */
.decorative-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(139, 69, 19, 0.2), transparent);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 20px;
}


/* Mobile specific adjustments */
@media (max-width: 480px) {
  .countdown-section {
    padding: 30px 15px;
  }

  .title {
    margin-bottom: 40px;
  }

  .countdown-container {
    gap: 12px;
  }


}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 1024px) {
  .countdown-section {
    padding: 50px 30px;
  }

  .countdown-container {
    gap: 20px;
  }
}

/* Hide on desktop as mentioned */
@media (min-width: 1025px) {
  .countdown-section {
    display: none;
  }
}


/* 6th section Location */
.venue-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #8b1538;
  padding: 0 0 2px 0;
}

/* Decorative top banner */
.decorative-banner {
  width: 100%;
  background: linear-gradient(135deg, #6b0f2a 0%, #8b1538 50%, #a91d47 100%);
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.decorative-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.decorative-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.banner-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(15px, 4vw, 30px);
  flex-wrap: wrap;
}

.illustration-item {
  font-size: clamp(35px, 7vw, 50px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}
.illustrationImg{
  height: 90px;
}

.illustration-item:nth-child(2) {
  animation-delay: 0.3s;
}

.illustration-item:nth-child(3) {
  animation-delay: 0.6s;
}

.illustration-item:nth-child(4) {
  animation-delay: 0.9s;
}

.illustration-item:nth-child(5) {
  animation-delay: 1.2s;
}

.illustration-item:nth-child(6) {
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Content container with card design */
.venue-content {
  margin: 25px 15px 0 15px;
  /* Bottom margin = 0 */
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.venue-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
  border-radius: 20px;
  z-index: -1;
}

.venue-title {
  font-size: clamp(30px, 7vw, 42px);
  background: linear-gradient(135deg, #e91e63, #c2185b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: normal;
  margin-bottom: 20px;
  font-family: 'Pacifico', cursive;
  text-align: center;
  position: relative;
    font-family: 'Lobster Two', sans-serif;
}

.venue-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e91e63, #c2185b);
  margin: 10px auto 0;
  border-radius: 2px;
}

.venue-details {
  background: linear-gradient(135deg, #fff5f7, #ffffff);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #e91e63;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  
}

.venue-name {
  font-size: clamp(18px, 4.5vw, 22px);
  color: #1a1a1a;
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
   font-family: 'Niramit', sans-serif;
}

.venue-name::before {
  content: '📍';
  font-size: 1.2em;
}

.venue-address {
  font-size: clamp(14px, 3.5vw, 16px);
  color: #555;
  line-height: 1.7;
  padding-left: 28px;
   font-family: 'Niramit', sans-serif;
}

/* Map container */
.map-container {
  width: 100%;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid #f0f0f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Get Direction Button */
.direction-button {
  width: calc(100% - 30px);
  margin: 20px 15px 25px;
  background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
  color: white;
  border: none;
  padding: 18px 20px;
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: 'Pacifico', cursive;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.direction-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  font-family: 'Pacifico', cursive;
}

.direction-button:hover::before {
  width: 300px;
  height: 300px;
}

.direction-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

.direction-button:active {
  transform: translateY(0);
}

.direction-icon {
  width: 22px;
  height: 22px;
  fill: white;
  animation: bounce 2s infinite;
  position: relative;
  z-index: 1;
}

.direction-button span {
  position: relative;
  z-index: 1;
   font-family: 'Lobster Two', sans-serif;
  font-weight: normal;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* Mobile specific */
@media (max-width: 480px) {
  .venue-content {
    margin: 20px 12px;
    padding: 25px 18px;
  }

  .venue-details {
    padding: 18px;
  }

  .decorative-banner {
    padding: 20px 15px;
  }

  .map-container {
    height: 280px;
  }

  .direction-button {
    padding: 16px 20px;
    margin: 20px 12px 20px;
  }
}

/* Tablet specific */
@media (min-width: 481px) and (max-width: 1024px) {
  .venue-content {
    margin: 30px 25px;
    padding: 40px 30px;
  }

  .venue-details {
    padding: 25px;
  }

  .map-container {
    height: 380px;
  }

  .direction-button {
    margin: 25px 25px 30px;
    padding: 20px;
  }
}

/* Hide on desktop */
@media (min-width: 1025px) {
  .venue-section {
    display: none;
  }
}

/* 7th last section */
/* Section */
.welcome-section {
  min-height: auto;
  background: #fde9a9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 32px;
  box-sizing: border-box;
}

/* Title */
.welcome-title {
    font-family: 'Amita', sans-serif !important;
  font-size: 32px;
  color: #ff2b55;
  margin-bottom: 30px;
}

/* Card */
.welcome-card {
  background: #ffd86b;
  width: 100%;
  max-width: 320px;
  border-radius: 28px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Profile Image */
.profile-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.profile-name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
   font-family: 'Niramit', sans-serif;
}

/* Call Button */
.call-btn {
  display: inline-block;
  padding: 10px 26px;
  background: #4caf50;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
}

/* Tablet */
@media (min-width: 600px) {
  .welcome-title {
    font-size: 36px;
  }

  .welcome-card {
    max-width: 360px;
    padding: 36px 24px;
  }

  .profile-name {
    font-size: 20px;
  }
}

.OuterGalleryImage{
  width: 100%;
  background: linear-gradient(135deg, #f4d03f 0%, #f9e79f 100%);
  position: relative;
  overflow: hidden;
}
/* Gallery Section */
.gallery-section {
  width: 100%;
  /* background: linear-gradient(135deg, #f4d03f 0%, #f9e79f 100%); */
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative pattern overlay */
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-title {
  font-size: clamp(32px, 6vw, 48px);
  color: #2c1810;
  text-align: center;
  margin-bottom: bold;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Amita', sans-serif !important;


}

/* Carousel Container */
.carousel-container {
  position: relative;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.3); */
  border-radius: 20px;
  /* padding: 15px; */
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); */
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* Navigation Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2c1810;
  transform: scale(1.3);
}

/* Touch gesture hint */
.swipe-hint {
  text-align: center;
  color: #2c1810;
  font-size: 14px;
  margin-top: 15px;
  opacity: 0.7;
}

/* Mobile specific */
@media (max-width: 480px) {
  .gallery-section {
    padding: 30px 15px;
  }

  .carousel-slide img {
    height: 280px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }
}

/* Tablet specific */
@media (min-width: 481px) and (max-width: 1024px) {
  .gallery-section {
    padding: 50px 30px;
  }

  .carousel-slide img {
    height: 420px;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
  }
}

/* Hide on desktop */
@media (min-width: 1025px) {
  .gallery-section {
    display: none;
  }
}





