/* ============================================================
   FIGHT FOR PRIDE — Stylesheet
   ============================================================ */

:root {
  --black: #111;
  --white: #f5f5f5;
  --rainbow-start: #ff6eb4;
  --rainbow-mid: #ffe066;
  --rainbow-end: #66e0c8;
  --accent: #ff6eb4;
  --text-muted: #aaa;
  --form-bg: #1a1a1a;
  --input-bg: #222;
  --input-border: #333;
  --radius: 8px;
  --max-width: 860px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* ---- NAV ---- */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid #222;
}

.brand {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--rainbow-start), var(--rainbow-mid), var(--rainbow-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: color 0.2s;
}

.lang-btn.active {
  color: var(--white);
}

.lang-btn:hover {
  color: var(--white);
}

/* ---- HERO ---- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.pride-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--rainbow-start), var(--rainbow-mid), var(--rainbow-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--rainbow-end);
  margin-bottom: 0.75rem;
}

.sub {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--rainbow-start), var(--rainbow-mid), var(--rainbow-end));
  color: #111;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--rainbow-end);
  color: var(--rainbow-end);
}

/* ---- SHIRT SECTION ---- */

.shirt-section {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.shirt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .shirt-grid {
    grid-template-columns: 1fr;
  }
}

.shirt-card img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #222;
}

.shirt-label {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shirt-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---- ABOUT ---- */

.about-section {
  background: #161616;
  padding: 4rem 2rem;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-inner h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, var(--rainbow-start), var(--rainbow-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-inner p {
  color: #ccc;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hashtags {
  color: var(--rainbow-end) !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---- FORM SECTION ---- */

.form-section {
  padding: 4rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.form-inner h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.03em;
}

input, select, textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rainbow-end);
}

select option {
  background: #222;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

form .btn-primary {
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 0.5rem;
}

.success-msg {
  color: var(--rainbow-end);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  padding: 2rem;
}

/* ---- BUY NOW ---- */

.buynow-section {
  background: #161616;
  padding: 4rem 2rem;
  text-align: center;
}

.buynow-inner {
  max-width: 500px;
  margin: 0 auto;
}

.buynow-inner h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.buynow-inner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ---- FOOTER ---- */

footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid #222;
  background: #0a0a0a;
}

.brand-footer {
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--rainbow-start), var(--rainbow-mid), var(--rainbow-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-hashtags {
  color: #555;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--rainbow-end);
  text-decoration: none;
}
