/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");

/* ANIMATONS */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
.content {
  transition: all 2s ease-in-out;
}

* {
  margin: 0px;
  padding: 0px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  color: white;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  background-color: #00030c;
  overflow-x: hidden;
}

/* NAVBAR */
.logo {
  margin-top: 13px;
  position: relative;
  right: 8px;
  cursor: pointer;
  height: 40px;
}
#nav {
  font-family: "Roboto Slab", serif;
  position: fixed;
  padding: 23px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  z-index: 100;
  top: 0px;
}
#dashboardItem {
  display: none;
}
.logsec {
  margin-top: 13px;
  display: flex;
  gap: 25px;
}
.navbar > ul {
  display: flex;
  gap: 9em;
}
.navbar > ul > li {
  list-style: none;
}
.navbar > ul > li > a {
  display: inline-block;
  transition: all 0.1s ease-in-out;
  padding: 9px;
  font-size: 20px;
  text-decoration: none;
}
.btn {
  border-radius: 10px;
  padding: 10px;
  height: 40px;
  width: 80px;
  border: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
#log {
  background-color: rgba(255, 255, 255, 0.123);
  transition: all 0.1s ease-in-out;
}
#sup {
  background-color: #e41f73;
  box-shadow: 15px -2px 99px 0px #e41f73;
  transition: all 0.1s ease-in-out;
}

/* HERO SECTION */
.section {
  display: flex;
  height: auto;
}

#hero {
  display: flex;
  flex-direction: column;
  padding-top: 155px;
  padding-left: 55px;
  background-image: url(/Media/Png/Background.png);
  background-size: cover;
  font-family: monospace;
  height: 900px;
}
#hero > h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}
#hero > p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 30px;
}
.white {
  color: white;
}
.pink {
  color: #e03ea4;
}
.red {
  color: #ee245a;
  margin-bottom: 30px;
}

#exp {
  width: 180px;
  height: 45px;
  background-color: #e41f73;
}
.search {
  background-color: #0d0f1d;
  width: min(90%, 1100px);
  height: 105px;
  margin: auto;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parsec {
  display: flex;
  width: 316px;
}
.pic {
  filter: invert();
  height: 40px;
}
.vertical-divider {
  border-left: 2px solid #333333;
  height: 100px;
  margin: 0 15px;
}
.parsec > h6 {
  font-size: 12px;
}
#bsearch {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  height: 60px;
  width: 60px;
  background-color: #e41f73;
  cursor: pointer;
  border: none;
}
#bsearch > img {
  height: 30px;
}

/* TRENDING SECTION*/

#trending {
  display: flex;
  flex-direction: column;
  margin-bottom: 400px;
}
.heading {
  font-family: monospace;
  margin: 0px 50px;
}
.cardsec {
  display: flex;
  justify-content: center;
  gap: 60px;
  min-height: 70vh;
  height: auto;
  margin-top: 80px;
  margin-bottom: 300px;
}
.card {
  transition: all 0.1s ease-in-out;
  background-color: #0d0f1d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  border: 2px solid rgb(66, 66, 66);
  height: 450px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  cursor: pointer;
}
.card > img {
  height: 250px;
  width: 100%;
}
.text {
  width: 100%;
  margin: 20px 10px;
}
.rate {
  font-size: 25px;
}
.cbottom {
  margin: 10px 15px;
}
.cinfo {
  margin: 10px;
  width: 100%;
  display: flex;
  gap: 10px;
}
.cpic {
  filter: invert(19%) sepia(87%) saturate(4645%) hue-rotate(325deg)
    brightness(91%) contrast(96%);
  height: 20px;
}

/* CATEGORY */

