/* Navbar */
header {
  background-color: #111;
  padding: 20px 40px;
  position: relative; /* Add this */
  z-index: 1001; /* Add this */
}
body {
  background-color: #111;
}

.nav-conatiner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px; /* increased gap for more breathing space */
  padding: 0 20px; /* added horizontal padding */
}

.logo img {
  height: 50px;
}

.ham,
aside {
  display: none;
}

.con ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 40px;
}

.con ul li a {
  text-decoration: none;
  color: #00ffff;
  font-weight: 700;
  transition: color 0.3s ease;
}

.con ul li a:hover {
  color: #ff00ff;
}

.btn button {
  padding: 12px 25px; /* slightly larger clickable area */
  background-color: #7c1fff;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn button:hover {
  background-color: #a46bff;
}

.blog-section {
  background: linear-gradient(to right, #0f0f0f, #1c1c1c);
  color: #fff;
  position: relative;
}

.section-heading {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 25px; /* added bottom margin */
}

.blog-glass-card {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.blog-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 25px; /* more padding */
}

.blog-content h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  color: #0ff;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 0.95rem;
  color: #ddd;
}

.blog-btn {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  background: transparent;
  border: 1px solid #0ff;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: 0.3s;
  text-decoration: none;
}

.blog-btn:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 10px #0ff;
}

/* blog-section */
.blog-section {
  margin-bottom: 150px;
}
.perfect-tour-section {
  background: url("assets/images/blog-img.png") center center no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 20px;
  color: white;
}

.perfect-tour-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.tour-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.tour-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.tour-content p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.tour-boxes {
  display: flex;
  justify-content: center;
  gap: 40px; /* increased gap */
  flex-wrap: wrap;
}

.tour-box {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 25px; /* increased padding */
  border-top: 2px solid #fff;
  max-width: 220px;
  min-width: 180px;
  text-align: left;
}

.tour-date {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.tour-date .month {
  display: block;
  font-size: 13px;
  color: #ccc;
}

.tour-date .day {
  font-size: 32px;
  font-weight: 700;
}

.tour-details h4 {
  font-size: 15px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.tour-details p {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 10px;
}

.tour-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.tour-btn:hover {
  background-color: #ff0066;
  color: #fff;
}

.sold-out {
  color: #ff4444;
  font-weight: bold;
  font-size: 14px;
}

/* blog ends */

.dj-reels {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.reels-wrapper {
  display: flex;
  gap: 60px; /* increased gap */
  justify-content: center;
  padding: 20px 0; /* increased vertical padding */
  scroll-snap-type: x mandatory;
  margin-top: 100px;
}

.reel-item {
  flex: 0 0 auto;
  width: 200px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  scroll-snap-align: start;
  background: #111;
  position: relative;
  transition: transform 0.3s ease;
}

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s;
}

.reel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.reel-item video:hover {
  transform: scale(1.1);
}

.dj-packages {
  background: linear-gradient(to right, #0f0f0f, #1a1a1a);
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.dj-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 16px;
  padding: 35px 25px; /* increased padding */
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dj-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.package-title {
  font-size: 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  color: #0ff;
  margin-bottom: 10px;
}

.duration {
  font-size: 1rem;
  color: #ccc;
}

.price {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 10px 0;
  color: #0ff;
}

.features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.features li {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #ddd;
}

.book-btn {
  background: #0ff;
  color: #000;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
  cursor: pointer;
}

.book-btn:hover {
  background: #00cfcf;
  color: #000;
}

/* Footer */
.dj-footer {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  padding: 50px 20px 20px;
  position: relative;
  font-family: "Arial", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 50px; /* increased gap */
}

.dj-footer h2 {
  font-size: 1.5em;
  color: #ff0055;
  text-shadow: none;
  margin-bottom: 15px;
}

.footer-sec ul {
  list-style: none;
  padding: 0;
}

.footer-sec ul li {
  margin-bottom: 10px;
}

.footer-sec ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-sec ul li a:hover {
  color: #ff0055;
}

.social-icons a {
  color: #fff;
  font-size: 1.5em;
  margin-right: 15px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #ff0055;
  transform: scale(1.2);
}

.new-letter input[type="email"] {
  padding: 10px;
  width: 70%;
  border: none;
  border-radius: 20px 0 0 20px;
  outline: none;
}

.new-letter button {
  padding: 10px 20px;
  background-color: #ff0055;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 0 20px 20px 0;
  transition: 0.3s ease;
}

.new-letter button:hover {
  background-color: #e6004c;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0; /* increased vertical padding */
  border-top: 1px solid #444;
  font-size: 14px;
}

.floating-hero {
  position: relative;
  height: 90vh;
  background: radial-gradient(circle at center, #0e0e0e, #000);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 40px; /* added horizontal padding */
  font-family: "Montserrat", sans-serif;
  z-index: 1;
}

/* Glowing Ring Background */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;

  animation: pulseGlow 6s infinite ease-in-out;
  filter: blur(50px);
  z-index: 0;
}

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

.hero-center {
  position: relative;
  z-index: 2;
  color: #fff;
}

.floating-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #0ff;

  position: relative;
  animation: floatUpDown 3s ease-in-out infinite;
}

.pulse-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-color: #0ff;
  border-radius: 50%;
  animation: pulseDot 1.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-subtext {
  font-size: 1.2rem;
  color: #ccc;
  margin: 20px 0 30px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.glow-cta {
  padding: 14px 35px;
  font-size: 1rem;
  background: #0ff;
  color: #000;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.glow-cta:hover {
  background: #00e6e6;
  box-shadow: 0 0 30px #0ff, 0 0 50px #0ff;
}
@media (max-width: 820px) {
  .btn #buy {
    display: none;
  }
  .con ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 30px;
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 29px;
  }
  .dj-footer h2 {
    /* font-size: 1.5em; */
    color: #ff0055;
    text-shadow: none;
    margin-bottom: 8px;
    font-size: 26px;
  }
  .beats{
    font-size: 21px;
  }
  .footer-sec ul li{
    font-size:23px;
  }
}

@media (max-width: 768px) {
  .floating-hero {
    height: 60vh;
  }
  .floating-title {
    font-size: 2.5rem;
  }
  .hero-subtext {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  html,
  body {
    overflow-x: hidden;
  }
  .con,
  .btn {
    display: none;
  }

  .ham {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
  }

  aside {
    display: block;
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background-color: black;
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: 60px;
  }

  aside.active {
    right: 0;
  }

  aside ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  aside ul li {
    margin: 20px 0;
  }

  aside ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

  .reels-wrapper {
    padding: 15px 10px;
    gap: 20px; /* smaller gap for narrow screens */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }

  .reels-wrapper::-webkit-scrollbar {
    display: none; /* hide scrollbar on Chrome/Safari */
  }

  .reel-item {
    width: 140px; /* smaller width */
    height: 250px; /* smaller height */
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .reel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.5);
  }

  .reel-item video {
    border-radius: 12px;
    transition: transform 0.4s ease;
  }

  .reel-item video:hover {
    transform: scale(1.08);
  }
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 22px;
  }
}
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
