/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
}

.nav-logo {
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links li a:hover {
    color: #0077cc;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    text-shadow: 2px 2px 6px black;
}

.hero-text h1 {
    font-size: 48px;
    margin: 0;
}

.hero-text p {
    font-size: 20px;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* HOMEPAGE SECTIONS */
.homepage-section {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #eee;
}

.homepage-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.homepage-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

/* FOOTER */
.footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer a {
    color: #0077cc;
    text-decoration: none;
}
/* SPECIES PAGE */
.species-hero {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

.species-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.species-title-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255,255,255,0.85);
    padding: 15px 25px;
    border-radius: 8px;
}

.species-title-box h1 {
    margin: 0;
    font-size: 36px;
}

.species-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.species-section {
    margin-bottom: 40px;
}

.species-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.species-section ul {
    padding-left: 20px;
}