#cat {
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.catup {
  gap: 30px;
  margin: 70px auto;
  display: flex;
}
#hcat {
  margin: 40px 50px;
  font-family: monospace;
}
.catsec {
  display: none;
  opacity: 0;
  margin: 50px auto;
  width: 98%;
  align-items: center;
  min-height: 300px;
  height: auto;
  background-color: #101010;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}
.catsec.show {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;

  gap: 20px;

  opacity: 1;

  padding: 30px;
}
.catblocks {
  transition: all 0.1s ease-in-out;
  display: flex;
  flex-direction: column;
  border: 2px solid white;
  border-radius: 30px;
  height: 120px;
  width: 120px;
  cursor: pointer;
}
.catblocks > img {
  height: 60px;
}
.catpic {
  width: 50%;
  margin: 25px auto 0px auto;
}
.stxt {
  margin: 7px;
}
.stxt > h6 {
  margin-bottom: 6px;
  font-size: 15px;
}
.catpic > img {
  filter: invert();
  height: 60px;
}
.catblocks > h4 {
  margin: auto;
}

/* LOCATION SECTION*/
#loc {
  display: flex;
  flex-direction: column;
}
#lochead {
  margin-top: 50px;
}

/* FOOTER */
.bar {
  color: grey;
}
.footer {
  background: #0a0a0a;
  color: white;
  padding: 60px 10% 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h2 {
  margin-bottom: 15px;
}

.footer-brand p {
  color: #aaa;
  line-height: 1.6;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-links h3,
.footer-social h3 {
  margin-bottom: 15px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #777;
}

/* SEARCH OVERLAY */

#searchover {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 100;
  position: fixed;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#searchover.show {
  opacity: 1;
}

#sbox {
  width: min(90%, 700px);
  height: 90%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 80px;
  border-radius: 35px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.05),
    0 0 120px rgba(0, 0, 0, 0.5);
}

.ssec {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: auto;
  gap: 12px;

  padding: 0 20px;
}

.ssec h2 {
  margin: auto;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.ssec input,
.ssec select {
  width: 100%;

  padding: 15px 18px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.04);
  color: white;

  outline: none;

  transition: 0.3s ease;
}

