* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f4ecd8;
    color: #2c2c2c;
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    -webkit-user-select: none; 
    -ms-user-select: none;      
    user-select: none;  
}

.top-nav {
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1000;
    background-color: #800000;
    border-bottom: 4px solid #d4af37;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    gap: 10px;
}

.logo {
    font-size: 28px;
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    transition: 0.3s;
    padding: 5px;
}

.nav-links a:hover {
    color: #d4af37;
}

.hero-header {
    height: 60vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('map.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 105px;
    padding: 0 20px;
    text-align: center;
}

.hero-header h1 {
    color: #f4ecd8;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
    margin: 0;
}

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

.text-section p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: left;
}

.map-container {
    margin: 40px 0;
    text-align: center;
}

.map-container img {
    width: 100%;
    height: auto;
    border: 8px double #800000;
    padding: 5px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.caption {
    font-style: italic;
    margin-top: 10px;
    color: #555;
}

@media screen and (min-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .logo {
        font-size: 35px;
    }

    .nav-links {
        gap: 30px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hero-header {
        margin-top: 60px;
    }

    .hero-header h1 {
        font-size: 4rem;
        letter-spacing: 8px;
    }

    .text-section p {
        font-size: 20px;
        text-align: justify;
    }
}
