:root {
  --primary-color: #ff4786;
  --background-color: #141414;
  --text-color: #ffffff;
  --secondary-color: #564d4d;
}

::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-track {
  background: var(--comment-box);
}
::-webkit-scrollbar-thumb {
  background: var(--comment);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}

.featured-movie {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  margin-top: 25px !important;
}

.mySwiperOne {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.swpslideone {
  background-position: center;
  background-size: cover;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.354);
  height: 100%;
  width: 100%;
}

.overlayText {
  position: absolute;
  width: 50%;
  top: 20%;
  left: 10%;
}

.overlayHeading {
  font-size: 50px;
  font-weight: 900;
  color: var(--primary-color);
}

.overlayTextChild {
  font-size: 20px;
}

.fa-star {
  font-size: 0.8rem;
  margin-left: -4px;
}

.movie-btn-1,
.movie-btn {
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  border: none;
}

.movie-btn-1 {
  background-color: #ff4786;
}
.movie-btn {
  background-color: rgba(0, 0, 0, 0.354);
}

.fa-play {
  font-size: 0.8rem;
}

.swpslideone img {
  display: block;
  width: 100%;
}

/* sm cards */

.mySwiperTwo {
  width: 50%;
  height: 100px;
}

.swpslidetwo {
  background-position: center;
  background-size: cover;
  width: 174px;
  height: auto;
}

.swpslidetwo img {
  display: block;
  width: 100%;
  object-fit: center;
  border-radius: 30px;
}

.swipercustomcontainer {
  max-width: 700px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}


.fa-users {
  color: #ffcc00;
}

.package-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 17px;
  overflow: hidden;
  background: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  width: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card img {
  width: 100%;
 
  object-fit: contain;
}

.package-card-content h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: white;
}
.package-card-content .price {
  font-weight: bold;
  color: #7134c7;
  margin-bottom: 10px;
}
.package-card-content .inclusions {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
}
.package-card-content .book-btn {
  display: inline-block;
  padding: 4px 10px;
  background: #7134c7;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: background 0.3s;
}
.package-card-content .book-btn:hover {
  background: #5a2aa0;
}

.package-card-content .book-btn.in-cart {
  /* background: #ff4786; */
}
.package-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.no-packages {
  text-align: center;
  padding: 40px;
  color: #666;
  grid-column: 1 / -1;
}
.no-packages i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ddd;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.movie-card {
  background-color: black;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s;
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.movie-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.movie-card-content h3 {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* .movie-card-content small{
  color: white
} */

.movie-card-desc {
  display: flex;
  align-items: center;
  gap: 6px;
}


.text-muted {
  color: white !important;
  border: 2px solid #ff4786;
  border-radius: 10px;
  padding: 6px 15px;
  text-align: center;
  font-size: 10px;
  flex: 1;
  white-space: nowrap;
  min-width: fit-content;
}

.book-btn-showing {
  font-size: 12px;
  /* flex: 1; */
}
.movie-card-content a {
  width: 60%;
  text-decoration: none;
  text-align: center;
  padding: 8px 12px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}


footer {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 2rem 4%;
  text-align: center;
  border-top: 1px solid var(--secondary-color);
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

footer p {
  font-size: 0.9rem;
  color: var(--secondary-color);
}


@media (max-width: 925px) {
  .overlayText {
    top: 30%;
  }

  .overlayText {
    /* top: 70%; */
    width: 65%;
  }
}

.movie-list {
  padding: 2rem 4%;
}

.movie-list h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .featured-content {
    max-width: 100%;
  }

  .featured-movie {
    height: 50vh;
  }

  .swpslideone img {
    height: 100%;
    object-fit: cover;
  }

  .mySwiperTwo {
    width: 100%;
    height: auto !important;
    margin-top: -2.5rem;
  }

  .overlayText {
    top: 10%;
    width: 65%;
  }

  .overlayHeading {
    font-size: 30px;
    font-weight: 900;
    color: var(--primary-color);
  }

  .overlayText p {
    font-size: 13px;
    margin-bottom: 0;
  }

  .movie-btn-1 {
    padding: 3px 5px;
    border-radius: 20px;
    font-size: 0.6rem;
    border: none;
  }

  .movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 2fr));
  }

  .swipercustomcontainer {
    max-width: 200px;
    position: absolute !important;
    bottom: 0px !important;
    right: 20px;
  }
}

@media (max-width: 800px) {
  .featured-movie {
    height: 50vh;
  }
  .mySwiperTwo {
    width: 100%;
  }

  .swpslidetwo {
    background-position: center;
    background-size: cover;
    width: 134px;
    height: auto;
  }

  .swpslidetwo img {
    display: block;
    width: 100%;
    object-fit: contain;
    border-radius: 30px;
  }
}

@media (max-width: 500px) {
  .featured-movie {
    height: 48vh;
  }
}

@media (max-width: 375px) {
  .featured-movie {
    height: 48vh;
  }
}

@media (max-width: 360px) {
  .mySwiperTwo {
    width: 100%;
  }

  /* .promo-card {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .promo-image {
    height: 100%;
    width: 100vw;
  } */
}

@media (max-width: 320px) {
  .featured-movie {
    height: 35vh;
  }
}
