/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&display=swap");

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", serif;
}

body {
  height: 100vh;
  width: 100vw;
  font-size: 16px;
  background-color: #111;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.inner {
  width: 90%;
  margin: auto;
}

h2 {
  font-size: 0.5rem;
}

p {
  color: #fff;
  overflow: hidden;
}

#header-container{
  background: #000;
  padding: 30px;
}

#header-container header img.logo {
  max-width: 80%;
  width: 200px;
  /* transform: rotate(7deg); */
}

/* Cover Section */
#cover {
  height: 90vh;
  background-image: linear-gradient(
      rgba(0, 0, 0, 1),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.9)
    ),
    url(../assets/aprajita-verma.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: end;
  /* flex-direction: column; */
  padding: 30px 0 30px 0;
}

/* #cover .spacer {
  flex: 1;
} */

/* #cover .show img{
  height: 40rem;
  width: none;
  border-radius: 8px;
} */

#cover input {
  margin-bottom: 50px;
  background: #feafee;
  /* display: inline; */
  color: #111;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
}


/* seasons-container Section */
#seasons-container {
  background-color: #111;
  padding: 20px;
}

#seasons-container .season {
  margin: 30px 0;
  padding-bottom: 30px;
  color: #fff;
  display: inline;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* #seasons-container .season .header {
  padding-bottom: 20px;
} */

#seasons-container .season .content {
  padding: 10px 0px;
  display: flex;
  gap: 30px;
  overflow: auto;
  scrollbar-width:none;
  transition: 0.4s;
  /* margin-right: 30px; */
  scroll-behavior: smooth;
}

#seasons-container .season a{
  text-decoration: none;
}
.slider{
  width: 100%;
}
.navigate{
  display: flex;
  justify-content: center;
  gap: 10px;
  .active{
    transform: scale(1.2);
    background-color: #FEAFEE;
  }
  >div{
    width: 8px;
    height: 8px;
    background-color: #f2f2f2;
    border-radius: 50%;
    &:hover{
      cursor: pointer;
      transform: scale(1.4);
    }
  }
}

#seasons-container .season .episode {
  margin: 15px 0px;
  color: #fff;
  width: 350px;
  height: 260px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
}

#seasons-container .season .episode:hover {
  transform: scale(1.03);
}

#seasons-container .season .episode .image{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%
}

#seasons-container .season .episode .image::before{
  content: "";
  width: 40px;
  height: 40px;
  background-color: #111;
  position: absolute;
  border-radius: 50px;
}

#seasons-container .season .episode .image::after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #fff;
  margin-left: 3px;
  rotate: 90deg
}

#seasons-container .episode .right {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  flex: 1;
  width: 100%;
}

#seasons-container .episode img {
  width: 100%;
  /* object-fit: contain; */
  display: inline;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

/* Shorts Section */
#shorts{
  padding: 30px;
  color: #fff;
  background-color: #111;
}

#shorts .shorts{
  display: flex;
  overflow: scroll;
  scrollbar-width: none;
  margin: 30px auto;
  justify-content: space-between;
  scroll-behavior: smooth;
}

#shorts .short {
  padding: 20px;
}

/* Popup Book Section */
#popup-book {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  color: white;
  background-color: #111;
  background-image: url("../assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 10px 0;
  z-index: 1;
}

#popup-book .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#popup-book .seat-book-form {
  border: 1.5px solid #aaa;
  border-radius: 20px;
  box-shadow: 5px 5px 10px rgba(12, 12, 12, 0.2);
  width: 95%;
  max-width: 800px;
  margin: auto;
  padding: 20px 20px;
}

#popup-book .red {
  color: #ff3e6c;
  font-weight: bold;
  font-size: 20px;
  line-height: 0;
}

#popup-book .details input,
#popup-book .details select,
#popup-book .details textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px;
  margin-bottom: 20px;
  margin-top: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
}

#popup-book #submit {
  background: rgb(99, 27, 244);
  color: white;
  font-weight: bold;
  margin-bottom: 0;
}

#popup-book #submit:active {
  background: rgb(39, 1, 127);
  transform: scale(1);
}

#popup-book .user-info {
  display: flex;
}

#popup-book .user-info img {
  width: 8px;
  height: 8px;
  margin-left: 5px;
}

#popup-book .dropdown {
  list-style: none;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 0px;
}

#popup-book .dropdown li {
  background: rgb(180, 155, 228);
  color: white;
  padding: 8px 12px;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}

#popup-book .dropdown li:active {
  transform: scale(0.98);
}

/* Popup PDF Section */
#popup-pdf {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  color: white;
  background-image: url("../assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  height: 100vh;
  justify-content: center;
  z-index: 10;
}

