/* Grundstilsetzung */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

#hero {
    background: url('Sardinien_08_web.jpg') no-repeat left top/cover;
    color: white;
    text-align: center;
    padding: 300px 0;
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dunkelt das Bild ab */
}

.hero-content {
    position: relative;
    z-index: 1; /* Stellt sicher, dass der Text über dem Overlay angezeigt wird */
}

#hero h2 {
    font-size: 2.5em;
    margin: 20px 0;
}

#hero p {
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

#travel, #photo, #contact {
    padding: 50px 20px;
    text-align: center;
}

#contact {
    background-color: #333;
    color: white;
}

#contact a {
    color: #ff9900;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.social-media a:hover {
    text-decoration: underline;
}
