@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* General Global Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff0066;
  --animate-delay: 0.5s;
}

body {
  position: relative;
  background: #ffffff;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: 'Roboto', sans-serif; cursive;
  padding: 100px;
  height: 60px;
  font-size: 0.58em; /* Adjusted for readability */
  font-weight: bolder; /* Made the font bold */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px; /* Reduced padding */
  background: rgba(255, 255, 255, 0.1); /* Light background for better contrast */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(225, 225, 225, 0.5);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
  transition: background 0.5s, box-shadow 0.5s;
  z-index: 1300;
}

header a {
  text-decoration: none;
  color: #380b1e; /* Ensuring the links are readable */
  padding: 15px 20px; /* Reduced padding between links */
  font-size: 1.1em; /* Slightly increased font size for better visibility */
}

header a:hover {
  color: #e7069c; /* Color change on hover */
  transition: color 0.3s;
}



header.active {
  background: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #111111;
  letter-spacing: 2px;
  font-weight: 800;
  text-decoration: none;
  margin-left: 0;
  margin-right: 0;
}



/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribute space between logo and menu */
  height: 50px; /* Adjust height as needed */
  background-color: #333; /* Background color for navbar */
  padding: 0 10px; /* Reduced horizontal padding */
  box-sizing: border-box;
}

/* Logo Styles */
.navbar .logo {
  font-family: 'Great Vibes', cursive;
  font-size: 30px; /* Reduce font size for the logo */
  color: #111111; /* Logo color */
  letter-spacing: 1px; /* Reduced letter spacing */
  font-weight: 800;
  text-decoration: none;
  margin: 0; /* Remove default margin */
  position: absolute; /* Positioning to ensure it stays left */
  left: 10px; /* Adjust as needed to move logo to the extreme left */
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  background-color: #333;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Logo Styles */
.navbar .logo {
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  color: #111111;
  letter-spacing: 1px;
  font-weight: 800;
  text-decoration: none;
  margin: 0;
  position: absolute;
  left: 10px;
}

/* Navbar Menu Styles */
.navbar .nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}

.navbar .nav-menu li {
  margin: 0 8px;
}

.navbar .nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 2px 6px;
  display: inline-block;
}

.navbar .nav-menu a:hover {
  background-color: #555;
  border-radius: 3px;
}

/* Menu Icon Styles */
.menu {
  display: none; /* Hide by default */
  color: #111111;
  font-size: 2em;
  transition: 0.5s;
}

.menu.open {
  display: block;
}

.menu.active .open {
  display: none;
}

.menu.active .close {
  display: block;
}

/* Mobile Menu Styles */
.nav-mobile {
  display: none; /* Hidden by default */
}

.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: #ffffff;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  z-index: 1900;
  gap: 20px;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile li {
  list-style: none;
}

.nav-mobile li a {
  color: #111111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  padding: 10px;
}

.nav-mobile li a:hover {
  color: var(--primary);
}

/* Responsive styles for mobile view */
@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none; /* Hide the default navbar menu */
    
  }
  .menu {
    display: block; /* Show hamburger menu */
  }
}


.search {
  position: relative;
  width: 300px;
  height: 40px;
  transition: 0.5s;
}

.search input {
  position: absolute;
  left: 0;
  top: 0;
  width: 120%;
  height: 100%;
  color: #111111;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  padding: 0 10px 0 5px !important;
  backdrop-filter: blur(10px);
}

.search input::placeholder {
  color: #111111;
  text-transform: uppercase;
  transform: translateX(5px);
  font-weight: 300;
}

