@charset "UTF-8";
body {
  font-family: "Montserrat";
  font-weight: 400;
}

.wrapper {
  min-height: 100vh;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-flow: column;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

body {
  font-family: "Montserrat";
  color: #fff;
  font-size: 2.4rem;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  -moz-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  background-image: url("/Event_Booster/assets/bg-mobile.png");
  background-color: rgb(5, 5, 5);
}

/***
    The new CSS reset - version 1.11 (last updated 20.9.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.modal {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  background: #fff0fa;
  color: #222;
  -webkit-animation: fadeIn 0.3s ease;
     -moz-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
  padding: 25px 35px;
  border-radius: 100px 0 100px 0;
  max-width: 850px;
  width: 90%;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  max-height: 90vh;
}

.close {
  -webkit-align-self: flex-end;
          align-self: flex-end;
  font-size: 28px;
  color: #9c27b0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.close:hover {
  color: #e6007e;
}

.modal-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}

.modal-left img {
  width: 320px;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 10px;
}

.modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.modal-header img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.section-title {
  color: #e6007e;
  font-weight: bold;
  font-size: 20px;
  margin-top: 5px;
}

.modal-info {
  font-size: 15px;
}

.buy-btn {
  display: inline-block;
  background: #3b00ff;
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 5px;
  margin-bottom: 6px;
}

.buy-btn:hover {
  background: #5c1fff;
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.author-btn {
  background: transparent;
  color: #3b00ff;
  border: 2px solid #3b00ff;
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.author-btn:hover {
  background: #3b00ff;
  color: white;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
    -moz-transform: scale(0.95);
         transform: scale(0.95);
  }
  to {
    opacity: 1;
    -moz-transform: scale(1);
         transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.95);
       -moz-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  color: rgb(147, 147, 147);
}

.text {
  font-size: 16px;
}

.header {
  background-image: url(/Event_Booster/assets/header-background.png);
  background-position: top;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vh;
  -webkit-background-size: contain;
          background-size: contain;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.logo-svg {
  width: 120px;
  height: 120px;
}

.header-title {
  color: rgb(220, 86, 197);
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
}

.search-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}

.header-input {
  background-color: rgb(147, 147, 147);
}

.select-country {
  background-color: rgb(147, 147, 147);
}

.header-btn {
  background-color: rgb(147, 147, 147);
}
.search-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
}

.search-controls input,
.search-controls select,
.search-controls button {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-controls input {
  width: 260px;
}

.search-controls select {
  width: 180px;
}

.search-controls button {
  background: #DC56C5;
  color: white;
  cursor: pointer;
}

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

.event-card {
  background: #1b1b1b;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -moz-transition: transform 0.2s, -moz-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s;
}

.event-card:hover {
  -webkit-transform: scale(1.03);
     -moz-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}

.event-card img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-card h3 {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #DC56C5;
  margin: 0.8rem 0 0.4rem;
}

.event-card p {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.pagination {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin: 20px;
}

.pagination button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0.3rem;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}

.pagination button.active {
  color: #b43fe0;
}

@media (min-width: 1024){
  body {
    background-image: url("/Event_Booster/assets/bg-laptop.png");
  }
}

@media (min-width: 768){
  body {
    background-image: url("/Event_Booster/assets/bg-tablet.png");
  }
}

@media screen and (min-width: 768px){
  .header {
    background-image: url(/Event_Booster/assets/header-bg-tablet.png);
    height: 57vh;
  }
  .search-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
  }
  .header-title {
    font-size: 30px;
  }
  .logo-svg {
    width: 180px;
    height: 180px;
  }
}

@media screen and (min-width: 1200px){
  .header {
    background-image: url(/Event_Booster/assets/header-bg-desktop.png);
    height: 40vh;
  }
  .header-title {
    font-size: 50px;
  }
  .logo-svg {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px){
  .modal-left {
    display: none;
  }
  .modal-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }
  .modal-right {
    width: 100%;
  }
}