/* === BASE STYLES === */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

a {
  color: #f92c85;
  text-decoration: none;
}

ul, ol {
  padding-left: 1.5rem;
}

/* === NAVIGATION === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  color: #f92c85;
  padding: 1rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.brand {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-buttons a {
  margin-left: 1.5rem;
  font-weight: bold;
}

.nav-buttons a:hover {
  color: #fff;
}

/* === HERO SECTION === */
.hero {
  background: url('hero-glam.png') center center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  padding: 2rem;
  margin-top: 70px;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  max-width: 500px;
  border-left: 5px solid #f92c85;
}

.hero h2 {
  font-size: 2.5rem;
  color: #f92c85;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero button {
  background-color: #f92c85;
  color: white;
  border: none;
  padding: 1rem 2rem;
  margin-right: 1rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #c81f67;
}

/* === SECTION STYLES === */
.section {
  padding: 4rem 2rem;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-top: 1px solid #333;
}

.section h3 {
  color: #f92c85;
  font-size: 1.6rem;
  text-align: center;
  border-bottom: 2px solid #f92c85;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.section ul li, .section ol li {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

/* === HOW TO APPLY IMAGE === */
.howto-image img {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 2rem auto;
  border: 2px solid #f92c85;
  border-radius: 8px;
}

/* === FOOTER === */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 2rem;
  background-color: #000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 3rem 1rem;
  }

  .hero-overlay {
    max-width: 100%;
    padding: 1.5rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .nav-buttons a {
    margin: 0.5rem 0;
  }
}
/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.75);
}

.modal-content {
  background: #111;
  margin: 10% auto;
  padding: 2rem;
  border: 2px solid #ff2e88;
  width: 90%;
  max-width: 500px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255,46,136,0.5);
}

.modal-content h2 {
  color: #ff2e88;
  margin-bottom: 1rem;
}

