/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;

    /* Full background*/
    background: linear-gradient(
        to bottom,
        #8fa79a,
        #5f7468,
        #2f3f38
    );
}

/* MAIN CARD CONTAINER */
.page {
    max-width: 1000px;
    margin: 40px auto;
    background: #f4f1e8;
    box-shadow: 0 0 30px rgba(0,0,0,0.25);
}


/* HEADER */
header {
    text-align: center;
    padding: 30px 20px 10px;
}


.logo {
    width: 140px;
    height: 140px;
    margin: auto;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


/* NAVBAR CONTAINER */
nav {
    margin-top: 10px;
    padding: 15px 99px; 
    background: #d8cfaa;
    border-radius: 80px; 
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* NAV LINKS */
nav a {
    margin: 0 40px; 
    text-decoration: none;
    color: #2f3f38;
    font-weight: bold;
    font-size: 22px; 
    padding: 12px 55px; 
    display: inline-block;
    border-radius: 40px; 
}

/* CIRCLE THING */
nav a.active {
    background: #f4f1e8;
    border: 2px solid #2f3f38;
}

/* HERO */
.hero {
    position: relative;
}

.hero img {
    width: 100%;
    display: block;
}

.quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 20px 30px;
    font-size: 26px;
    border-radius: 6px;
    width: fit-content;
}


.home-text {
    padding: 60px 50px;
    text-align: center;
    line-height: 1.7;
    max-width: 850px; 
    margin: 0 auto;
}

.home-text p {
    font-size: 24px; 
    color: #2f3f38;
    margin-bottom: 25px;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid #ccc;
    font-size: 14px;
}