.ssec input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ssec input:focus,
.ssec select:focus {
  border-color: rgba(255, 255, 255, 0.25);

  background: rgba(255, 255, 255, 0.06);

  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.ssec select option {
  background: #111;
}

.searchbtn {
  height: 50px;
  width: 100px;
  background-color: black;
  padding: 10px 15px;
  border-radius: 18px;

  font-size: 1rem;
  font-weight: 600;

  transition: 0.3s ease;
}

/* LOGIN MODULE */
.sec {
  min-height: 90vh;
  display: flex;
  gap: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.fbox {
  width: 100%;
  max-width: 650px;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.fbox h2 {
  text-align: center;
  margin-bottom: 25px;
  color: white;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 0.9em;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.input-group input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.fbox button {
  color: black;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
}

.fbox p {
  margin-top: 20px;
  text-align: center;
  color: white;
}

.fbox a {
  color: #4da3ff;
  cursor: pointer;
  text-decoration: none;
}
#signbox {
  display: none;
}
.google {
  display: flex;
  width: 247px;
  padding: 12px;
  background: white;
  color: black;
  border-radius: 70px;
  border: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.google > img {
  height: 40px;
}
.google > p {
  font-size: 18px;
  margin: 12px 10px;
  color: black;
}
.google:hover {
  box-shadow: 0px 0px 20px 4px rgba(255, 255, 255, 0.342);
  transform: scale(1.2);
}

/* Event Module */

/* HOVERS */

.navbar > ul > li > a:hover {
  background-color: rgba(255, 255, 255, 0.096);
  border-radius: 10px;
  transform: scale(1.1) translateY(-5px);
}
.btn:hover {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.192);
  transform: scale(1.05) translateY(-2px);
}
#sup:hover {
  border-radius: 15px;
  background-color: #e41f73;
  box-shadow: 15px -2px 99px 4px #e41f73;
}
.card:hover {
  box-shadow:
    0 0 0px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 255, 255, 0.1);
  transform: scale(1.1) translateY(-10px);
}

.catblocks:hover {
  transform: scale(1.1);
}
.catblocks:nth-child(1):hover {
  background-color: red;
}
.catblocks:nth-child(2):hover {
  background-color: rgb(132, 189, 48);
}
.catblocks:nth-child(3):hover {
  background-color: blue;
}

/* ACTIVES */

.catblocks.active1 {
  background-color: red;
  border: 2px solid red;
}
.catblocks.active2 {
  background-color: rgb(132, 189, 48);
  border: 2px solid rgb(132, 189, 48);
}
.catblocks.active3 {
  background-color: blue;
  border: 2px solid blue;
}
.catsec.active1 {
  border: 2px solid red;
}
.catsec.active2 {
  border: 2px solid rgb(132, 189, 48);
}
.catsec.active3 {
  border: 2px solid blue;
}

/* MEDIA-QUERIES */

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* DropDown */

.user-dropdown {
  display: block;
}

.dropdown-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 45px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

.dropdown-menu a,
.dropdown-menu button {
  padding: 12px;
  text-align: left;
  background: none;
  color: white;
  cursor: pointer;
  text-decoration: none;
  font-size: 17px;
  border: none;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  border-bottom: 1px solid white;
  background: rgba(255, 255, 255, 0.1);
}

.hidden {
  display: none;
}

/* CONTACT PAGE */

.contact {
  min-height: 100vh;
  background: #0d1117;
  color: white;
  padding: 80px 20px;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-header p {
  color: #b0b0b0;
  font-size: 1.1rem;
}

.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.info-card {
  background: #161b22;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #30363d;
}

.info-card h3 {
  margin-bottom: 10px;
  color: #7c3aed;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: #161b22;
  border: 1px solid #30363d;
  color: white;
  padding: 15px;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7c3aed;
}

.contact-form button {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #6d28d9;
}

#successMessage {
  margin-top: 10px;
  color: #22c55e;
  font-weight: 500;
}

/* SITE POLISH OVERRIDES */

:root {
  --evently-bg: #070912;
  --evently-surface: #101522;
  --evently-border: rgba(255, 255, 255, 0.1);
  --evently-pink: #e41f73;
  --evently-violet: #7c3aed;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(124, 58, 237, 0.16),
      transparent 34rem
    ),
    var(--evently-bg);
}

#nav {
  background: rgba(7, 9, 18, 0.76);
  border-bottom: 1px solid var(--evently-border);
}

.navbar > ul {
  gap: clamp(1rem, 5vw, 9em);
}

.btn,
button,
.dropdown-btn,
.primary-btn,
.secondary-btn {
  border-radius: 8px;
}

#hero {
  min-height: 760px;
  height: 100vh;
  background-position: center;
  position: relative;
  isolation: isolate;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 9, 18, 0.94),
      rgba(7, 9, 18, 0.48),
      rgba(7, 9, 18, 0.72)
    ),
    linear-gradient(0deg, var(--evently-bg), transparent 38%);
}

.search,
.card,
.catsec,
.fbox,
.info-card,
.ticket-card,
.booking-card,
.profile-card,
.stat-card,
.event-card,
.message-card,
.user-card {
  border-radius: 16px;
  border-color: var(--evently-border);
}

.search {
  background: rgba(13, 15, 29, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.card {
  border: 1px solid var(--evently-border);
}

.card > img,
.artist-card img,
.similar-card img {
  object-fit: cover;
}

.card:hover,
.navbar > ul > li > a:hover,
.google:hover {
  transform: translateY(-4px);
}

/* INTRO-VIDEO */
.introcon {
  position: fixed;
  width: 100%;
  inset: 0;
  height: 100dvh; /* Best for mobile */
  overflow: hidden;
  z-index: -1;
}

.intro {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);

  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/* Extra safety for orientation change */
@media (orientation: portrait) {
  .intro {
    object-fit: cover;
  }
}

@media (orientation: landscape) {
  .intro {
    object-fit: cover;
  }
}
