/* 
Author: Gurvinder Pal Singh
v1 dated 03-08-2025
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    margin: 0;
}
.container {
    width: 95%;
    max-width: 1500px;
    margin-inline: auto;
    padding-block-start: 1rem;
    padding-inline: 1rem;
}
.intro {
    background: linear-gradient(
        to right,
        rgba(1, 0, 8, 1),
        rgba(34, 32, 41, 0.5)
    );
}
.intro-section {
    display: flex;
    flex-direction: column;
    row-gap: 2.5dvw;
}
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-info {
    width: 50%;
}
.brand-name {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    color: yellow;
}
.nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}
.nav-primary-link {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    color: #fff;
    text-decoration: none;
}
.nav-primary-link:last-child {
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    letter-spacing: 0.1rem;
    border: 1px solid transparent;
    background-color: orangered;
}
.btn-get-in-touch:hover {
    background-color: transparent;
    color: orangered;
    border: 1px solid #fff;
}
.intro-content {
    max-width: 650px;
    word-spacing: 0.2rem;
    letter-spacing: 0.1rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.5dvw;
    padding-bottom: 2.5rem;
}
.intro-tag-line {
    font-size: 1.7rem;
    word-spacing: 0.2rem;
    line-height: 1.3;
    color: #fff;
}
.hero-about-us {
    font-size: 1.3rem;
    font-weight: 300;
    word-spacing: 0.1rem;
    color: #fff;
    line-height: 1.6;
}
.btn-get-started {
    align-self: flex-start;
    background-color: yellow;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    font-size: 1rem;
    font-weight: 300;
    word-spacing: 0.2rem;
    text-decoration: none;
}
.btn-get-started:hover {
    background-color: transparent;
    color: yellow;
    border: 1px solid #fff;
}

@media screen and (max-width: 900px) {
    .brand-info {
        width: 100%;
    }
    .intro-banner {
        height: auto;
    }
    .nav-primary {
        display: none;
    }
    .brand-name {
        text-align: center;
    }
}