.modal-content .join-button {
  background: #ff2e88;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

.close {
  color: #fff;
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Background effect: raining hearts diagonally */
.hearts {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.heart {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255, 105, 180, 0.3); /* hot pink transparent */
  animation: rainDiagonal 10s linear infinite;
}

@keyframes rainDiagonal {
  0% {
    transform: translate(100vw, -10vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(-10vw, 110vh) rotate(720deg);
    opacity: 0;
  }
}

/* Login Page Layout */
body.login-page {
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  font-family: 'Helvetica Neue', sans-serif;
  position: relative;
}

.login-card {
  background: #111;
  border: 3px solid;
  border-image: linear-gradient(135deg, #ff2e88, #ff99cc) 1;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.6);
  width: 90%;
  max-width: 400px;
}

.login-card h2 {
  margin-bottom: 0.5rem;
  color: #ff2e88;
}

.login-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.login-card input {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid #ff2e88;
  border-radius: 6px;
  background-color: #222;
  color: white;
  font-size: 1rem;
}

.login-card button {
  background: #ff2e88;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-card button:hover {
  background: #cc1c67;
}

.forgot {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #999;
  text-decoration: underline;
}
body.login-page {
  margin: 0;
  background-color: #1a1a1a;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

canvas#heartsCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.login-card {
  background: #111;
  border: 3px solid;
  border-image: linear-gradient(135deg, #ff2e88, #ff99cc) 1;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 46, 136, 0.6);
  width: 90%;
  max-width: 400px;
  position: relative;
}

.login-card h2 {
  margin-bottom: 0.5rem;
  color: #ff2e88;
}

.login-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.login-card input {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid #ff2e88;
  border-radius: 6px;
  background-color: #222;
  color: white;
  font-size: 1rem;
}

.login-card button {
  background: #ff2e88;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.login-card button:hover {
  background: #cc1c67;
}

.forgot {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #999;
  text-decoration: underline;
}
.section.how {
  background: linear-gradient(to bottom right, #1a1a1a, #330d1a);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', sans-serif;
}

.section.how::before {
  content: '💋';
  font-size: 150px;
  color: rgba(255, 20, 147, 0.03);
  position: absolute;
  top: 10%;
  left: 5%;
  transform: rotate(-30deg);
}

.section.how::after {
  content: '🔥';
  font-size: 130px;
  color: rgba(255, 20, 147, 0.03);
  position: absolute;
  bottom: 5%;
  right: 5%;
  transform: rotate(15deg);
}

.section.how h3 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px #ff69b4;
}

.intro-hook {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ffccd5;
  line-height: 1.6;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

.step {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 46, 136, 0.4);
  text-align: center;
  position: relative;
}

.step-img {
  max-width: 220px;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 46, 136, 0.3);
}

.step h4 {
  color: #ff2e88;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #ccc;
  font-size: 1rem;
}
.email-signup {
  background: linear-gradient(135deg, #1a1a1a, #111);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid #333;
}

.signup-form {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.signup-form input[type="email"] {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  width: 250px;
  max-width: 80%;
}

.signup-form button {
  background-color: #ff2e88;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-form button:hover {
  background-color: #e02478;
}
/* === HERO (supports <h1>) === */
.hero h1 {
  font-size: 2.5rem;
  color: #f92c85;
  margin-bottom: 1rem;
}
.hero .hero-cta { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1rem; }
.hero .secondary { background:transparent; border:1px solid #f92c85; }
.trust-bullets { display:flex; gap:.5rem; flex-wrap:wrap; margin:1rem 0 0; padding:0; list-style:none; opacity:.9; }
.trust-bullets li { padding:.25rem .6rem; border:1px solid #333; border-radius:999px; font-size:.9rem; color:#ddd; }

/* === GALLERY / PANEL === */
.card.art.panel { padding: 2rem 1rem; border-top: 1px solid #333; background: linear-gradient(145deg,#1a1a1a,#111); }
.logo-title { color:#f92c85; text-align:center; font-size:2rem; margin:0 0 1rem; letter-spacing:.5px; }
.logo-title .cap { font-weight:800; }
.hg-desc .sub { color:#ffccd5; margin:.5rem 0 1rem; text-align:center; }
.hg-desc .list { max-width:900px; margin:0 auto 1.25rem; color:#ccc; }
.gallery { display:grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:12px; }
.gallery .thumb { position:relative; display:block; border:1px solid #2a2a2a; border-radius:8px; overflow:hidden; background:#000; }
.gallery img { width:100%; height:100%; object-fit:cover; display:block; }
.gallery .thumb.broken { opacity:.45; }

/* Optional: make hero text more readable on mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
}
.tattoo-img {
  max-width: 150px;       /* make it cute and small */
  height: auto;           /* keep proportions */
  display: block;         /* centers nicely */
  margin: 0 auto;         /* center inside container */
  background: transparent; /* no black background */
}

.gallery .thumb {
  background: none !important; /* kill the default dark background */
  display: inline-block;
  padding: 8px; /* optional: little breathing room */
}
/* Layout rows inside the shaded overlay */
.hero-overlay{
  display: grid;
  gap: clamp(14px, 2.5vw, 28px);
}

/* Top row: two columns (copy | dancer) */
.hero-top{
  display: grid;
  grid-template-columns: 1.2fr .8fr;           /* copy wider than dancer */
  align-items: start;
  gap: clamp(16px, 3vw, 40px);
}

/* Bottom row: stack buttons then bullets */
.hero-actions{
  display: grid;
  gap: clamp(12px, 2vw, 20px);
}

/* Dancer card styles */
.dancer-box{
  background: rgba(10, 6, 7, 0.60);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 32px rgba(255,42,134,.18);
  padding: clamp(8px, 1.8vw, 14px);
  width: 100%;
  max-width: 420px;
  justify-self: end; /* keeps it snug to the right */
}
.dancer-box picture, .dancer-box img{
  display:block; width:100%; height:auto; border-radius:12px;
  filter: drop-shadow(0 0 16px rgba(255,42,134,.35));
}

/* Buttons */
.hero-cta{
  display:flex; gap:12px; flex-wrap:wrap;
}
.hero-cta button{
  background:#ff2a86; color:#100710; border:none; border-radius:999px;
  padding:.9rem 1.25rem; font-weight:800;
  box-shadow:0 0 22px rgba(255,42,134,.35), inset 0 0 10px rgba(255,255,255,.1);
}
.hero-cta .secondary{ background:#ffd9ec; color:#2a0f22; }

/* Mobile: stack text, then dancer, then buttons/bullets */
@media (max-width: 900px){
  .hero-top{
    grid-template-columns: 1fr;      /* stack */
  }
  .dancer-box{
    justify-self: center;            /* center the dancer on mobile */
    max-width: min(420px, 92vw);
  }
}
/* The big shaded container */
.hero-box{
  background: rgba(10, 6, 7, 0.72);  /* semi-transparent black */
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 40px);
  margin: clamp(20px, 5vw, 40px) auto;
  max-width: 1100px;                 /* keeps it neat on wide screens */
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 40px rgba(255,42,134,.18);
}

/* Inside stays grid */
.hero-top{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
  gap: clamp(16px, 3vw, 40px);
  margin-bottom: 20px;
}

.hero-actions{
  display: grid;
  gap: clamp(12px, 2vw, 20px);
}

/* Dancer image box */
.dancer-box{
  background: rgba(0,0,0,0.55);
  border-radius: 16px;
  padding: clamp(10px, 2vw, 16px);
  box-shadow: 0 0 30px rgba(255,42,134,.25);
}
.dancer-box img{
  width: 100%; border-radius: 12px;
}

/* Buttons row */
.hero-cta{
  display:flex; gap:12px; flex-wrap:wrap;
}

/* Mobile: stack everything nicely */
@media (max-width: 900px){
  .hero-top{
    grid-template-columns: 1fr;
  }
  .dancer-box{
    max-width: min(420px, 90vw);
    margin: 0 auto;
  }
}
/* Make the two columns stretch so the left can host the new panel */
.hero-top{ align-items: stretch; }
.hero-copy{ display:flex; flex-direction:column; gap: clamp(12px, 2vw, 20px); }

/* Kit panel */
.kit-preview{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(14px, 2vw, 24px);
  background: rgba(8, 5, 7, .70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 36px rgba(0,0,0,.45), 0 0 28px rgba(255,42,134,.18);
  padding: clamp(12px, 2.2vw, 18px);
  min-height: 260px;              /* fills that empty zone */
}

/* Mailer image */
.kit-media img{
  display:block; width:100%; height:auto; border-radius: 12px;
  box-shadow: 0 0 24px rgba(255,42,134,.22);
}

/* Text side */
.kit-info h3{
  margin:0 0 .4rem; font-size: clamp(1.05rem, 2.3vw, 1.25rem); color:#ffd9ec;
}
.kit-list{
  margin:0 0 .75rem; padding-left: 1.1em; color:#f8eefa;
}
.kit-list li{ margin:.25rem 0; }

.badges{ display:flex; flex-wrap:wrap; gap:8px; }
.badge{
  display:inline-block; padding:.35rem .6rem; font-size:.85rem;
  border-radius:999px; background:rgba(255,255,255,.08); color:#fbefff;
  border:1px solid rgba(255,255,255,.12);
}

/* Mobile: stack image above text */
@media (max-width: 900px){
  .kit-preview{ grid-template-columns: 1fr; }
}
.kit-media img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.howto-images {
  display: flex;
  gap: 20px;          /* space between images */
  justify-content: center; /* center them horizontally */
  flex-wrap: wrap;    /* allows them to stack on smaller screens */
}

.howto-images img {
  max-width: 45%;     /* keep them responsive */
  height: auto;
  border-radius: 8px; /* optional style */
}
