/* General Styles */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #142165; /* deep royal blue */
  color: #fff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* Navigation Bar */

header {
  width: 100%;
  background: #142165;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.8em 2vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Playfair Display', serif;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.6em;
  letter-spacing: 0.7px;
  user-select: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.nav-links li a {
  color: #fff;
  font-size: 1.15em;
  text-decoration: none;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a.active,
.nav-links li a:hover {
  background: #FFD700;
  color: #142165;
  font-weight: 700;
}

/* Hero Slider */

.slider {
  position: relative;
  max-width: 100%;
  height: 420px;
  margin: 25px auto;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  max-width: 1180px;
  border-radius: 14px;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0; left: 0;
}

.slide.active {
  display: block;
  animation: fadein 1s;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 60px;
  left: 50px;
  color: #fff;
  background: rgba(26, 35, 126, 0.75);
  padding: 1.4em 1.8em;
  border-radius: 10px;
  max-width: 400px;
  font-family: 'Montserrat', sans-serif;
}

.slide-caption h2 {
  margin: 0 0 0.4em 0;
  font-family: 'Playfair Display', serif;
}

.btn {
  background: #FFD700;
  color: #142165;
  padding: 0.75em 2.4em;
  margin-top: 1em;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  transition: background 0.25s ease;
  cursor: pointer;
  display: inline-block;
}

.btn:hover {
  background: #fff;
  color: #142165;
}

/* Slider dots */

.slider-nav {
  position: absolute;
  bottom: 14px;
  width: 100%;
  text-align: center;
  user-select: none;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 8px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid #FFD700;
  transition: background 0.3s, opacity 0.3s;
}

.dot.active {
  background: #FFD700;
  opacity: 1;
  border-color: #fff;
}

/* Sections */

section {
  padding: 48px 8vw;
}

h2, h3 {
  color: #FFD700;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 20px;
  user-select: none;
}

.highlights p,
.about-content p,
.service-card p,
.event-card p,
.contact-content p {
  font-size: 1.1em;
  line-height: 1.5;
}

/* Highlights section (video) */

.video-container {
  margin: 28px auto 0;
  max-width: 660px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border-radius: 14px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 370px;
  border: none;
}

/* Event Cards */

.event-list {
  max-width: 1180px;
  margin: 0 auto;
}

.event-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  margin: 26px 0;
  padding: 26px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  border-left: 7px solid #FFD700;
  transition: transform 0.3s ease;
  user-select: none;
}

.event-card:hover {
  transform: scale(1.02);
}

.event-card img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.event-card > div h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.event-card a.btn {
  margin-top: 12px;
  font-size: 1em;
}

/* Services Section */

.service-list {
  max-width: 1180px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 25px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  user-select: none;
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 70px;
  margin-bottom: 14px;
}

.service-card h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  margin-bottom: 13px;
}

.service-card p {
  font-size: 1em;
  line-height: 1.4;
}

/* About Section */

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  user-select: none;
}

.about-content img {
  margin-top: 30px;
  width: 90px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */

.contact-content {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-content > div {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  user-select: none;
}

.contact-form {
  background: rgba(255, 255, 255, 0.07);
  padding: 34px 30px;
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 7px;
  border: none;
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
  min-height: 85px;
  resize: vertical;
  font-family: 'Montserrat', sans-serif;
}

.contact-form button.btn {
  width: 100%;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.15em;
}

.contact-info {
  flex: 1;
  min-width: 320px;
  color: #fff;
}

.contact-info h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 26px;
}

.contact-info a {
  color: #fff;               /* white links */
  text-decoration: none;     /* remove underline */
  font-weight: 500;          /* make them stand out */
}

.contact-info a:hover {
  color: #ffcc00;            /* golden hover effect */
  text-decoration: underline;
}

/* Optional: icons next to text */
.contact-info i {
  margin-right: 8px;
  color: #ffcc00;
}

/* Map box */

.map-box {
  max-width: 430px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.45);
}

.map-box iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
}

/* Social Icons */

.social-links {
  margin-top: 22px;
  display: flex;
  gap: 18px;
}

