  /* home Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
html{
  overflow-x: hidden; /* Prevent horizontal scrolling */

}
body {
    /* background: #191919;*/
    background: #060c21;
    color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    

}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Hero Section */
.hero {
  /* background: linear-gradient(45deg, #6a11cb, #2575fc);*/
  background:  black;
  color: #fff;
  display: none;
  justify-content: space-between; /* This will space out the content */
  position: relative; /* Ensures absolute positioning of logo */
  align-items: center;
  text-align: center;
  padding: 20px;
}
.hero h1 {
  font-size: 3rem;
}
.hero span {
  color: #ff69b4;
}
.hero p {
  margin: 10px 0 20px;
}
.hero .btn {
  padding: 10px 20px;
  background: #ff69b4;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.hero .btn:hover {
  background: #ff3e88;
}
.hero .logo img {
  height: 70px;
  width: 180px;
  position: absolute;
  top: 12px;
  left: 15px;
}

/* Ensure other content is spaced out correctly */
.hero h1, .hero p, .hero .btn {
  margin-left: 80px; /* Create space for the logo */
  text-align: left; /* Align text to the left */
}



.container-header {
  background: #000000;
  padding: 10px 20px; /* Adjust padding for spacing */
  display: flex;
  align-items: center;
  justify-content: space-between; 
}


/* Navbar */
.navbar {
  background: #000000;
  padding: 10px 20px; /* Adjust padding for spacing */
  display: flex;
  align-items: center;
  justify-content: space-between; /* Push logo and tabs to opposite ends */
}
.logo {
  width: 50px; /* Adjust the logo size */
  height: 50PX;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1rem;
  position: relative;
}
.navbar a:hover {
  color: #ff000d;
}

/* Dropdown */
.navbar .dropdown {
  position: relative;
  display: inline-block;
}
.navbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
  border-radius: 5px;
  text-align: left;
  z-index: 2;
}
.navbar .dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}
.navbar .dropdown-content a:hover {
  /*background-color: #ff69b4; */
  /*background: linear-gradient(45deg, #6a11cb, #2575fc);*/
  background-color:  #ff000d;
  color: #fff;
}
.navbar .dropdown:hover .dropdown-content {
  display: block;
}


.dropdown-submenu {
  position: relative;
}

.dropdown-content-right {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  top: 0;
  left: 100%;
  z-index: 1;
}

.dropdown-submenu:hover .dropdown-content-right {
  display: block;
}
   

/* Footer */
.footer {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(0, 0, 0, .9);
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(156 163 175/var(--tw-text-opacity,1))
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between; /* Pushes elements to left and right */
align-items: center; /* Align vertically centered */
padding: 0 20px; /* Horizontal padding */
}

/* Left-aligned text */
.footer-text-left {
color: #9ca3af; /* Gray color */
font-size: 14px;
margin: 0;
}

/* Right-aligned text */
.footer-text-right {
color: #9ca3af; /* Gray color */
font-size: 14px;
cursor: pointer;
transition: color 0.3s ease; /* Smooth hover transition */
margin: 0;
}

.footer-text-right:hover {
color: #a855f7; /* Purple hover effect */
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  color: #fff;
  padding: 10px;
  position: fixed;
  right: 10px;
  z-index: 1000;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;

}
.mobile-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
}
.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -100%; /* Hidden off-screen */
  width: 250px;
  height: 100vh;
  background: #333;
  border-radius: 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  text-align: left;
  padding: 10px;
  z-index: 999;
  transition: left 0.3s ease; /* Smooth slide effect */

}

.mobile-nav.show {
  left: 0; /* Slide into view */
}

.mobile-nav a {
  display: block;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  border-bottom: 1px solid #444;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  background: #ff69b4;
}


/* Effects */
#particles, #vignette {
  position: fixed;
  min-width: 100%;
  min-height: 100%;
  bottom: 0;
  right: 0;
  z-index: -2;
}

#vignette {
  box-shadow: 0 0 800px rgba(0,0,0,0.9) inset;
  z-index: -1;
}



