:root {
    --cream: #FEF1D4;
    --sand: #F2D28C;
    --stone: #D1D6C0;
    --green: #637911;
    --dark: #46540C;
}


body {
    font-family: 'League Spartan', sans-serif;
    background-color: var(--cream);
    margin: 0;
    padding: 0;
}

section {
    padding: 20px;
}

/* Typography */
h1 {
    font-weight: 200;
    text-transform: uppercase;
    font-size: 150px;
    color: var(--green);
}

h2 {
    font-weight: 500;
    font-size: 50px;
    color: var(--green);
}

h3 {
    font-weight: 600;
    font-size: 30px;
}

p {
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
}

a {
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

/* Navigation */
nav {
    position: fixed;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--stone);
    color: var(--dark);
    z-index: 10;
}

nav .left {
    display: flex;
    align-items: center;
}

nav .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 5px;
    background-color: var(--sand);
    border-radius: 50%;
}

nav .right {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

nav a {
    background-color: var(--sand);
    color: var(--dark);
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.nav-toggle img {
    width: 28px;
    height: 28px;
}

/* Hero Section */
section.hero {
    padding-top: 100px;
}

.hero {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.intro {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: relative;
}

.meerkat {
    height: 80vh;
    object-fit: contain;
    margin-bottom: 0;
}

.title {
    margin: 0;
    font-size: 150px;
    font-weight: 200;
    text-transform: uppercase;
    color: var(--green);
    position: relative;
    top: 0;
    left: 0;
    transform: translateY(0);
}


.line-hero {
    position: absolute;
    margin-top: 15px;
    right: 0;
    width: 280px;
    height: 80px;
    background-color: var(--sand);
    border-radius: 20px 0 0 20px;
    z-index: -1;
}

.hero-info {
    display: flex;
    align-items: center;
    background-color: var(--sand);
    padding: 0 40px;
    margin: 0;
    margin-bottom: 50px;
    border-radius: 20px;
    height: 100px;
    position: relative;
}

.hero-info h3 {
    position: absolute;
    left: 0;
    top: -5px;
    transform: translateY(-50%);
    margin: 0;
    padding-left: 20px;
    color: var(--green);
    z-index: 1;
}

.hero-info .row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.hero-info .paw {
    width: 50px;
    height: 50px;
    margin: 0;
}

.hero-info .col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    gap: 2px;
}

.hero-info .col p {
    margin: 0;
    font-size: 14px;
    color: var(--dark);
}

.hero-info h3,
.hero-info p {
    margin: 5px;
}

.hero-info h3 {
    color: var(--green);
}

.hero-info p {
    color: var(--dark);
}

.paw {
    width: 50px;
    height: 50px;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--stone);
    color: var(--dark);
}

footer .logo {
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: var(--sand);
    border-radius: 50px;
}

footer p {
    margin: 0;
    margin-bottom: 0;
    padding: 5px 10px;
    border-radius: 20px;
}