.social-links img {
  width: 36px;
  cursor: pointer;
  filter: drop-shadow(0 0 2px #ffd700);
  transition: filter 0.3s ease;
}

.social-links img:hover {
  filter: drop-shadow(0 0 6px #ffd700);
}

/* Footer */

footer {
  padding: 24px;
  text-align: center;
  background: #0f1a4a;
  color: #FFD700;
  font-size: 1.15em;
  user-select: none;
}

/* Responsive */

@media (max-width: 860px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .logo {
    font-size: 1.3em;
  }

  .nav-links {
    gap: 24px;
  }

  .slide-caption {
    left: 20px;
    bottom: 25px;
    max-width: 90%;
    padding: 12px 16px;
  }

  .slider {
    height: 280px;
  }

  .slide img {
    height: 280px;
  }

  .contact-content > div {
    flex-direction: column;
    gap: 48px;
  }

  .event-card {
    flex-direction: column;
    align-items: center;
  }

  .event-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    padding: 0.6em 1.2em;
  }
}
/* HERO BG and Overlay */
.hero { position: relative; height: 84vh; overflow: hidden; }
.hero-bg { width: 100vw; height: 100%; object-fit: cover; object-position: center; position: absolute; inset: 0; z-index: 1; top: 0; left: 0; }
.overlay { background: rgba(20,33,101,.68); position: absolute; width: 100%; height: 100%; z-index: 2; }
.hero-content { position: relative; z-index: 3; top: 44%; transform: translateY(-50%); text-align: center; color: #FFD700; max-width: 700px; margin: auto; animation: fadein 1.5s; }
.morpankh-logo { width: 80px; margin-bottom: 20px; animation: spin 5s linear infinite; }
@keyframes spin { 0% { transform: rotate(-8deg);} 100% { transform: rotate(8deg);} }
.cta { background: #FFD700; color: #142165; padding: 16px 44px; font-size: 1.5em; margin-top: 25px; display: inline-block; border-radius: 40px; font-weight: bold; box-shadow: 0 4px 14px #14216590; transition: background .2s; }
.cta:hover { background: #fff; }

.countdown { font-size: 1.14em; letter-spacing: 1.8px; margin-top: 13px; color: #fff; }
@media (max-width:600px) {.hero { height: 50vh;} .hero-bg { height: 50vh;}}

/* Star Performer Cards */
.event-celebs { background: #fff; color: #142165; text-align: center;}
.celeb-grid { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap;}
.celeb-card { background: #FFD70022; padding: 22px 16px; border-radius: 18px; width: 240px; box-shadow: 0 7px 24px #14216512; margin: 1.5em 0; transition: transform .12s; }
.celeb-card img { border-radius: 50%; width: 110px; height: 110px; object-fit: cover; }
.celeb-card:hover { transform: translateY(-7px) scale(1.038);}
.celeb-card h3 { margin-bottom: 8px; }


/* Social Feed/Instagrid */
.social-feed { background: #ecefff; color: #142165; text-align: center;}
.insta-grid { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 16px;}
.insta-grid img { width: 110px; height: 110px; border-radius: 19px; object-fit: cover; border: 2.5px solid #FFD70030; transition: box-shadow .2s; }
.insta-grid img:hover { box-shadow: 0 2px 16px #FFD70090; }
.hero { position: relative; height: 84vh; overflow: hidden; }
.hero-bg { width: 100vw; height: 100%; object-fit: cover; position: absolute; z-index: 1; top: 0; left: 0; }
.overlay { background: rgba(20,33,101,0.68); position: absolute; width: 100%; height: 100%; z-index: 2; }
.hero-content { position: relative; z-index: 3; top: 44%; transform: translateY(-50%); text-align: center; color: #FFD700; max-width: 700px; margin: auto; animation: fadein 1.5s; }
.morpankh-logo { width: 80px; margin-bottom: 20px; animation: spin 5s linear infinite; }
@keyframes spin { 0% { transform: rotate(-8deg);} 100% { transform: rotate(8deg);} }
.cta { background: #FFD700; color: #142165; padding: 16px 44px; font-size: 1.5em; margin-top: 25px; display: inline-block; border-radius: 40px; font-weight: bold; box-shadow: 0 4px 14px #14216590; transition: background .2s; }
.cta:hover { background: #fff; }
.countdown { font-size: 1.14em; letter-spacing: 1.8px; margin-top: 13px; color: #fff; }
.slider { position: relative; max-width: 100%; height: 420px; margin-top: 25px; box-shadow: 0 10px 24px rgba(0,0,0,0.19); max-width: 1180px; border-radius: 14px; overflow: hidden; }
.slides { position: relative; width: 100%; height: 100%; overflow: hidden; }
.slide { width: 100%; height: 100%; display: none; position: absolute; top: 0; left: 0; }
.slide.active { display: block; animation: fadein 1s; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.slide img { width: 100%; height: 420px; object-fit: cover; }
.slide-caption { position: absolute; bottom: 60px; left: 50px; color: #fff; background: rgba(26, 35, 126, 0.75); padding: 1.4em 1.8em; border-radius: 10px; max-width: 400px; font-family: 'Montserrat', sans-serif; }
.slide-caption h2 { margin: 0 0 0.4em 0; font-family: 'Playfair Display', serif; }
.btn { background: #FFD700; color: #142165; padding: 0.75em 2.4em; margin-top: 1em; border: none; border-radius: 6px; font-weight: 700; transition: background 0.25s; cursor: pointer; display: inline-block; }
.btn:hover { background: #fff; color: #142165; }
.slider-nav { position: absolute; bottom: 14px; width: 100%; text-align: center; user-select: none; }
.dot { height: 14px; width: 14px; margin: 0 8px; background-color: #fff; border-radius: 50%; display: inline-block; cursor: pointer; opacity: 0.6; border: 2px solid #FFD700; transition: background 0.3s, opacity 0.3s; }
.dot.active { background: #FFD700; opacity: 1; border-color: #fff; }

.featured-events { max-width: 1180px; margin: 48px auto 72px auto; padding: 0 8vw; text-align: center; }
.featured-events h2 { font-family: 'Playfair Display', serif; color: #FFD700; font-weight: 700; font-size: 2.6rem; margin-bottom: 36px; user-select: none; }
.featured-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.featured-event-card { background: rgba(255, 255, 255, 0.08); border-radius: 14px; box-shadow: 0 8px 22px rgba(0,0,0,0.16); max-width: 350px; padding-bottom: 18px; user-select: none; transition: transform 0.3s ease; }
.featured-event-card:hover { transform: translateY(-6px);}
.featured-event-card img { width: 100%; height: 210px; object-fit: cover; border-top-left-radius: 14px; border-top-right-radius: 14px; }
.featured-event-card h3 { font-family: 'Playfair Display', serif; color: #FFD700; font-size: 1.7rem; margin: 16px 0 10px 0; }
.featured-event-card p { color: #dedede; font-size: 1em; padding: 0 18px; line-height: 1.45; }
.featured-event-card .btn { margin-top: 12px; padding: 0.65em 1.8em; font-weight: 700; font-size: 1.04em; }

.event-celebs { background: #fff; color: #142165; text-align: center;}
.celeb-grid { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap;}
.celeb-card { background: #FFD70022; padding: 22px 16px; border-radius: 18px; width: 240px; box-shadow: 0 7px 24px #14216512; margin: 1.5em 0; transition: transform .12s; }
.celeb-card img { border-radius: 50%; width: 110px; height: 110px; object-fit: cover; }
.celeb-card:hover { transform: translateY(-7px) scale(1.038);}
.celeb-card h3 { margin-bottom: 8px; }

.social-feed { background: #ecefff; color: #142165; text-align: center;}
.insta-grid { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 16px;}
.insta-grid img { width: 110px; height: 110px; border-radius: 19px; object-fit: cover; border: 2.5px solid #FFD70030; transition: box-shadow .2s; }
.insta-grid img:hover { box-shadow:

