@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

/* ======================================================
   RESET + GLOBAL LOCK
====================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 🔒 NO SCROLL */
}

/* ======================================================
   BASE
====================================================== */

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    color: rgba(0, 0, 0, 0.85);
    background: #fff;
}

/* ======================================================
   LINKS
====================================================== */

a,
a:visited,
a:hover,
a:active {
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
}

/* ======================================================
   HEADER
====================================================== */

.header {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo img {
    height: 120px;
    width: auto;
    display: block;
}

.header__menu-left,
.header__menu-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    font-size: 9pt;
    line-height: 1rem;
    font-weight: 500;
}

.header__menu-left {
    left: 25px;
}

.header__menu-right {
    right: 25px;
    text-align: right;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ======================================================
   MAIN — FIXED VIEWPORT CANVAS
====================================================== */

main {
    position: relative;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* ======================================================
   ABOUT CONTENT (CENTERED, NON-SCROLLING)
====================================================== */

.about {
    max-width: 1000px;
    padding: 0 1rem;
  margin-top: 5rem;

    text-align: center;

    /* visually center content block */
    transform: translateY(40px);
}

.about-1,
.about-2,
.about-3 {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;

    margin-bottom: 1.5rem;
}

.about-3 {
    font-weight: 600;
    margin-top: 2.5rem;
}

/* ======================================================
   MOBILE (STILL NO SCROLL)
====================================================== */

@media (max-width: 768px) {
    .header {
        top: 30px;
        height: 100px;
    }

    .header__logo img {
        height: 80px;
    }

    .header__menu-left,
    .header__menu-right {
        font-size: 7pt;
    }

    .about {
        max-width: 90%;
        transform: translateY(20px);
    }

    .about-1,
    .about-2,
    .about-3 {
        font-size: 0.85rem;
    }
}
