:root {
    --bg: #0b0d10;
    --bg-dark: #07080a;
    --text: #e6e6eb;
    --muted: #a0a0b2;
    --primary-accent: #d8802d;
    --secondary-accent: #7d2dd8;
    --card: #12141a;
}

@font-face {
  font-family: "MorrisRoman"; /* set name */
  src: url(assets/fonts/MorrisRomanBlack.ttf); /* url of the font */
}
@font-face {
  font-family: "UnZialish"; /* set name */
  src: url(assets/fonts/UnZialish.ttf); /* url of the font */
}
@font-face {
  font-family: "BlackChancery"; /* set name */
  src: url(assets/fonts/BlackChancery.ttf); /* url of the font */
}

/* Webkit-based browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;             /* thin scrollbar */
  height: 6px;            /* horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: transparent; /* minimalistic track */
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary-accent); /* purple thumb */
  border-radius: 3px;        /* rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-accent); /* slightly brighter on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;                 /* thin scrollbar */
  scrollbar-color: var(--secondary-accent) transparent; /* thumb and track */
}

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

body {
    font-family: "BlackChancery";
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 13, 16, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Clickable logo container */
.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

/* SVG sizing */
.logo-svg {
    width: 40px;
    height: 40px;
    fill: var(--secondary-accent);
    flex-shrink: 0;
}

/* Text logo */
.logo {
    font-family: "MorrisRoman";
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-accent), var(--secondary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: var(--secondary-accent);
}

.navbar nav a {
    font-family: "MorrisRoman";
    margin-left: 30px;
    text-decoration: none;
    color: var(--text);
    font-size: 1.5rem;
}


/* Buttons */
.btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid var(--secondary-accent);
    color: var(--text);
}

.primary {
    background: var(--secondary-accent);
    border: none;
    color: #fff;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 30px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-accent), transparent 75%);
    opacity: 0.5;
    filter: blur(100px);
}

/* Sections */
.section {
    padding: 120px 80px;
    text-align: center;
}

.section.dark {
    background: var(--bg-dark);
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card h3 {
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    max-width: 600px;
    margin: auto;
}

.step {
    padding: 20px;
    border-left: 3px solid var(--primary-accent);
    margin-bottom: 20px;
    text-align: left;
}

/* About */
.about-text {
    max-width: 700px;
    margin: auto;
    color: var(--muted);
}

/* Contact */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    background: var(--card);
    border: none;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    color: var(--text);
}

/* Footer */
footer {
    padding: 30px;
    text-align: center;
    color: var(--muted);
}


/* Vortex background */
.vortex-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #0b0b0f; /* move background HERE */

  opacity: var(--vortex-opacity, 1);
  transition: opacity 0.25s linear; /* smooth section crossing */
}

.vortex {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.vortex div {
  --i: 0;
  position: absolute;
  width: 40vmin;
  height: 40vmin;
  left: 50%;
  top: 50%;
  transform-origin: center;
  border: 2px solid hsla(calc(var(--i) * 14), 80%, 60%, 0.6);
  box-shadow: 0 0 50px hsla(calc(var(--i) * 14), 80%, 60%, 0.15);
  transform: translate(-50%, -50%);
  animation: vortex 16s linear infinite;
  animation-delay: calc(var(--i) * -0.8s);
}

@keyframes vortex {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0.01);
    opacity: 1.0;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(180deg) scale(2);
    opacity: 0;
  }
}
:root {
  --logo-width: 140px;
  --gap: 80px;
  --duration: 20s;
  --logo-count: 6;
}

.logo-marquee {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

/* Animate the link itself */
.partner-logo {
  position: absolute;
  top: 50%;
  left: 100%; /* start off-screen right */
  width: var(--logo-width);
  transform: translateY(-50%);
  animation: moveLogo var(--duration) linear infinite;
  animation-delay: calc(var(--i) * (var(--duration) / var(--logo-count)));
  display: block;
}

.partner-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Move each logo from right to left */
@keyframes moveLogo {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(calc(-100% - var(--logo-width) * 10)) translateY(-50%); /*Change VW with % cuz errors when resizing*/
  }
}

/* Optional: slow down on hover */
.logo-marquee:hover .partner-logo {
  animation-play-state: paused;
}
