@charset "UTF-8";
/* CSS Document */
 @font-face {
      font-family: 'Agamtoh';
      src: url('fonts/Agamtoh.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: optima;
    }
    button {font-size: 1.5em;}
    p {font-size: 1.6em;}

    h1, .rubik{
      font-family: "Rubik Distressed", system-ui;
      font-weight: 400;
      font-style: normal;
    } 
    h2, h3, .about-box h3, .fredericka{
      font-family: "Fredericka the Great", serif;
      font-weight: 400;
      font-style: normal;
      color:#FFCAFF;
}
.about-box h2 {margin-bottom: 15px; font-size: 3rem;}
.about-box h3 {margin-top: 25px; margin-bottom: 10px;}

    h2.rubik{color:#D400FF;}
    h3.yellow, .yellow{
      color:#FFD45F; 
      font-family: "Rubik Distressed", system-ui;
      text-align: center;
  }
    h3 {font-size: 3rem; margin-bottom: 30px;}

    body {
      background: linear-gradient(135deg, #12002f, #3b0764, #7f1d1d);
      color: white;
      min-height: 100vh;
    }

    header {
      position: sticky;
      top: 0;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(10px);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .logo h1 {
      font-family: 'Agamtoh', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: black;
      -webkit-text-stroke: 1px white; 
      display: inline-block;
      vertical-align: middle;
    }

    .logo img {
      display: inline-block;
      vertical-align: middle;
      padding-top: 20px;
      margin-left: 10px;
      width: 100px; 
      height: auto;
    }

    .logo p.desktop-subtitle {
      color: gold;
      font-family: "Rubik Distressed", system-ui;
      font-size: 2.5rem;
      margin-top: 5px; 
    }

    .hamburger {
      display: none;
      background: transparent;
      border: none;
      color: white;
      font-size: 2.5rem;
      cursor: pointer;
    }

    nav {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    nav button {
      padding: 10px 20px;
      border: none;
      border-radius: 12px;
      background: rgba(255,255,255,0.1);
      color: white;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    nav button.active,
    nav button:hover {
      background: #7e22ce;
    }

    .hero {
      min-height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px 20px 60px;
    }

    .mobile-subtitle {
      display: none;
    }

    .hero-banner {
      width: 100%;
      max-width: 1400px;
      border-radius: 25px;
      overflow: hidden;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .hero-banner img {
      width: 100%;
      display: block;
    }

    .hero-content h2 {
      font-size: 4rem;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: #F1D4FD;
    }

    .hero-content p {
      font-size: 1.4rem;
      max-width: 900px;
      margin: auto;
      color: #ddd;
    }

    .hero-buttons {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-buttons button {
      padding: 15px 30px;
      border-radius: 15px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
      border: 2px solid transparent; 
    }

    .primary-btn {
      background: gold;
      color: black;
    }
    .primary-btn:hover {
      background: #D400FF;
      border: 2px solid white;
      color: white;
    }

    .secondary-btn {
      background: gold;
      color: black;
    }

    .secondary-btn:hover {
      background: #D400FF;
      border: 2px solid white;
      color: white;
    }

    main {
      padding: 60px 40px;
      max-width: 1400px;
      margin: auto;
    }

    .hidden {
      display: none;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .card {
      background: rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-8px);
    }

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

    .card-content {
      padding: 20px;
    }

    .card-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .card-content p {
      color: #ddd;
      margin-bottom: 15px;
    }

    .price-source {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price-source span {
      color: gold;
      font-weight: bold;
    }

    .price-source a {
      color: white;
      text-decoration: underline;
    }

    /* About Box structural framework configuration */
    .about-box,
    .contact-box {
      background: rgba(255,255,255,0.08);
      padding: 40px;
      border-radius: 25px;
      line-height: 1.8;
      display: block;      /* Ensures natural layout block behavior for float elements */
      overflow: hidden;    /* Modern native clearfix hack to stretch background around floats */
    }

    /* Custom layout rule mapping to the About page profile image */
    .about-avatar {
      float: left;         /* Commands text blocks to dynamically wrap around the right side */
      margin-right: 35px;  /* Spacing buffer between image edge and typography */
      margin-bottom: 20px; /* Spacing below the graphic container */
      max-width: 320px;    /* Locks the physical size scaling footprint */
      width: 100%;
      height: auto;
      border-radius: 20px; /* Aligns visually with your content card corner styles */
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    .contact-box h2,
    .gallery-header h2 {
      font-size: 3rem;
      margin-bottom: 30px;
    }

    .gallery-header {
      margin-bottom: 30px;
    }

    .gallery-header input {
      width: 100%;
      max-width: 400px;
      padding: 15px;
      border-radius: 15px;
      border: none;
      background: rgba(255,255,255,0.1);
      color: white;
      margin-top: 15px;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 20px;
      border: none;
      border-radius: 15px;
      background: rgba(255,255,255,0.1);
      color: white;
    }

    form button {
      padding: 15px 30px;
      background: gold;
      border: none;
      color: black;
      font-weight: bold;
      border-radius: 15px;
      cursor: pointer;
    }

    .external-links {
      margin-top: 30px;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .external-links a {
      padding: 12px 20px;
      border-radius: 12px;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .etsy { background: #7e22ce; }
    .redbubble { background: #b91c1c; }
    .printify { background: #1d4ed8; }
    .statement {text-align: center; color:#F1D4FD; margin-bottom: 50px; font-size: 3.5rem;}

    footer {
      text-align: center;
      padding: 40px 30px;
      background: rgba(0,0,0,0.6);
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
    }

    /* Footer Navigation Styles */
    .footer-nav {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 25px;
      flex-wrap: wrap;
    }

    .footer-nav button {
      background: none;
      border: none;
      color: gold;
      font-size: 1.2rem;
      cursor: pointer;
      font-family: optima;
      transition: color 0.3s;
    }

    .footer-nav button:hover {
      color: #F1D4FD;
    }

    /* Social Icon Styles */
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .social-icons a {
      color: white;
      font-size: 2rem;
      text-decoration: none;
      transition: color 0.3s, transform 0.3s;
    }

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

    /* Responsive adjustments for viewport widths under 1150px */
    @media(max-width: 1150px) {
      header {
        position: relative;
        justify-content: center; 
        padding: 20px;
      }
      
      .logo {
        text-align: center;
      }

      .desktop-subtitle {
        display: none; 
      }

      .hamburger {
        display: block;
        position: absolute;
        right: 25px; 
        top: 25px; 
        right: 20px;
      }

      nav {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.85); 
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.6);
      }

      nav.open {
        display: flex; 
      }

      .mobile-subtitle {
        display: block;
        color: gold;
        font-family: "Rubik Distressed", system-ui;
        font-size: 2.5rem;
        margin-bottom: 30px;
        text-align: center;
      }

      .hero-content h2 {
        font-size: 2.5rem;
      }

      h3 {
        text-align: center;
      }
    }

    /* Mobile viewports: strips float behaviors to keep text easy to read */
    @media(max-width: 768px) {
      .about-avatar {
        float: none;         /* Disables horizontal wrapping mechanics on small screens */
        display: block;
        margin: 0 auto 25px auto; /* Centers the graphic dynamically above text layouts */
        max-width: 100%;     /* Seamlessly scales file boundaries fluidly */
      }
    }

/* Back to Top Button Styles */
    #backToTopBtn {
      position: fixed; 
      bottom: 30px; 
      right: 30px; 
      z-index: 1000; 
      background: gold;
      color: black;
      border: 2px solid transparent;
      outline: none;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 50%; 
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
      transition: background-color 0.3s, color 0.3s, transform 0.3s, border 0.3s;
      display: flex; 
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none; 
    }

    #backToTopBtn.show {
      opacity: 1;
      pointer-events: auto;
    }

    #backToTopBtn:hover {
      background: #D400FF;
      color: white;
      border: 2px solid white;
      transform: translateY(-5px);
    }
    
    @media(max-width: 1000px) {
      #backToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
      }
    }

/* Gallery Storefront Logo Layout — Expanded Width */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2, h3 {
  font-size: 2.5rem;
  margin-bottom: 35px;
  padding: 0 15px;
  /*color: #bc2df7;*/
}

.gallery-header img {
  display: inline-block;
  vertical-align: middle;
  height: 85px;       
  width: auto;         
  margin: 0 35px;      
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-header img[src*="fist-logo"] {
  height: 105px;      
}

.gallery-header img:hover {
  transform: scale(1.08);
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-header img {
    height: 55px;
    margin: 0 15px;
  }
  .gallery-header img[src*="fist-logo"] {
    height: 70px;
  }
}

/* DETAILS PAGE SPECIFIC STYLES */
.media-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 25px;
}

.media-image, .media-video {
  flex: 1;
  min-width: 300px;
}

.media-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.series-description-box {
  text-align: center;
  margin: 50px auto;
  max-width: 1000px;
}

.series-description-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
  margin-top: 15px;
}

.card-store-links {
  display: flex;
  justify-content: center;
  align-items: middle;
  gap: 15px;
  margin-top: 15px;
  padding: 10px 5px 5px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.card-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.card-store-btn img {
  height: 25px; 
  width: auto !important;
  display: block;
}

.card-store-btn img[src*="fist-logo"] {
  height: 30px;
}

.card-store-btn:hover {
  transform: scale(1.15); 
}
/* =========================================
   CONTACT MODULE SYSTEM — COMP V45 SPECIFIC
   ========================================= */

.contact-section-title {
  text-align: center;
  font-family: "Rubik Distressed", system-ui;
  color: #D400FF; /* High contrast vibrant purple title element */
  font-size: 3.5rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* Overwrite generic box rules to mirror custom rounded container layout */
.contact-box {
  background: #34255c !important; /* Deep solid purple core container */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 45px 40px;
  border-radius: 15px; /* Matched card boundary profile */
  max-width: 850px;
  margin: 0 auto 50px auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex; /* Aligns left form column and right emblem inline */
  gap: 40px;
  align-items: flex-start;
}

/* Left structural control container mapping */
.contact-box form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Individual data entry rows */
.form-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-group label {
  font-family: optima, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  color: #ffffff;
  width: 90px; /* Locks label bounds to cleanly square up input fields vertically */
  text-align: left;
}

/* Specific positioning framework layout adjustments for message box row */
.msg-group {
  align-items: flex-start;
}
.msg-group label {
  padding-top: 10px;
}

/* Stylized input frames directly from image mockup */
.contact-box form input,
.contact-box form textarea {
  flex: 1;
  background: #251a44 !important; /* Secondary darker purple inset fill */
  border: 2px solid #1a1233 !important; /* Structural mask shadows */
  border-radius: 12px;
  padding: 12px 18px;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: optima, sans-serif;
  margin-bottom: 0 !important; /* Eliminates legacy global overrides */
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
  transition: border-color 0.3s;
}

.contact-box form input:focus,
.contact-box form textarea:focus {
  outline: none;
  border-color: #7e22ce !important;
}

/* Aligns the submit wrapper action to the bottom right zone */
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* Inset styled flat dark purple submit controller button block */
.contact-submit-btn {
  background: #251a44;
  color: #ffffff;
  border: 2px solid #1a1233;
  padding: 10px 35px;
  font-size: 1.3rem;
  font-family: optima, sans-serif;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: background 0.3s, transform 0.2s;
}

.contact-submit-btn:hover {
  background: #7e22ce;
  transform: translateY(-2px);
}

/* Right Column decorative brand item placement rules */
.contact-branding-badge {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}

.contact-branding-badge img {
  width: 100%;
  max-width: 190px; /* Constrains graphic boundary proportions */
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}

/* Clean collapsing rules engine responsive handler setup */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column-reverse; /* Drops image element cleanly below form layout grids */
    gap: 30px;
    padding: 30px 20px;
  }
  
  /* Updated Mobile Contact Form: Longer Width & Centered */
  .form-group {
    flex-direction: column;
    align-items: stretch; /* Forces the inputs to stretch the full horizontal length */
    gap: 10px;
    width: 100%;
  }
  
  .form-group label {
    width: 100%;
    text-align: center; /* Centers the label text above the box */
  }
  
  .contact-box form input,
  .contact-box form textarea {
    width: 100%;
    padding: 18px 22px; /* Keeps the tap target comfortable */
    font-size: 1.4rem;  /* Keeps the text legible on small screens */
    text-align: center; /* Centers the cursor and typed text inside the box */
  }
  .form-actions {
    justify-content: center; /* Centers button control items on small devices */
  }
  
  .contact-branding-badge img {
    max-width: 140px;
  }
}

.about-video-header{text-align: center; margin: 50px 0 5px 0;}
/* Mobile Typography Scaling for About Video Header */
@media (max-width: 768px) {
  .about-video-header h2 {
    font-size: 2.2rem; /* Scales down from the desktop size */
    margin-bottom: 10px;
  }
  
  .about-video-header h3 {
    font-size: 1.6rem; /* Keeps the hierarchy visually balanced */
    margin-bottom: 15px;
  }
  
  .about-video-header h4 {
    font-size: 1.2rem; 
  }
}

/* Prevent layout overlaps on narrow mobile screens (480px - 589px) */
@media (max-width: 650px) {
  /* 1. Prevent the logo from crashing into the hamburger menu */
  .logo {
    padding-right: 45px; /* Creates a safe zone for the hamburger icon */
  }

  .logo h1 {
    font-size: 2rem; /* Scales down the title slightly */
  }
  
  .logo img {
    width: 75px; /* Scales down the header image */
    padding-top: 10px;
  }

  /* 2. Prevent the gallery storefront logos from overlapping */
  .gallery-header img {
    height: 40px;
    margin: 0 10px;
  }
  
  .gallery-header img[src*="fist-logo"] {
    height: 55px;
  }
}