.search ion-icon {
  font-size: 1.4em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding-left: 10px;
  color: #111111;
  border-left: 1px solid #111111;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

.nav-mobile {
  display: none;
}

.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 1200;
  gap: 20px;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile li {
  position: relative;
  list-style: none;
}

.nav-mobile li a {
  color: #111111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  padding: 10px;
}

.nav-mobile li a:hover {
  color: var(--primary);
}
/* Default banner text styling for desktop */
.banner-text {
  font-size: 24px; /* Adjust as needed for desktop */
  line-height: 1.2; /* Adjust line-height for better readability */
  color: #333; /* Adjust text color as needed */
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 100px;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden;
  transition: 0.5s;
  color: #530423; /* Retain the existing color */
  font-weight: 800;
  font-size: 1.2em; /* Adjust as needed */
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.9), /* Darker shadow for contrast */
    0 0 15px rgba(255, 255, 255, 0.8), /* Bright white glow effect */
    0 0 30px rgba(255, 255, 255, 0.6), /* Larger glow effect */
    0 0 60px rgba(255, 255, 255, 0.4); /* Extreme glowing effect */
  /* Optional: Add background overlay for improved contrast */
  background: rgba(255, 255, 255, 0.3); /* Light overlay to enhance text visibility */
  padding: 20px; /* Add some padding to ensure text doesn't touch edges */
  border-radius: 8px; /* Rounded corners for a softer look */
}



.banner::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  margin-bottom: 50px;
  height: 100vh;
  background: rgba(225, 225, 225, 0.5);
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden;
}

.bg-slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: scale(0) translate(-50%, -50%);
  transform-origin: center !important;
  transition: 3s;
}

.bg-slide .content h1 {
  font-size: 2em;
  text-transform: uppercase;
  color: #540022;
}

.bg-slide .content p {
  font-family: 'Great Vibes', cursive;
  font-weight: 200;
  font-size: 1.9em;
  letter-spacing: 1px;
}

.bg-slide.active .content {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.circle {
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, 0) rotateZ(0);
  opacity: 0;
  visibility: hidden;
  transition: 3s;
}

.circle.bg {
  background: transparent;
  width: 140vw;
  height: 140vw;
  border-radius: 0;
}

.circle.large {
  width: 70vw;
  height: 70vw;
}

.circle.small {
  width: 35vw;
  height: 35vw;
}

.circle img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  transform: scale(1.1);
}

.circle.bg img {
  border-radius: 0;
}

.circle.large img {
  transform: scale(2);
}

.circle.small img {
  transform: scale(4);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  transform: scale(1.1);
}

.bg-slide.active .circle.bg {
  transform: translate(0, 0) rotateZ(-360deg);
  opacity: 1;
  visibility: visible;
}

.bg-slide.active .circle.large {
  transform: translate(0, 0) rotateZ(720deg);
  opacity: 1;
  visibility: visible;
}

.bg-slide.active .circle.small {
  transform: translate(0, 0) rotateZ(-720deg);
  opacity: 1;
  visibility: visible;
}

.slide-loader {
  position: absolute;
  z-index: 1100;
  bottom: 50px;
  right: 100px;
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.slide-loader li {
  list-style: none;
  display: flex;
  align-items: end;
}

.slide-loader li a {
  text-decoration: none;
  color: #111111;
  font-size: 2em;
  font-weight: 800;
  transition: 0.5s;
  line-height: 1em;
  cursor: pointer;
}

.slide-loader li a.active,
.slide-loader li a:hover {
  font-size: 4em;
}

.slide-loader::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -70%;
  width: 100px;
  height: 3px;
  background: #111111;
}

.share {
  position: absolute;
  bottom: 50px;
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1200;
}

.share::before {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  top: -120%;
  height: 100px;
  width: 2px;
  background: #111111;
}

.share p {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 1px;
  color: #111111;
}

.share a {
  text-decoration: none;
  color: #111111;
}

.share a ion-icon {
  font-size: 1.8em;
}

.lead {
  position: absolute;
  bottom: 0;
  z-index: 1000;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.move-down {
  position: absolute;
  z-index: 1100;
  color: #111111;
  animation: flink 1s linear infinite;
}

.move-down ion-icon {
  font-size: 3.5em;
}

@keyframes flink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.3;
  }
}

