* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-gold: #d4af37;
  --color-black: #000000;
  --color-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.main-heading {
  text-align: center;
  padding-bottom: 50px;
}

.main-heading h2 {
  font-weight: bold;
  font-size: 40px;
  position: relative;
  margin-bottom: 70px;
  text-transform: capitalize;
}

.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #000000;
  bottom: -30px;
  width: 120px;
}

.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #333;
  bottom: -38px;
  background-color: white;
}

.main-heading p {
  width: 550px;
  margin: 0 auto 100px;
  max-width: 100%;
  line-height: 2;
  color: #777;
}

/* navbar started */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: black;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.lgo {
  color: #ebbf2d;
}

/* Hide checkboxes but keep them accessible */
.nav__toggle,
.dropdown__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Mobile menu toggle button */
.nav__toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle-label span,
.nav__toggle-label span::before,
.nav__toggle-label span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: all 0.3s ease;
}

.nav__toggle-label span::before,
.nav__toggle-label span::after {
  content: "";
  position: absolute;
}

.nav__toggle-label span::before {
  bottom: 8px;
}

.nav__toggle-label span::after {
  top: 8px;
}

/* Navigation styles */
.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: block;
  cursor: pointer;
}

.nav__link:hover {
  color: #ebbf2d;
}

/* Dropdown styles */
.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 100;
}

.dropdown__item {
  padding: 0.25rem 0;
}

.dropdown__link {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
  display: block;
  transition: all 0.3s ease;
}

.dropdown__link:hover {
  color: #ebbf2d;
}

button.btn {
  background-color: #ebbf2d;
  width: 200px;
  height: 50px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: ease-in-out 0.3s;
  box-shadow: inset 0 0 0 0;
}

button.btn a {
  text-decoration: none;
  color: black;
  font-family: none;
}

/* Desktop dropdown hover */
@media (min-width: 769px) {
  .nav__item:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .navbar__container {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle-label {
    display: block;
  }

  .nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .nav__toggle:checked ~ .nav__list {
    max-height: 100vh;
    padding: 1rem 0;
  }

  .nav__toggle:checked ~ .nav__toggle-label span {
    background: transparent;
  }

  .nav__toggle:checked ~ .nav__toggle-label span::before {
    transform: rotate(45deg);
    bottom: 0;
  }

  .nav__toggle:checked ~ .nav__toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    padding: 0.75rem 2rem;
    border-radius: 0;
  }

  /* Mobile dropdown styles */
  .dropdown__menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f5f5f5;
  }

  /* Show dropdown when nav item is clicked */
  .nav__item:hover .dropdown__menu,
  .nav__item:focus-within .dropdown__menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .dropdown__link {
    padding: 0.75rem 3rem;
  }

  .navbar {
    padding: 12px;
  }

  button.btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar__logo {
    font-size: 1.25rem;
  }

  button.btn {
    display: none;
  }
}

/* navbar end */
.slider-container {
  position: relative;
  height: 78vh;
  width: 100%;
  overflow: hidden;
  padding-bottom: 70px;
  z-index: -1;
}

.slides {
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  z-index: 2;
}

.slide-content h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.release-date {
  display: inline-block;
  background-color: #ff4444;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
}

.slider-container:hover .slider-btn {
  opacity: 1;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 30px;
  border-radius: 5px;
  background: white;
}