nav {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

ul,
ul li {
  outline: 0;
  list-style: none;
}

ul li a {
  text-decoration: none;
}

img {
  width: 100%;
  user-select: none;
  pointer-events: none;
}

h1 {
  font-size: clamp(1rem, 4vw, 1.2rem);
}

h2 {
  font-size: clamp(0.9rem, 4vw, 1rem);
}

/* CONTENT */

.content-1 {
  position: relative;
  margin-bottom: 50px;
}

.card {
  background-color: var(--card-bg-color);
  border-radius: 8px;
  border: 2px solid rgba(169, 150, 253, 0.5);
  box-shadow: 0px 4px 5px 0px var(--shadow-color),
    0px 1px 8px 0px var(--shadow-color), 0px 2px 4px -1px var(--shadow-color);
}

/* LEFT CONTENT */

.left-content {
  padding: 25px 20px 40px;
  color: var(--primary-color);
  height: 100vh;
  
}


/* UPCOMING EVENTS */

.upcoming-events h1 {
  margin: 5px 0 10px;
}

.event-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 14px 0 20px;
}

.event-card {
  display: grid;
  grid-auto-flow: dense;
  grid-template-rows: 2fr 0.8fr 0.5fr;
  padding: 8px;
}

/* Event Header */

.event-header {
  position: relative;
  height: 180px;
  margin-bottom: 8px;
}

.event-header img {
  position: relative;
  inset: 0;
  width: 100%;
  height: 180px;
  border-radius: 6px;
  border: 2px solid rgba(125, 125, 137, 0.5);
  object-fit: cover;
}

.event-header p {
  position: absolute;
  right: 4px;
  bottom: 4px;
  font-size: 0.8rem;
  color: rgb(240, 248, 255);
  background-color: rgba(17, 16, 45, 0.6);
  padding: 4px 6px;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(74, 72, 72, 0.1);
}

.bx-heart,
.bxs-heart {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 1.4rem;
  color: rgb(240, 248, 255);
  background-color: rgba(17, 16, 45, 0.6);
  padding: 4px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(74, 72, 72, 0.1);
  cursor: pointer;
}

.bounce-in {
  animation: pulse 0.8s 1 ease-in-out alternate;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Event Content */

.event-content {
  display: grid;
  grid-auto-flow: dense;
  grid-template-rows: 2fr 1fr;
  padding: 6px 6px 12px;
}

.event-content h2 {
  margin-bottom: 6px;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;

  @supports (-webkit-line-clamp: 2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.event-content p {
  font-size: clamp(0.8rem, 4vw, 0.9rem);
  opacity: 0.8;
}

/* Event Footer */

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.event-footer p {
  color: rgb(240, 248, 255);
  font-size: clamp(0.6rem, 3vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 50px;
}

.btn-group {
  display: inline-flex;
}

.event-footer button {
  background-color: rgb(51, 108, 215);
  color: rgb(240, 248, 255);
  padding: 5px 10px;
  outline: 0;
  border: 2px solid rgb(51, 108, 215);
  border-radius: 4px;
  font-size: clamp(0.6rem, 3vw, 0.8rem);
  font-weight: 500;
  margin-left: 3px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.event-footer button:hover {
  background-color: rgb(90, 139, 231);
  border: 2px solid rgb(151, 177, 226);
}

/* Share Button Popup */

.share {
  position: relative;
}

.popup {
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: -45px;
  left: -15px;
  min-width: 70px;
  padding: 5px 8px 3px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(50px) scale(0);
  -webkit-transform: translateY(50px) scale(0);
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  cursor: auto;
}

.popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
}

.popup::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 20px;
  background-color: var(--pop-bg-color);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  transform: translate(0px, 20px);
  -webkit-transform: translate(0px, 20px);
}

.popup li a i {
  font-size: 1.4rem;
}




/* SCROLLBAR STYLE */

.left-content::-webkit-scrollbar,
.right-content::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 8px;
}

.left-content::-webkit-scrollbar-track,
.right-content::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  border-radius: 0;
}

.left-content::-webkit-scrollbar-thumb,
.right-content::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-color);
  border-radius: 40px;
}

/* MEDIA QUERIES */



@media (max-width: 768px) {

  .left-content {
    grid-area: leftContent;
    height: auto;
    overflow: unset;
  }

  .interaction-control {
    display: none;
  }

  .interaction-control-mobile {
    display: inline-flex;
  }

  .interactions {
    gap: 15px;
  }

  
  .info p {
    font-size: 0.9rem;
  }

  .swiper {
    width: 80%;
    height: 300px;
  }

  .navbar {
    display: none;

  }

  .mobile-menu {
    display: block;

  }
  body {
    overflow-x: hidden; /* Reaffirm for mobile */

  }

  .container {
    padding: 0 15px; /* Add padding to prevent overflow */
  }
  .footer-container {
    max-width: 1200px;
    flex-direction: column; /* Stacked vertically by default */
    text-align: center;
  }
  .hero{
    display: flex;
  }


}



.rgb-text {
  font-size: 2.5em;
  color: white;
  margin-top: 20px
}
  