@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Variables */

:root {
    /* Colors */
    --light-grey: #C1C1C1;

    /* Font Weight */
    --bold-fw: 700;
    --semi-bold-fw: 600;
    --medium-fw: 500;
    --regular-fw: 400;

    /* Section Padding */
    --section-padding: 62px;

    /* Cursors */
    --pointer-cursor: pointer;

}

/* Reset defaults */

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

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

/* General Styles */

body {
    font-family: Montserrat, Inter, Roboto;
}

nav {
    padding: 20px var(--section-padding);
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

    .background {
        position: absolute;
        z-index: -1;
        background-color: white;
        width: 100%;
        height: 100%;
    }

    .logo {
        width: 140px;
    }

    .menu {
        display: flex;
        gap: 40px;
    }
}

footer {
    padding: var(--section-padding);
    background-color: #272727;
    color: white;
    margin-top: 50px;

    p, a {
        font-size: 14px;
    }

    a {
        color: inherit;
        max-width: 100%;
    }

    .info-segment {
        display: flex;
        justify-content: space-between;
    }

    .footer-info-item {
        max-width: 200px;

        ul {
            width: 100%;
        }
    }

    .logo {
        width: 100%;
    }

    .email {
        width: 200px;
    }

    .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .social-links {
        display: flex;
        gap: 20px;
        
        .social-icon {
            align-self: center;
            width: 30px;
        }
    }

    .copyright {
        font-size: 12px;
        text-align: center;
    }
}

.btn {
    display: inline-block;
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    padding: 12px 20px;
    border: var(--light-grey) 2px solid;
}

section {
    padding: 100px var(--section-padding);
}

/* Text Styles */

h1, h2, h3, p {
    font-weight: var(--regular-fw);
}

h1 {
    font-size: calc(36rem/16); /* 36px */
}

h2 {
    font-size: calc(32rem/16); /* 32px */
}

h3 {
    font-size: calc(24rem/16); /* 24px */
}

p {
    font-size: 1rem; /* 16px */
}

/* Other Styles */

.line {
    /* background-color: hsla(0, 0%, 56%, 0.18); */
    background: linear-gradient(to right, #D9D9D9, #737373);
    opacity: 27%;
    height: 1px;
    width: 100%;
    margin: 50px 0;
}

.standard-section {
    display: flex;
    align-items: center;
    gap: 114px;
}

.passage {
    max-width: 471px;

    h2 {
        max-width: 471px;
        margin-bottom: 18px;
    }

    p {
        max-width: 374px;
    }
}