
* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

img {
    max-width: 100%; 
    height: auto;    
}

/* Header and Logo */
header {
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#logo-container {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
}

#logo {
    width: 100px;
    height: auto;
}

/* Navigation */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333333;
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
    color: #5B7A87; 
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
}

.hamburger-icon {
    display: none; 
}

/* Hero Section */
#hero-image-top {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(/images/girl-kenya.jpg);
    background-size: cover;
    background-position: center;
}

#hero-image-middle {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(/images/okavango-delta-buffalo.jpg);
    background-size: cover;
    background-position: center;
}

/* Text Box */
#text-box-top {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 90%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#text-box-top h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    color: #333333;
    margin: 10px 0;
}

#text-box-top h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
    margin-bottom: 10px;
}

#text-box-top p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #f4f4f4;
    color: #333333;
}

footer p {
    font-size: 0.9rem;
    color: #666666;
}