.lead svg {
  font-family: 'Great Vibes', cursive;
  position: absolute;
  z-index: 1100;
  fill: currentColor;
  height: auto;
  max-width: 20vmin;
  transform-origin: center;
  width: 66%;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 100vh;
  bottom: 0;
  opacity: 0;
  background: #ffffff;
  transition: ease-in-out 1s;
  transform-origin: bottom;
  z-index: 1100;
}

section::-webkit-scrollbar {
  display: none;
}

section.section-show {
  padding: 150px 100px 100px;
  top: 0;
  height: auto;
  min-height: 100vh;
  overflow-y: visible;
  opacity: 1;
}

section h1 {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 4em;
  letter-spacing: 1px;
  margin-bottom: 150px;
  text-align: center;
}

section h4 {
  font-family: 'Great Vibes', cursive;
  font-weight: 300;
  font-size: 2.5em;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

section p {
  font-weight: 300;
  color: #111111;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h4::first-letter {
  color: var(--primary);
  font-size: 2em;
}

.about::before {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  top: 250px;
  height: 100px;
  width: 2px;
  background: #111111;
}
.about .img-box {
  position: relative;
}

.about .img-box img {
  max-width: 450px;
}

.about .img-box .corner-img {
  position: absolute;
  width: 15vw;
  right: 10px;
  bottom: -50px;
}

.section-btn {
  position: relative;
  text-decoration: none;
  color: #111111;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s;
}

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

.section-btn::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -10px;
  width: 85%;
  height: 1px;
  background: #111111;
  transition: 0.3s;
}

.section-btn:hover::before {
  left: 20%;
  background: var(--primary);
}

