@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Poppins";
}
:root {
    --bg-color: #080808;
    --second-bg-color: #101010;
    --text-color: white;
    --main-color: #ea580c;
}
html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);  
}

#menu-icon {
    font-size: 3.5rem;
    color: var(--main-color);
    display: none;
    position: absolute;
    right: 20px;  /* Align the hamburger icon to the right */
}

.logo {
    cursor: pointer;
    transition: 0.3s ease-in-out;
    margin-right: 0;
    padding-right: 0;
}

.logo:hover {
    transform: scale(1.1);
}
span {
    background: linear-gradient(270deg, #df8908 10%, #ff1d15 100%);
    background-clip: text;
    color: transparent;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: var(--bg-color);
    z-index: 1000;
}

.center-nav {
    flex-grow: 1;
    text-align: center;
}

.navbar {
    display: inline-block;
    padding: 9px;
    margin: 9px;
}

.navbar a {
    font-size: 1.6rem;
    font-size: large;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px 20px;
    vertical-align: middle;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.navbar a:not(:last-child)::after {
    content: "|";
    position: absolute;
    color: var(--text-color);
    padding-left: 18px;
}

.navbar a:hover {
    background: var(--second-bg-color);
    color: whitesmoke;
    border-radius: 3rem;
}

section {
    min-height: 100vh;
    padding: 10rem 15%;
}
.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.home-content h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    line-height: 1;
}

.home-content h3 {
    margin: 1rem 0;
    font-size: 4rem;
}

.home-content p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.home-img img {
    width: 32vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    transition: 0.4s ease-in-out;
}

.home-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2)translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    text-wrap: nowrap;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 3rem;
    font-size: 1.8rem;
    color: black;
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--main-color),
                0 0 25px var(--main-color);
}

.btn-group a:nth-of-type(2) {
    background-color: black;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover {
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: black;
}

body, h1, h3, p, a, span, button {
    font-family: 'Poppins', sans-serif;
}

/* For tablets and small laptops */
@media (max-width: 992px) {

    .logo {
        margin-top: 0.5rem;
    }
    .home {
        flex-direction: column;
        text-align: center;
        padding: 5rem 10%;
    }

    .home-img img {
        width: 45vw;
    }

    .navbar {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        background: var(--bg-color);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 2rem;
    }

    .navbar.active {
        display: flex;
    }

    #menu-icon {
        display: block;
        cursor: pointer;
    }
}

/* For mobile phones */
@media (max-width: 576px) {
    .logo {
        margin-top: 0.5rem;
    }
    .home-content h1 {
        font-size: 3rem;
    }

    .home-content h3 {
        font-size: 2.5rem;
    }

    .home-content p {
        font-size: 1.3rem;
    }

    .home-img img {
        width: 70vw;
    }

    .navbar a {
        font-size: 1.8rem;
    }

    .social-icons a {
        font-size: 2.5rem;
    }

    .btn-group .btn {
        padding: 0.8rem 2.5rem;
    }
}


