@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

@font-face {
    font-family: CircularStd;
    src: url(assets/fonts/CircularStd-Bold.eot);
    src: url("assets/fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"),
         url("assets/fonts/CircularStd-Bold.woff") format("woff"),
         url("assets/fonts/CircularStd-Bold.ttf") format("truetype"),
         url("assets/fonts/CircularStd-Bold.svg#bcc26993292869431e54c666aafa8fcd") format("svg");
}

:root {
    --light-text-color: #444;
    --black-color: #000;
    --white-color: #fff;
    --hero-color: black;
}

/* ===== GLOBAL RESET ===== */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* 🔥 paslepia scroll */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-text-color);
    display: flex;
    flex-direction: column;
}

/* ===== HERO SECTION ===== */

#index-body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-tag {
    margin-top: 10vh;
    text-align: left;
    font-size: 4em;
    font-weight: bold;
    color: var(--hero-color);
    font-family: 'CircularStd', sans-serif;
}

.hero-des {
    padding-right: 60px;
    text-align: justify;
}

#left-hero {
    padding-left: 150px;
}

#hero-img {
    margin-top: 50px;
    width: 90%;
}

/* ===== BUTTONS ===== */

.learn-btn {
    padding: 5px 12px;
    background: var(--light-text-color);
    color: white;
    border: 2px solid var(--light-text-color);
    transition: 0.3s;
}

.learn-btn:hover {
    background: blue;
    border: 2px solid blue;
}

.contact-btn {
    margin-left: 6px;
    padding: 5px 12px;
    background: none;
    border: 2px solid var(--light-text-color);
    transition: 0.3s;
}

.contact-btn:hover {
    border: 2px solid blue;
    color: blue;
}

/* ===== NAV ===== */

.nav-desk {
    height: 8vh;
    width: 80vw;
    margin: 20px auto 0 auto;
}

/* ===== FOOTER ===== */

.footer-full {
    width: 80vw;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 0.85em;
}

.footer-credits {
    float: right;
}

.footer-credits a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.footer-credits a:hover {
    color: blue;
}

.legal-links {
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.legal-links:hover {
    color: blue;
}

/* ===== RESPONSIVE ===== */

@media only screen and (max-width: 768px) {

    html, body {
        overflow: hidden;
    }

    #left-hero {
        padding-left: 40px;
    }

    .hero-tag {
        font-size: 3em;
        margin-top: 8vh;
    }

    #hero-right {
        display: none;
    }

    .hero-des {
        padding-right: 30px;
    }

    .footer-full {
        text-align: center;
        font-size: 0.75em;
    }

    .footer-credits {
        float: none;
        margin-top: 10px;
    }
}

/* ===== SCROLLBAR HIDE (extra safety) ===== */

::-webkit-scrollbar {
    display: none;
}
