/* =========================
   Header / Navigation
========================= */

.site-header {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Orbitron", monospace;
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.divider {
  display: block;
  margin: 4rem auto;
  max-width: 20%;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
}

/* =========================
   Hero
========================= */

.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        radial-gradient(circle at center, rgba(56, 207, 233, 0.15), transparent 70%);
}

.hero-content {
    max-width: 700px;
    margin: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-logo {
    width: 600px;
    max-width: 30%;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.hero p {
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    line-height: 1.4;
}


.hero-logo {
    width: 600px;
    max-width: 30%;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
}

@media (max-width: 800px) {
    .hero p {
        transform: scale(0.9);
    }
}

@media (max-width: 500px) {
    .hero p {
        transform: scale(0.8);
    }
}

/* =========================
   Buttons
========================= */

.button-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;

    background: linear-gradient(90deg, #38cfe9, #38e9c3);
    color: #0b0e14;

    font-weight: bold;
    text-shadow: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56, 233, 195, 0.4);
    color: #ffffff;
}


/* =========================
   Sections
========================= */

.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.section h2 {
    font-size: xx-large;
}

/* =========================
   Footer
========================= */

.site-footer {
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}