/* =========================
   RESET
========================= */

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


/* =========================
   BODY
========================= */

body {

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  background:
    linear-gradient(
      180deg,
      #ff1493 0%,
      #ff1493 70%,
      #111111 100%
    );

  color: #ffffff;

  min-height: 100vh;

}


.site-wrapper{
  width:100%;
}


/* =========================
   HEADER
========================= */

.site-header{

  background:#111111;

  box-shadow:
    0 6px 20px rgba(0,0,0,.45);

}


.header-image-wrapper{

  position:relative;

}


.header-image{

  width:100%;

  height:320px;

  object-fit:cover;

  display:block;

}


.header-overlay{

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      rgba(0,0,0,.25),
      rgba(0,0,0,.70)
    );

  display:flex;

  flex-direction:column;

  justify-content:center;

  align-items:center;

  text-align:center;

  padding:20px;

}


.header-overlay h1{

  font-size:3rem;

  margin-bottom:12px;

}


.header-overlay p{

  font-size:1.2rem;

}


/* =========================
   NAVIGATION
========================= */

.main-navigation{

  display:flex;

  flex-wrap:wrap;

  justify-content:center;

  gap:15px;

  padding:20px;

  background:#111111;

}


.nav-button{

  padding:14px 24px;

  border:none;

  border-radius:30px;

  background:#ff1493;

  color:#ffffff;

  font-size:1rem;

  cursor:pointer;

  transition:.25s;

}


.nav-button:hover{

  background:#ff66c4;

  transform:translateY(-3px);

}


.active{

  background:#ffffff;

  color:#111111;

}


/* =========================
   MAIN
========================= */

.main-content{

  max-width:1300px;

  margin:auto;

  padding:40px 20px;

}


.content-section{

  display:block;

}


.hidden-section{

  display:none;

}


/* =========================
   WELCOME
========================= */

.welcome-panel{

  text-align:center;

  margin-bottom:40px;

}


.section-label{

  color:#111111;

  font-weight:bold;

  text-transform:uppercase;

  margin-bottom:8px;

}


.welcome-panel h2,
.section-heading h2{

  font-size:2.2rem;

  margin-bottom:15px;

}


.section-description{

  font-size:1.1rem;

}


/* =========================
   FEATURE GRID
========================= */

.feature-grid{

  display:grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(260px,1fr)
    );

  gap:30px;

}


.feature-card{

  background:#111111;

  border-radius:20px;

  padding:30px;

  text-align:center;

  box-shadow:
    0 8px 24px rgba(0,0,0,.35);

}


.feature-icon{

  font-size:3rem;

  margin-bottom:20px;

}


.feature-card h3{

  margin-bottom:15px;

}


.feature-card p{

  line-height:1.6;

  margin-bottom:25px;

}


/* =========================
   BUTTONS
========================= */

.primary-button{

  background:#ff1493;

  color:white;

  border:none;

  padding:14px 28px;

  border-radius:30px;

  cursor:pointer;

  font-size:1rem;

  transition:.25s;

}


.primary-button:hover{

  background:#ff66c4;

  transform:scale(1.05);

}


.primary-button:disabled{

  opacity:.55;

  cursor:default;

}


/* =========================
   GALLERIES
========================= */

.gallery-grid{

  display:grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(280px,1fr)
    );

  gap:25px;

  margin-top:35px;

}


.gallery-placeholder,
.video-card{

  background:#111111;

  border-radius:20px;

  overflow:hidden;

  box-shadow:
    0 8px 20px rgba(0,0,0,.35);

}


.placeholder-image{

  height:220px;

  background:#333333;

  display:flex;

  justify-content:center;

  align-items:center;

  font-size:2rem;

}


.video-placeholder{

  height:220px;

  background:#333333;

  display:flex;

  justify-content:center;

  align-items:center;

}


.play-button{

  width:80px;

  height:80px;

  border:none;

  border-radius:50%;

  background:#ff1493;

  color:white;

  font-size:2rem;

  cursor:pointer;

}


.gallery-information{

  padding:20px;

}


.gallery-information h3{

  margin-bottom:10px;

}


/* =========================
   SHOP
========================= */

.merchandise-grid{

  display:grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(260px,1fr)
    );

  gap:25px;

  margin-top:35px;

}


.product-card{

  background:#111111;

  border-radius:20px;

  overflow:hidden;

  box-shadow:
    0 8px 20px rgba(0,0,0,.35);

}


.product-image-placeholder{

  height:220px;

  background:#444444;

  display:flex;

  justify-content:center;

  align-items:center;

  font-size:1.4rem;

}


.product-information{

  padding:20px;

}


.product-information h3{

  margin-bottom:10px;

}


.product-price{

  color:#ff66c4;

  font-size:1.4rem;

  margin-bottom:15px;

  font-weight:bold;

}


/* =========================
   FOOTER
========================= */