#popup-pdf .load {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url("../assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  position: absolute;
}

#popup-pdf .seat-booked {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: none;
}

#popup-pdf .back {
  background-image: url("../assets/background.png");
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  filter: blur(100px);
}

#popup-pdf .action-container {
  display: flex;
  justify-content: space-between;
}

#popup-pdf .logoImage {
  width: 50%;
  height: auto;
}

#popup-pdf .download-button {
  background: none;
  border: none;
  outline: none;
}

#popup-pdf .download {
  width: 20px;
  height: 20px;
}

#popup-pdf .seat-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#popup-pdf .seat-confirmation img {
  width: 40px;
  padding-top: 30px;
  margin-bottom: 10px;
}

#popup-pdf .details {
  margin-top: 25px;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

#popup-pdf .details img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

#popup-pdf .guest-details {
  text-align: left;
}

#popup-pdf .guest-details h3 {
  margin-bottom: 6px;
}

#popup-pdf .guest-details p {
  font-size: 13px;
  color: #999;
}

#popup-pdf .user-detail {
  background-color: #333;
  border-radius: 15px;
  padding: 3px;
  margin-top: 25px;
  padding: 20px;
  text-align: center;
}

#popup-pdf .user-detail p {
  font-size: 13px;
  color: #999;
}

#popup-pdf .separator {
  border: none;
  border-top: 1px solid #444;
  margin: 20px auto;
  margin-right: 20px;
  width: 100%;
}

#popup-pdf .qr-code {
  background-color: white;
  display: inline-block;
  padding: 20px;
  margin: auto;
  border-radius: 30px;
  margin-bottom: 10px;
}

/* Header Styles */
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Auth Container Styles */
#auth-container {
  position: relative;
  display: inline-block;
}

.codeup-button {
  background: #feafee;
  color: #111;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
}

.transparent {
  background: none;
  border: none;
}

/* Profile Image and Dropdown Styles */
.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  vertical-align: middle;
}

.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  min-width: 100px;
  z-index: 1000;
  text-align: center;
  a{
    text-decoration: none !important;
    color: #555;
    &:hover{
      color: #000;
      background-color: #ddd;
    }
  }
}

.profile-dropdown.show {
  display: block;
}

.profile-dropdown a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.profile-dropdown a:hover {
  background-color: #f2f2f2;
}

/* Loader Styles */
.loader {
  border: 16px solid #ffffff10;
  border-radius: 50%;
  border-top: 16px solid #fff;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Popup Overlay Styles */
#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#popup-overlay.hidden {
  display: none;
}

#popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 400px;
  text-align: center;
  position: relative;
}

#popup-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#popup-content p {
  font-size: 1rem;
  color: #333;
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 700px) {
  .inner {
    width: 100%;
    margin: auto;
  }

  #cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 25%;
    padding: 20px 0;
  }

  /* #cover h1 {
    font-size: 40px;
    margin: 20px auto;
  } */

  #cover input {
    width:fit-content;
    padding: 8px 18px;
    font-size: 14px;
    margin-bottom: 0px;
  }

  #cover header img.logo {
    width: 50%;
    max-width: 200px;
  }

  .header h2{
    font-size: 24px;;
  }

  .content h2,
  .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
  }

  .codeup-button {
    padding: 6px 12px;
  }
  /* .content .read-more {
    display: inline-block;
    color: #007bff;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 5px;
  } */
}

/* @media screen and (max-width: 350px) {
  #seasons-container .season .episode {
    flex-direction: column;

  }

  #seasons-container .episode iframe {
    width: 100%;
    height: auto;
  }

  #seasons-container .episode .right {
    width: 100%;
    padding: 10px 0;
  }
} */

@media screen and (min-width: 701px) {
  #popup-overlay {
    display: none !important;
  }
}

#footer{
  background-color: #0b2239;

    .follow {
        align-content: center;

        img {
            width: 210px;
            display: block;
            /* rotate: 7deg; */
        }

        h4 {
            color: white;
            display: inline-block;
            margin-right: 20px;
        }

        svg {
            width: 20px;
            height: 20px;
            fill: white;
            margin-bottom: 8px;
            margin-right: 6px;
        }
    }

    .navi a {
        color: white !important;
        text-decoration: none;
        display: block;
        margin: 25px 0;
        cursor: pointer;
    }

    .copyright {
        background-color: #111;
        text-align: center;
    }

    @media screen and (width <= 768px) {
        .follow {
            text-align: -webkit-center;
        }

        .navi a {
            text-align: center;
        }
    }
}

@media (max-width: 768px) {
  .cover-title{
    opacity: 0;
  }

}