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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: white;
    background: #030a11;
    overflow-x: hidden;
}


/* =========================================
   EVEREST BACKGROUND
========================================= */

.background {
    position: fixed;
    inset: 0;

    background-image: url("background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -3;

    transform: scale(1.03);

    transition: transform 0.1s linear;
}

.overlay {
    position: fixed;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 10, 17, 0.95) 0%,
            rgba(3, 10, 17, 0.78) 40%,
            rgba(3, 10, 17, 0.42) 72%,
            rgba(3, 10, 17, 0.62) 100%
        );

    z-index: -2;
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: 100%;
    height: 80px;

    padding: 0 6%;

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

    position: fixed;
    top: 0;
    left: 0;

    z-index: 100;

    background: rgba(3, 10, 17, 0.45);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* Logo */

.logo {
    color: white;

    text-decoration: none;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 5px;
}

.logo span {
    color: #35aaff;
}


/* Navigation */

nav {
    display: flex;

    gap: 38px;
}

nav a {
    color: #e8f5ff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s;
}

nav a:hover {
    color: #ffad83;
}

nav a.active {
    color: #ffad83;
}


/* Let's Talk Button */

.nav-button {
    text-decoration: none;

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.6);

    padding: 11px 20px;

    border-radius: 30px;

    font-size: 14px;

    transition: 0.3s;
}

.nav-button:hover {
    background: white;

    color: #071019;

    transform: translateY(-2px);
}


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

.hero {
    min-height: 100vh;

    padding: 150px 8% 100px;

    position: relative;

    display: flex;

    align-items: center;
}

.hero-content {
    max-width: 720px;

    position: relative;

    z-index: 5;
}


/* Greeting */

.hello {
    font-size: 14px;

    letter-spacing: 5px;

    color: #b8dfff;

    margin-bottom: 12px;
}


/* Name */

.hero h1 {
    font-size: clamp(60px, 8vw, 110px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -5px;

    margin-bottom: 25px;
}

.hero h1 span {
    color: #35aaff;

    text-shadow:
        0 0 20px rgba(53, 170, 255, 0.35);
}


/* =========================================
   TAGLINE
========================================= */

.tagline {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

.code-symbol {
    font-size: 30px;

    color: #ffad83;

    font-weight: 700;
}

.tagline p {
    font-size: 23px;

    font-style: italic;

    color: white;
}

.tagline strong {
    color: #ffad83;
}


/* =========================================
   DESCRIPTION
========================================= */

.description {
    max-width: 600px;

    color: #c9e2f5;

    line-height: 1.7;

    font-size: 16px;

    margin-bottom: 30px;
}


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

.social-links {
    display: flex;
    gap: 22px;
    margin-bottom: 25px;

    position: relative;
    z-index: 50;
}

.social-links a {
    text-decoration: none;
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-size: 13px;

    position: relative;
    z-index: 100;

    cursor: pointer;
    pointer-events: auto;

    transition: 0.3s;
}

.social-links i {
    width: 48px;
    height: 48px;

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

    border: 1px solid #168cff;
    border-radius: 14px;

    font-size: 22px;

    background: rgba(0, 20, 40, 0.6);

    transition: 0.3s;

    pointer-events: none;
}

.social-links a:hover {
    color: #35aaff;
}

.social-links a:hover i {
    transform: translateY(-5px);

    box-shadow:
        0 0 20px rgba(0, 157, 255, 0.6);
}


/* =========================================
   EMAIL
========================================= */

.email {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 30px;

    font-size: 16px;
}

.email i {
    color: #28a9ff;

    font-size: 24px;
}

.email a {
    color: white;

    text-decoration: none;

    transition: 0.3s;
}

.email a:hover {
    color: #35aaff;
}


/* =========================================
   HERO BUTTON
========================================= */

.hero-buttons {
    display: flex;

    gap: 22px;
}

.primary-button {
    text-decoration: none;

    padding: 16px 27px;

    border-radius: 35px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-weight: 600;

    background:
        linear-gradient(
            90deg,
            #087cff,
            #13a8ff
        );

    color: white;

    box-shadow:
        0 0 25px rgba(0, 140, 255, 0.45);

    transition: 0.3s;
}

.primary-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 35px rgba(0, 140, 255, 0.75);
}


/* =========================================
   CONTACT
========================================= */

.contact {
    min-height: 70vh;

    padding: 140px 8%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: rgba(3, 10, 17, 0.5);
}

.contact-section {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.contact-section.show {
    opacity: 1;

    transform: translateY(0);
}

.contact-section > p {
    color: #55b8ff;

    letter-spacing: 5px;

    font-size: 12px;

    margin-bottom: 20px;
}

.contact-section h2 {
    font-size: clamp(40px, 6vw, 75px);

    line-height: 1.1;

    margin-bottom: 35px;
}

.contact-section h2 span {
    display: block;

    color: #ffad83;
}


/* Contact Button */

.contact-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 30px;

    border-radius: 30px;

    background: #078eff;

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;
}

.contact-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 30px rgba(0, 140, 255, 0.6);
}


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

footer {
    padding: 25px 6%;

    border-top:
        1px solid rgba(255, 255, 255, 0.2);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #aac6da;

    font-size: 13px;

    background: rgba(0, 10, 20, 0.8);
}

footer a {
    color: white;

    text-decoration: none;

    transition: 0.3s;
}

footer a:hover {
    color: #ffad83;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .navbar {
        padding: 0 5%;
    }

    .hero {
        padding: 130px 7% 80px;

        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 65px;

        letter-spacing: -3px;
    }

    .tagline p {
        font-size: 18px;
    }

    .contact {
        padding: 110px 7%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .nav-button {
        display: none;
    }

    .hero {
        padding-left: 6%;

        padding-right: 6%;
    }

    .hero h1 {
        font-size: 52px;
    }

    .tagline {
        align-items: flex-start;
    }

    .tagline p {
        font-size: 16px;
    }

    .description {
        font-size: 14px;

        line-height: 1.7;
    }

    .social-links {
        gap: 12px;
    }

    .social-links i {
        width: 43px;

        height: 43px;

        font-size: 19px;
    }

    .hero-buttons {
        width: 100%;
    }

    .primary-button {
        justify-content: center;

        width: 100%;
    }

    .contact {
        padding-left: 6%;

        padding-right: 6%;
    }

    footer {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }
}