/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: url('https://ts2.mm.bing.net/th?q=mountain+forest+background') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #ffd700;
}

/* Navbar */
nav {
    background-color: rgba(0, 50, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
}

aside ul, nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
    flex-wrap: wrap; 
}


aside li, nav li {
    margin: 5px 20px;
}

nav a {
    font-weight: bold;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-section img {
    max-width: 80%;
    border-radius: 15px;
    margin-top: 20px;
}

/* Sections */
section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    margin: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

/* Trails Section */
.trails-section img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: rgba(0, 50, 0, 0.8);
}

.footer a {
    margin: 0 10px;
    font-weight: bold;
}