@media (max-width: 768px) {
  .slide-content {
    padding: 2rem;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .release-date {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* end  Slider */
.about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about__container {
  display: flex;
  align-items: center;
}

.about__content {
  flex: 1;
  background: #fff;
  width: 100%;
  max-width: 50%;
  margin-right: -2rem;
  padding: 2rem;
  box-shadow: 2px 0px 11px #00000040;
  position: relative;
  z-index: 1;
}

.about__title {
  color: var(--color-dark);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.about__subtitle {
  color: #777;
  margin-bottom: 3rem;
  line-height: 1.5;
  text-align: center;
}

.about__main {
  margin-top: 2rem;
}

.about__heading {
  font-size: clamp(1.8rem, 3vw, 1.2rem);
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.highlight {
  color: #ebbf2d;
}

.about__text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.about__images {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about__image {
  width: 61%;
  /* height: 50%; */
  /* border-radius: 20px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about__container {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 1.5rem;
  }

  .about__container {
    flex-direction: column;
    gap: 2rem;
  }

  .about__content {
    max-width: 100%;
    text-align: center;
  }

  .about__images {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
  }

  .about__title::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 2rem 1rem;
  }

  .about__title {
    font-size: 2rem;
  }

  .about__subtitle {
    font-size: 1rem;
  }

  .about__heading {
    font-size: 1.5rem;
  }

  .about__text {
    font-size: 1rem;
  }

  .about__title::before {
    display: none;
  }
}

/* ... */
.quote {
  padding-top: 50px;
  padding-bottom: 70px;
  background-image: url("https://c1.wallpaperflare.com/preview/1017/473/68/clothing-store-shop-boutique-men-s-fashion.jpg");
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
}

.quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}

.quote .container {
  position: relative;
}

.quote p {
  font-size: 30px;
  margin-bottom: 20px;
  display: block;
}

/* .. */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.features__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ffd700;
}

.features__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features__image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.features__image img {
  width: 76%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.features__image:hover img {
  transform: scale(1.02);
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.features__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.features__icon {
  background: #1a1a1a;
  color: #ffd700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.features__item p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features__container {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 3rem 1.5rem;
  }

  .features__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features__header {
    margin-bottom: 3rem;
  }

  .features__image::before {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 2rem 1rem;
  }

  .features__title {
    font-size: 1.8rem;
  }

  .features__item {
    gap: 1rem;
  }

  .features__icon {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }

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

/* ... */

.video {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.video::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: clamp(20px, 5vw, 50px);
  color: white;
  text-align: center;
  z-index: 2;
}

.video .text h2 {
  margin: 0 0 clamp(15px, 3vw, 30px);
  text-transform: capitalize;
  font-weight: normal;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.video .text p {
  margin-bottom: clamp(15px, 3vw, 30px);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.video .text button {
  background-color: #ebbf2d;
  color: rgb(0, 0, 0);
  padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  border-radius: 8px;
}

/* Media Queries for better responsiveness */
@media (max-width: 768px) {
  .video {
    height: 50vh;
    /* Slightly shorter on mobile devices */
  }
}

@media (max-width: 480px) {
  .video .text {
    padding: 15px;
  }
}

/* .. */
.page-wrapper {
  padding-top: 70px;
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 70px;
}

.card {
  position: relative;
  padding: 2rem;
  color: white;
  border-radius: 8px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 2px 1px black;
}

.light-blue {
  background-color: #f5f5f5;
}

.dark-blue {
  background-color: #f5f5f5;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon svg {
  fill: goldenrod;
}

.icon i {
  color: #333;
  font-size: 1.2rem;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: black;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #777;
}

.arrow {
  margin-top: auto;
}

.arrow i {
  font-size: 1.5rem;
  color: goldenrod;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .card h2 {
    font-size: 1.25rem;
  }

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

/* ... */
.gallery {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  background-color: #ececec;
}

.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.gallery .box {
  padding: 10px;
  background-color: white;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
}

.gallery .box .image {
  position: relative;
  overflow: hidden;
}

.box .image-detalis {
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
  font-size: 15px;
}

.main-title {
  text-transform: uppercase;
  margin: 0 auto 80px;
  border: 2px solid black;
  padding: 10px 20px;
  font-size: 30px;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: var(--main-transition);
}

.main-title::before,
.main-title::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--main-color);
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.main-title::before {
  left: -30px;
}

.main-title::after {
  right: -30px;
}

.main-title:hover::before {
  z-index: -1;
  animation: left-move 0.5s linear forwards;
}

.main-title:hover::after {
  z-index: -1;
  animation: right-move 0.5s linear forwards;
}

.spikes {
  position: relative;
}

.spikes::after {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
  background-image: linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%);
  background-size: 30px 30px;
}

.dots {
  background-image: url("../imgs/dots.png");
  height: 186px;
  width: 204px;
  background-repeat: no-repeat;
  position: absolute;
}

.dots-up {
  top: 200px;
  right: 0;
}

.dots-down {
  bottom: 200px;
  left: 0;
}

.gallery .box .image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255 255 255 / 20%);
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 2;
}

.gallery .box .image:hover::before {
  animation: flashing 0.7s;
}

.gallery .box img {
  max-width: 100%;
  transition: 0.3s;
}

@keyframes flashing {
  0%,
  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 200%;
    height: 200%;
  }
}

/* endd */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.filters {
  text-align: center;
  margin-bottom: 2rem;
}

.filters h2 {
  margin-bottom: 1rem;
  color: #333;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
  background-color: #ebbf2d;
  color: white;
}

.filter-btn.active {
  background-color: #ebbf2d;
  color: white;
}

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

.product {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product h3 {
  padding: 1rem;
  color: #333;
}

.product p {
  padding: 0 1rem 1rem;
  color: #2d6ca1;
  font-weight: bold;
}

.product.hide {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

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

@media (max-width: 480px) {
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* ... */
.shows-wrapper {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  height: 35vh;
}

.shows-heading {
  padding: 0 4%;
  margin-bottom: 10px;
  font-size: 1.4vw;
}

.shows-carousel {
  position: relative;
  padding: 0 4%;
}

.shows-list {
  display: flex;
  gap: 8px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}

.shows-item {
  flex: 0 0 calc(100% / 6 - 8px);
  transition: transform 0.3s ease;
  position: relative;
  cursor: pointer;
}

.shows-item img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  border-radius: 6%;
}

.shows-item:hover {
  transform: scale(1.1);
  z-index: 2;
}

.shows-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  color: black;
  border: none;
  cursor: pointer;
  z-index: 3;
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shows-carousel:hover .shows-arrow {
  opacity: 1;
}

.shows-arrow-prev {
  left: 0;
  color: black;
  background: none;
}

.shows-arrow-next {
  right: 0;
  text-combine-upright: geometricprecision;
  color: black;
  background: none;
  width: 4%;
}

.shows-play-pause {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.shows-play-pause:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* Navigation Dots */
.shows-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.shows-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.shows-dot.active {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Modal Styles */
.shows-modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
}

.shows-modal-content {
  max-width: 90%;
  max-height: 90vh;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shows-modal-close {
  position: absolute;
  right: 35px;
  top: 15px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.shows-modal-close:hover {
  color: #bbb;
}

.shows-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border: none;
  padding: 20px;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.shows-modal-arrow-prev {
  left: 20px;
  background: none;
}

.shows-modal-arrow-next {
  right: 20px;
  background: none;
}

/* Responsive Design */
@media screen and (max-width: 1400px) {
  .shows-item {
    flex: 0 0 calc(100% / 5 - 8px);
  }
}

@media screen and (max-width: 1100px) {
  .shows-item {
    flex: 0 0 calc(100% / 4 - 8px);
  }
}

@media screen and (max-width: 800px) {
  .shows-item {
    flex: 0 0 calc(100% / 3 - 8px);
  }

  .shows-heading {
    font-size: 18px;
  }

  .shows-modal-arrow {
    padding: 15px;
    font-size: 20px;
  }

  .shows-dot {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 500px) {
  .shows-item {
    flex: 0 0 calc(100% / 2 - 8px);
  }

  .shows-modal-content {
    width: 95%;
  }

  .shows-modal-close {
    right: 25px;
    top: 15px;
    font-size: 30px;
  }

  .shows-modal-arrow {
    padding: 10px;
    font-size: 18px;
  }

  .shows-play-pause {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }

  .shows-dot {
    width: 6px;
    height: 6px;
  }
}

/*  */
.contact {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 70px;
}

/* Form Styles */
.contact__form {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact__heading {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.contact__field {
  margin-bottom: 20px;
}

.contact__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact__required {
  color: #e74c3c;
}

.contact__input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact__input--textarea {
  height: 150px;
  resize: vertical;
}

.contact__button {
  background-color: #ebbf2d;
  color: rgb(0, 0, 0);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  font-weight: bold;
}

/* Info Styles */
.contact__info {
  padding: 40px;
}

.contact__info-heading {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.contact__info-subheading {
  color: #666;
  margin-bottom: 40px;
}

.contact__details {
  margin-bottom: 40px;
}

.contact__detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact__detail-icon {
  font-size: 24px;
  margin-right: 15px;
  min-width: 40px;
}

.contact__detail-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.contact__detail-text {
  color: #666;
}

/* Social Links Styles */
.contact__social {
  display: flex;
  gap: 15px;
}

.contact__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.contact__social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact__social-link--facebook {
  background-color: #1877f2;
}

.contact__social-link--instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.contact__social-link--whatsapp {
  background-color: #25d366;
}

.contact__social-link--tiktok {
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.contact__social-link--tiktok::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #25f4ee, #fe2c55, #000000);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact__social-link--tiktok:hover::before {
  opacity: 1;
}

.contact__social-link--tiktok i {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact__info {
    padding: 20px 0;
  }
}

@media (max-width: 600px) {
  .contact {
    margin: 20px auto;
    padding: 0 15px;
  }

  .contact__form {
    padding: 20px;
  }

  .contact__heading,
  .contact__info-heading {
    font-size: 22px;
  }

  .contact__info-subheading {
    font-size: 14px;
  }

  .contact__detail-item {
    margin-bottom: 20px;
  }

  .contact__social {
    justify-content: center;
  }
}

/* / */
.footer {
  background-color: #1d1c1c;
  color: white;
  padding: 15px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px 40px;
  border-top: 1px solid #2a3444;
}

.footer-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  opacity: 0.9;
}

.footer-right {
  font-family: Arial, sans-serif;
  font-size: 14px;
  opacity: 0.9;
}

/*  */
.catalog {
  max-width: 1200px;
  margin: 0 auto;
}

.catalog__title {
  font-size: 2.5rem;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.catalog__divider {
  width: 60px;
  height: 4px;
  background: #333;
  margin: 0 auto 40px;
  position: relative;
}

.catalog__divider::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.catalog__filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.catalog__filter-btn {
  padding: 8px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
}

.catalog__filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #f4b400;
  transition: width 0.3s ease;
}

.catalog__filter-btn:hover::after,
.catalog__filter-btn.active::after {
  width: 100%;
}

.catalog__filter-btn.active {
  color: #333;
  font-weight: 500;
}

.catalog__products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.catalog__product {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.catalog__product.hidden {
  display: none;
}

.catalog__product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.catalog__product-title {
  padding: 15px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  body {
    padding: 20px 15px;
  }

  .catalog__title {
    font-size: 2rem;
  }

  .catalog__filters {
    gap: 10px;
  }

  .catalog__filter-btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }

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

  .catalog__product-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .catalog__title {
    font-size: 1.8rem;
  }

  .catalog__products {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .catalog__product-image {
    height: 200px;
  }

  .catalog__product-title {
    font-size: 0.9rem;
    padding: 10px;
  }
}
