/* Hiking Adventure Stylesheet */
body {
    font-family: 'Arial', sans-serif;
    background-color: #e0ffe0;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #2e8b57;
}

a {
    color: #006400;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #3cb371;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #2e8b57;
}

.footer {
    background-color: #3cb371;
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid #2e8b57;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #32cd32;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #228b22;
}

.card {
    background-color: #f5f5f5;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: space-around;
    background-color: #2e8b57;
    padding: 10px;
}

.nav-item {
    color: white;
    padding: 10px;
}

.nav-item:hover {
    background-color: #3cb371;
    border-radius: 5px;
}

.hero-section {
    background-image: url('/images/hero_froge_adventure.svg');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 {
    font-size: 3em;
}

.hero-section p {
    font-size: 1.2em;
}