/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

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

.landing-container {
    display: grid;
    background-color: #0f0156;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 auto;
    height: 100vh;
}

.landing-text-container {
    padding: 30px;
    padding-top: 25px;
    margin: 0 auto;
    height: 100vh;
}

.logo-site-title-container {
    margin: 0 auto;
    margin-bottom: 200px;
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    height: 40px;
    margin-right: 0.6rem;
    border-radius: 20px;
}

.site-title {
    font-size: 1.45rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.4em;
    font-weight: 500;
    max-width: 63%;
}

.hero-img {
    display: none;
}

/* ================ Sub hero =================== */


.light-gray-bg-container {
    background-color: rgb(109, 103, 114);
}

.section-content-container {
    padding: 30px;
    padding-top: 120px;
    padding-bottom: 150px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    font-size: 3.1em;
    font-weight: 500;
    margin-bottom: 50px;
}

.section-text {
    font-size: 1.3em;
    color: #ffffffd0;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

/* ================= Table section ===================*/

.dark-gray-bg-container {
    background-color: rgb(54, 54, 71);
}

.whos-building-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    table-layout: fixed;
    font-size: 1em;
}

td {

    padding: 8px;
    text-align: left;
    width: auto;
    vertical-align: top;
}

td:nth-child(2) {
    /*second column left padding */
    padding-left: 15px;
}

a {
    text-decoration: none;
    color: #ffffffd0;
}

a:hover {
    text-decoration: underline;
}

.bold-600 {
    font-weight: 600;
}

.text-align-center {
    text-align: center;
}

.vertical-center {
    vertical-align: middle;
}

tr:not(:last-child) {
    border-bottom: 1px solid #ffffff56;
    /* Horizontal line between rows */
}

/* ================= Table section ===================*/


.footer-bg-container {
    background-color: rgb(31, 31, 41);
    border-top: 5px solid #161616;
}

.footer-content-container {
    padding: 30px;
    padding-top: 120px;
    padding-bottom: 150px;
    max-width: 1400px;
    margin: 0 auto;
}


.footer-logo-x-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-logo {
    height: 60px;
    border-radius: 30px;
    ;
    margin-right: 50px;
}

.footer-x-link {
    font-size: 1.3em;
    font-weight: 500;
    color: #ffffffd0;
}


/* Media query for larger screens (min-width: 990px) */
@media (min-width: 990px) {

    .landing-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-text-container {
        padding-top: 45px;
        max-width: 60%;
    }

    .logo-site-title-container {
        margin-bottom: 180px;
    }

    .logo {
        height: 50px;
        margin-right: 0.6rem;
        border-radius: 25px;
    }

    .site-title {
        font-size: 2rem;
        font-weight: 600;
    }

    .hero-title {
        font-size: 5em;
    }

    .hero-img {
        display: block;
        background-image: url('images/gattacastack5.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
        width: 100%;
    }

    .section-header {
        font-size: 4.5em;

    }

    .section-text {
        font-size: 1.7em;
        font-weight: 500;
    }

    .whos-building-table {
        width: 100%;
        max-width: 80%;
        margin-bottom: 40px;
        table-layout: fixed;
        font-size: 1.7em;
    }


    td {
        padding: 12px;
    }
}

@media (min-width: 990px) and (max-width: 1650px) {

    .landing-text-container {
        padding-top: 45px;
        max-width: 90%;
    }

    .hero-title {
        font-size: 3.5em;

    }

}