/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Homepage Map Styling */
.map-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/map.jpg') no-repeat center/cover;
    overflow: hidden;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    text-align: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
}

.nav-link:hover {
    color: #f4a261;
}

/* Location Markers */
.location {
    position: absolute;
    width: 50px;
    height: 50px;
    background-size: contain;
    cursor: pointer;
}

.location a {
    display: block;
    width: 100%;
    height: 100%;
}

.location:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
}

/* Position Each Location */
.mountain { top: 20%; left: 30%; background: url('images/mountain-icon.png') no-repeat center; }
.library { top: 40%; left: 60%; background: url('images/mountain-icon.png') no-repeat center; }
.rocket { top: 10%; left: 80%; background: url('images/mountain-icon.png') no-repeat center; }
.weights { top: 60%; left: 20%; background: url('images/mountain-icon.png') no-repeat center; }
.bike { top: 50%; left: 40%; background: url('images/mountain-icon.png') no-repeat center; }
.campsite { top: 70%; left: 50%; background: url('images/mountain-icon.png') no-repeat center; }
.rivers { top: 30%; left: 10%; background: url('images/mountain-icon.png') no-repeat center; }
.beach { top: 80%; left: 70%; background: url('images/mountain-icon.png') no-repeat center; }

/* Blog Page Styling */
.blog-page {
    background: #f9e9d6;
    min-height: 100vh;
    padding: 20px;
}

header {
    background: url('images/map.jpg') no-repeat center/cover;
    padding: 50px;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
}

h1 {
    font-size: 36px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

article p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #2a9d8f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.back-btn:hover {
    background: #264653;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location { width: 40px; height: 40px; }
    nav { padding: 5px; }
    .nav-link { font-size: 16px; margin: 0 10px; }
    h1 { font-size: 24px; }
}