@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed&display=swap');
@font-face {
  font-family: "The Bold Font Pro";
  src: url("THEBOLDFONT-PRO.woff") format("woff");
}

:root {
  --yellow: #ffd400;
  --pink: #ff7fb4;
  --black: #0e0e0e;
  --charcoal: #171717;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 50px),
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 50px),
    var(--black);
  color: var(--white);
  font-family: "Barlow Semi Condensed", sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 100;
}
.page-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, height 0.25s ease;
}
.page-dots .dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  height: 24px;
}

.scroll-container {
  flex: 1 1 auto;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.snap-section {
  height: 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  box-sizing: border-box;
}

.scroll-hint {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--yellow);
  font-size: 20px;
  animation: bounce 1.6s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}
img {
  padding-bottom: 25px;
}
.topnav {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #232323;
}

.topnav-name {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.hero {
  position: relative;
  padding: 56px 20px 40px;
  text-align: center;
  overflow: hidden;
}

h1 {
  font-family: "The Bold Font Pro", sans-serif;
  font-weight: 500;
  color: var(--yellow);
  font-size: 55px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.tagline {
  color: #c9c9c9;
  font-size: 18px;
  max-width: 360px;
  margin: 0 auto;
  font-weight: 400;
}

.content {
  max-width: 460px;
  margin: 0 auto;
  padding: 32px 20px 0;
}

.section-label {
  font-family: "The Bold Font Pro", sans-serif;
  color: var(--pink);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 28px 0 12px 4px;
}

.section-label:first-child {
  margin-top: 0;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: var(--none);
  opacity: 1;
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;

  font-weight: 600;
  font-size: 12px;
  font-family: "Barlow Semi Condensed", sans-serif;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
  border: 2px solid transparent;
}
blockquote {
  margin: .5em .5em .5em 2em;          
  padding: 1em 1em;     
  border-left: 5px solid #ff7fb4; 
  font-style: italic;       

}

.link-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Barlow Semi Condensed", sans-serif;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
  border: 2px solid transparent;
}

.link-btn:hover {
  transform: translateY(-2px) scale(1.01);
  background: var(--yellow);
}

.link-btn i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.link-btn .sub {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #555;
  margin-top: 1px;
}

.link-btn:hover .sub {
  color: #333;
}

.link-btn .label-wrap {
  flex: 1;
  text-align: left;
}

.link-btn .arrow {
  color: #999;
  font-size: 13px;
}

.link-btn.outline {
  background: black;
  color: var(--white);
  border: 2px solid var(--white);
}

.link-btn.outline:hover {
  background: var(--white);
  color: var(--black);
}

.link-btn.outline .sub {
  color: #aaa;
}

.link-btn.outline:hover .sub {
  color: #555;
}

.link-btn.outline .arrow {
  color: #777;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  font-size: 13px;
  color: #c9c9c9;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--charcoal);
  border: 2px solid #2c2c2c;
  border-radius: 14px;
  color: var(--white);
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

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

.contact-form button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Barlow Semi Condensed", sans-serif;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px) scale(1.01);
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.contact-success {
  display: none;
  text-align: center;
  color: var(--yellow);
  font-size: 16px;
}

.contact-success i {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}