html, body {
    margin: 0;
    padding: 0;
}

body { 
    font-family: 'Inter Tight', sans-serif;
    background-color:#faf7ef ;
    color: rgb(20, 17, 11);
}

/*----------------- NAVBAR ---------------*/

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #1A1A1A;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

nav ul li a {
    text-decoration: none;
    color: #1A1A1A;
}

nav ul li a:hover {
    border-bottom: 3px solid #E8C547;
    padding-bottom: 4px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 48px;
    text-decoration: none;
    color: #1A1A1A;
}

.logo img {
    width: 80px;
    height: auto;
}

.gps-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 80px;
    font-family: monospace;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #1A1A1A;
}

.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 80px 20px 80px;
}

.hero-title {
    max-width: 500px;
    font-size: 132px;
    font-weight: 800;
    line-height: 1;
    margin-top: 20px;
    letter-spacing: -6px;
    margin-bottom: 0;
}
.hero-title-dot {
    color: #f3c543;
    font-weight: 900;
}

.hero-description {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    margin-top: 16px;
    color: rgb(20, 17, 11);
    max-width: 100%;
    margin-top: 32px;
}

.hero-left {
    flex: 1;
    max-width:36%;
}

