/* Farbvariablen für warmen, dunklen Look */
:root {
    --background-color: #1e1e1e;
    --text-color: #f5e8dc;
    --accent-color: #bfa15f; /* Warmes Gold */
    --link-color: var(--accent-color);
    --link-hover-color: #e0c875;
    --font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Reset & Box-Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Links (allgemein) */
a,
.menu a,
footer a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition:
        color 0.3s,
        border-bottom-color 0.3s;
}

a:hover,
.menu a:hover,
footer a:hover {
    color: var(--link-hover-color);
    border-bottom-color: var(--link-hover-color);
}

/* Header & Navigation */
header {
    background-color: var(--background-color);
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

nav .logo {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
}

nav .menu {
    display: flex;
}

nav .menu a {
    margin-left: 1.5rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: calc(100vh - 80px);
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.85;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition:
        background-color 0.3s,
        color 0.3s;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* Container für Sektionen */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Über mich */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
}

.about-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    .about-photo {
        margin-bottom: 1rem;
    }
}

/* Fotografie- & Drohnen-Grid */
.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.project {
    background-color: #2a2a2a;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 1.5rem;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s;
}

.project:hover {
    transform: translateY(-5px);
}

.project h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--accent-color);
}

.project p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Kontakt-Formular */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: var(--text-color);
    font-family: var(--font-family);
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

/* Footer */
footer {
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--accent-color);
}
/* Zusätzliche Abstände für mehr Struktur */
.container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.container h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.container p,
.container ul {
    margin-bottom: 1rem;
}
/* Listen-Styling für mehr Übersicht */
.container ul {
    list-style-type: disc;
    margin-left: 1.5rem; /* Einzug für die Aufzählung */
    margin-bottom: 1rem; /* Abstand nach unten */
}

.container ul li {
    margin-bottom: 0.5rem; /* Abstand zwischen den Listeneinträgen */
}
/* Galerie-Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-item img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-color);
    vertical-align: middle;
}
/* Mehr Abstand und kein Unterstrich bei Icons */
.social-icons a {
    margin: 0 0.5rem;
    border-bottom: none; /* entfernt den Hover-Strich */
}

.social-icons a:hover {
    color: var(--link-hover-color); /* dein warmer Gold-Ton */
    border-bottom: none; /* sicherheitshalber auch hier */
}
/* About-Section: Bild & Name in Sidebar links, Text daneben */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem; /* Abstand zwischen Sidebar und Text */
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px; /* Breite der Sidebar */
}

.about-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.about-name {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    text-align: center;
}