.section-bg-img {
  position: absolute;
  bottom: 50px;
  right: 200px;
  opacity: 0.1;
  z-index: 100;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services::before {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  top: 250px;
  height: 100px;
  width: 2px;
  background: #111111;
}

.card {
  position: relative;
  margin: 20px 0;
  width: 350px;
  height: 500px;
  background: #ffffff;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  transition: 1s;
  border-radius: 0;
  box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: perspective(2000px) rotate(-10deg);
  box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.card .img-box {
  position: relative;
  border-style: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transform-origin: left;
  z-index: 1;
  transition: 1s;
}

.card:hover .img-box {
  transform: rotateY(-130deg);
}

.card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .details {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 50px 20px 20px;
}

.card .details::before {
  content: '';
  position: absolute;
  color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: url('../images/bg-tree.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
}

.card .details h4::first-letter {
  color: var(--primary);
  font-size: 1.5em;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio h1 {
  margin-bottom: 50px;
}

.portfolio #portfolio-filters {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.portfolio #portfolio-filters li {
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 0.85em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #111111;
  transition: 0.3s;
  padding: 8px 20px;
  text-align: center;
}

.portfolio #portfolio-filters li::before {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  height: 2px;
  width: 50%;
  background: var(--primary);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  transform-origin: center;
}

.portfolio #portfolio-filters li:hover::before,
.portfolio #portfolio-filters li.filter-active::before {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 3;
  transition: all 0.3s;
  background: var(--primary);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #111111;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact h1 {
  margin-bottom: 50px;
}

.contact .info {
  width: 100%;
  background: #ffffff;
}

.contact .info ion-icon {
  font-size: 0.6em;
  padding: 8px;
  color: var(--primary);
  float: left;
  width: 45px;
  height: 45px;
  background: #f4e3ea;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 0.9em;
  color: #111111;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact form {
  width: 100%;
  background: #ffffff;
}

.contact form .form-group {
  padding-bottom: 8px;
}

.contact form input,
.contact form textarea {
  border-radius: 0;
  box-shadow: none !important;
  outline: none;
  font-size: 14px;
}

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

.contact form input {
  height: 44px;
}

.contact form textarea {
  padding: 10px 12px;
}

.contact form button[type='submit'] {
  background: var(--primary);
  border: 0;
  padding: 10px 24px;
  color: #ffffff;
  transition: 0.4s;
  margin-top: 20px;
  border: 1px solid var(--primary);
}

.contact form button[type='submit']:hover {
  background: #ffffff;
  color: var(--primary);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/

@media (max-width: 768px) {
  header {
    padding: 30px;
  }

  .nav {
    display: none;
  }
  .banner {
    padding: 120px 30px;
  }

  .bg-slide .content {
    width: 80vw;
  }

  .bg-slide .content h1 {
    font-size: 3em;
  }

  .bg-slide .content p {
    font-size: 0.8em;
  }

  .circle.bg {
    width: 140vh;
    height: 140vh;
  }

  .circle.large {
    width: 70vh;
    height: 70vh;
  }

  .circle.small {
    width: 35vh;
    height: 35vh;
  }

  .bg-slide.active .circle.bg {
    transform: translate(0, 0) rotateZ(0);
    opacity: 1;
    visibility: visible;
  }

  .bg-slide.active .circle.large {
    transform: translate(0, 0) rotateZ(360deg);
    opacity: 1;
    visibility: visible;
  }

  .bg-slide.active .circle.small {
    transform: translate(0, 0) rotateZ(-720deg);
    opacity: 1;
    visibility: visible;
  }

  .lead {
    bottom: 100px;
    width: 150px;
    height: 150px;
  }

  .move-down ion-icon {
    font-size: 2em;
  }

  .slide-loader {
    bottom: 20px;
  }

  .share {
    left: 5px;
  }

  .search {
    display: none;
  }

  section.section-show {
    padding: 150px 30px 100px;
  }

  .about .img-box img {
    max-width: 80vw;
  }

  .about .img-box .corner-img {
    width: 25vw;
    right: -20px;
  }

  .about h4 {
    margin-top: 50px;
  }

  .section-bg-img {
    bottom: -500px;
    right: 0px;
  }
  .container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
h1, h2 {
    color: #000;
}
.nav-btn {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: #000;
  text-decoration: none;
  padding: 10px;
  width: 90px;
  border: 1px solid rgba(0, 0, 0, 0.5); /* Semi-transparent border */
  background-color: transparent; /* Transparent background */
  border-radius: 5px;
  margin: 10px;
  margin-left: 80%;
}

.nav-btn:hover {
    background-color: #f0f0f0;
}
.hotel-info, .event-info, .travel-info {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fafafa;
}
.hotel-info h1, .event-info h1, .travel-info h2 {
    margin-top: 0;
}
.book-now {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 10px;
}
.book-now:hover {
    background-color: #f0f0f0;
}
.link {
    color: #0066cc;
    text-decoration: none;
}
.link:hover {
    text-decoration: underline;
}
.audio {
  display: none;
}

/* General styles for the entire section */
#gathering-guide {
    font-family: 'Arial', sans-serif;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fafafa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Title styles */
.guide-title {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Event details section */
#event-details p {
    margin: 10px 0;
    font-size: 1.2em;
    color: #444;
}

#event-details strong {
    color: #111;
}

#event-details {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 5px solid #ffcc00;
}

/* Description section */
#description-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #ff9900;
    border-radius: 5px;
    margin-bottom: 20px;
}

#description-section p {
    font-size: 1.2em;
    color: #555;
}

/* Event theme section */
#theme-section {
    padding: 15px;
    background-color: #fff3e0;
    border-left: 5px solid #ffbf00;
    border-radius: 5px;
    margin-bottom: 20px;
}

#theme-section p {
    font-size: 1.3em;
    color: #333;
    font-weight: bold;
}

/* Dress code section */
#dress-code-section {
    padding: 20px;
    background-color: #f0f0f0;
    border-left: 5px solid #ffa500;
    border-radius: 5px;
}

.dress-code-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    text-decoration: underline;
}

#dress-code-section ul {
    list-style-type: none;
    padding-left: 0;
}