.site-footer{

  background:#111111;

  text-align:center;

  padding:35px 20px;

  margin-top:60px;

}


.footer-note{

  margin-top:10px;

  color:#cccccc;

}


/* =========================
   MOBILE
========================= */

@media (max-width:700px){

  .header-image{

    height:220px;

  }

  .header-overlay h1{

    font-size:2rem;

  }

  .header-overlay p{

    font-size:1rem;

  }

  .main-navigation{

    gap:10px;

  }

  .nav-button{

    width:100%;

  }

}
/* =========================
   TEMPLATE LOGIN PAGE
========================= */

.login-page {
  min-height: 100vh;

  margin: 0;

  background:
    linear-gradient(
      145deg,
      #ff00a8 0%,
      #c00080 45%,
      #111111 100%
    );

  color: #ffffff;
}

.login-wrapper {
  min-height: 100vh;

  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  width: 100%;
  max-width: 460px;

  padding: 32px;

  border: 2px solid #ff47bd;
  border-radius: 24px;

  background:
    rgba(
      10,
      10,
      10,
      0.96
    );

  box-shadow:
    0 24px 60px
    rgba(
      0,
      0,
      0,
      0.45
    );
}

.login-back-link {
  display: inline-block;

  margin-bottom: 24px;

  color: #ffffff;

  text-decoration: none;
  font-weight: bold;
}

.login-card h1 {
  margin: 0 0 12px;

  color: #ff39b7;

  font-size: 2rem;
}

.login-intro {
  margin: 0 0 24px;

  color: #dddddd;

  line-height: 1.5;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin: 16px 0 7px;

  font-weight: bold;
}

.login-form input {
  width: 100%;

  padding: 14px;

  border: 1px solid #ff58c3;
  border-radius: 11px;

  background: #1e1e1e;
  color: #ffffff;

  font-size: 1rem;
}

.login-form input:focus {
  outline: 2px solid #ff149f;
  outline-offset: 2px;
}

.login-main-button,
.login-secondary-button,
.login-text-button {
  width: 100%;

  border: none;
  border-radius: 11px;

  cursor: pointer;

  font-size: 1rem;
  font-weight: bold;
}

.login-main-button {
  margin-top: 24px;
  padding: 14px;

  background: #ff149f;
  color: #ffffff;
}

.login-secondary-button {
  margin-top: 12px;
  padding: 14px;

  background: #2a2a2a;
  color: #ffffff;

  border: 1px solid #ff58c3;
}

.login-text-button {
  margin-top: 12px;

  padding: 8px;

  background: transparent;
  color: #ff8fd5;

  text-decoration: underline;
}

.login-main-button:hover,
.login-secondary-button:hover,
.login-text-button:hover {
  filter: brightness(1.12);
}

.login-message {
  min-height: 24px;

  margin: 20px 0 0;

  color: #ff9ddb;

  text-align: center;
  line-height: 1.4;
}

.hidden {
  display: none !important;
}
.login-box {

  display: inline-flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  width: 280px;

  max-width: 90%;

  margin-top: 28px;

  padding: 14px 20px;

  text-decoration: none;

  background: rgba(0, 0, 0, 0.75);

  border: 2px solid #ff1493;

  border-radius: 16px;

  transition: 0.25s;

}

.login-box:hover {

  background: #ff1493;

  transform: scale(1.03);

}

.login-title {

  color: white;

  font-size: 1.2rem;

  font-weight: bold;

}

.login-subtitle {

  color: #ffd4ec;

  font-size: 0.9rem;

  margin-top: 4px;

}
/* =========================
   ADMIN UPLOAD PREVIEWS
========================= */

.admin-upload-item {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.admin-upload-item img,
.upload-preview-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
/* =========================
   PHOTO GALLERY SIZING
========================= */

.photo-gallery {
  display: grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(220px, 1fr)
    );
  gap: 20px;
}

.gallery-photo-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-photo-image-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #111111;
}

.gallery-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* =========================
   VIDEO GALLERY
========================= */

.gallery-video-wrap {
  position: relative;
  width: 100%;
  background: #000000;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.gallery-video-player {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #000000;
}

.gallery-video-watermark {
  position: absolute;
  right: 12px;
  bottom: 52px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 700;
  pointer-events: none;
}

.video-locked {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
  background: #181818;
}

.locked-video-card {
  overflow: hidden;
}
.gallery-video-player:fullscreen {
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-video-player:-webkit-full-screen {
  border: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* =========================
   MERCHANDISE GALLERY
========================= */

.merchandise-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(240px, 1fr)
  );
  gap: 24px;
}

.merchandise-card {
  overflow: hidden;
  border-radius: 18px;
}

.merchandise-image-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.merchandise-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merchandise-information {
  padding: 18px;
}

.merchandise-price {
  display: block;
  margin-top: 12px;
  font-size: 1.25rem;
}

.merchandise-buy-button {
  display: inline-block;
  margin-top: 16px;
}