body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f7f1e3;
    color: #2f2a1f;
}
.hero {
    position: relative;
    overflow: hidden;
    height: 550px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.32);
    z-index: 1;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-text {
    position: absolute;
    left: 43%;
    top: 42%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,.9);
    z-index: 2;
    width: 90%;
}

.hero-text h1 {
    font-size: 5rem;
    margin: 0;
}

.hero-text p {
    font-size: 1.35rem;
    margin-top: .5rem;
}

nav {
    background: #49631b;
    text-align: center;
    padding: .75rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 18px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 900px;
    margin: auto;
    padding: 1.5rem;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 1.25rem;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

footer {
    text-align: center;
    padding: 2rem;
    color: #777;
}

.card h2 {
    margin-top: 0;
    color: #49631b;
}

.card p {
    line-height: 1.5;
}

.card {
    border-left: 6px solid #6b8e23;
}

main {
    margin-top: 1rem;
}

.egg-status {
    font-size: 1.4rem;
    font-weight: bold;
    color: #49631b;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1rem;
    background: #6b8e23;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.button:hover {
    background: #49631b;
}
