/* Basis-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

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

/* Footer Section */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}	

footer p {
  font-size: 0.9rem;
}

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-btn {
    background-color: #ff6347;
    color: white;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

/* Über mich */
#about {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.about-text {
    max-width: 350px;
}

.about-image img {
    width: 200px;
    border-radius: 10px;
}

/* Link zu Fotografie und Videografie */
.section-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
}

.section-link div {
    width: 46%;
}

.section-link a {
    display: block;
    text-align: center;
    background-color: #ff6347;
    color: white;
    padding: 10px;
	
