body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding-right: 30px;
    transform: translateX(-3cm);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
    background-position: center top;
    height: 50vh;
    position: relative;
    margin-top: 60px;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding-top: 60px;
}

.content {
    color: white;
    padding: 20px;
}

.content h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 25px;
}

.button {
    background-color: #f4c430;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.map-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.1em;
    line-height: 1.6;
}

.copyright {
    position: fixed;
    bottom: 10px;
    right: 15px;
    color: white;
    font-size: 0.9em;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1000;
}