#dress-code-section li {
    margin: 12px 0;
    font-size: 1.2em;
    color: #555;
}

#dress-code-section strong {
    color: #333;
}
/* Gathering Guide Section Styling */
#Gathering-Guide {
  padding: 40px;
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  max-width: 850px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

/* Title Styling */
.guide-title {
  font-size: 3rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FF4500);
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 4s infinite linear;
  background-size: 300%;
}

/* Event Details Section */
#event-details {
  padding: 20px;
  background-color: #fafafa;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

#event-details p {
  margin: 12px 0;
  font-size: 1.2rem;
  color: #333;
}

.event-title {
  font-size: 1.4rem;
  color: #FF4500;
  font-weight: bold;
}

/* Description Section */
#descriptionsection {
  padding: 20px;
  background-color: #f3f3f3;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

#descriptionsection p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.5;
}

/* Theme Section */
#themsection {
  padding: 20px;
  background-color: #fafafa;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

#themsection p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FF4500;
}

/* Dress Code Section */
#dcode-section {
  padding: 20px;
  background-color: #f3f3f3;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.dress-code-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

#dcode-section ul {
  list-style-type: circle;
  padding-left: 25px;
}

#dcode-section li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #555;
}

/* Additional Info Section */
.additionalinfo {
  padding: 20px;
  background-color: #fafafa;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.additionalinfo p {
  font-size: 1.2rem;
  color: #444;
}

/* Shine Animation for Titles */
@keyframes shine {
  0% {
      background-position: -400px;
  }
  100% {
      background-position: 400px;
  }
}

.guide-title,
.event-title {
  background: linear-gradient(90deg, #ff8c00, #ffdd44, #ff8c00);
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 3s infinite linear;
  background-size: 400%;
}

/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  background-color: #333;
  padding: 0 10px;
  box-sizing: border-box;
}

/* Mobile Menu Button Styles */
.menu {
  display: none; /* Hidden by default, shown on mobile */
  font-size: 1.5em;
  color: #2008f6;
  cursor: pointer;
}

/* Show the menu icon on mobile */
@media (max-width: 768px) {
  .menu {
    display: block;
  }
}

/* Mobile Navigation Styles */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2vh;
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 1200;
}

.nav-mobile.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Hide the body scroll when mobile menu is active */
.no-scroll {
  overflow: hidden;
}

/* Back to Top Button Styles */
#back-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff007f;
  color: #ef0707;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

/* Ensure the button is accessible */
#back-to-top:focus {
  outline: none;
}
/* Base styles for the nav */
.nav, .nav-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav li, .nav-mobile li {
  margin: 0;
}

.nav-btn {
  text-decoration: none;
  padding: 10px;
  display: block;
}

/* Hide mobile nav by default */
.nav-mobile {
  display: none;
}

/* Show mobile nav on small screens */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
  }

  .nav-mobile {
    display: flex;
    flex-direction: column;
  }

  .menu {
    display: block;
  }

  .menu .close {
    display: none;
  }

  .nav-mobile.active {
    display: flex;
  }

  .menu.active .close {
    display: block;
  }

  .menu.active .open {
    display: none;
  }
}

.nav-mobile {
  display: none;
  /* Add more styles for positioning and visibility */
}

.nav-mobile.active {
  display: block;
  /* Add styles to make the menu visible */
}

.no-scroll {
  overflow: hidden;
}
/* Footer Styles */
.footer {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  margin-top: 50px; /* Adds space above the footer */
  position: relative;
}

}

/* Prevent any fading effect */
.footer {
  opacity: 1; /* Make sure opacity is fully visible */
  transition: none; /* Disable any transitions that might cause fading */
}

/* Other component styles */
.button {
  background-color: turquoise; /* Example button color */
  border: none;
  color: white;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

.button:hover {
  background-color: darkcyan; /* Example hover effect */
}

/* Basic Styles */
.container-fluid {
  padding: 0 15px;
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 0 10px;
  }
}
