/* === Allgemeines Layout === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    color: #222;
    line-height: 1.6;
}

/* === Navigationsleiste === */
header {
    background-color: #7C0A02; /* Trabzonspor-Bordeaux */
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo img {
    height: 48px;
}

/* Navigationslinks */
.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.navbar nav ul li a:hover {
    color: #68AEE0; /* Trabzonspor-Himmelblau */
}

/* === Hauptcontainer === */
main.container {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* === Überschriften === */
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    color: #7C0A02;
    margin-top: 2rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #68AEE0;
    padding-bottom: 0.3rem;
}

/* === Listen === */
ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* === Links im Inhalt === */
a {
    color: #0055cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* === Footer === */
footer {
    background-color: #580708;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}

/* === Buttons (optional) === */
button {
    background-color: #7C0A02;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover {
    background-color: #580708;
}

/* === Responsive Optimierung === */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .logo img {
        height: 40px;
        margin-bottom: 0.5rem;
    }
}


.album {
    margin-top: 2rem;
}

.album h2 {
    font-size: 1.2rem;
    color: #7C0A02;
    border-left: 5px solid #68AEE0;
    padding-left: 0.6rem;
    margin-bottom: 1rem;
}

.bilder-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.bild {
    flex: 1 1 200px;
    max-width: 220px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background-color: #fff;
}

.bild img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.bild img:hover {
    transform: scale(1.03);
}


.branding {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.branding img {
    height: 40px;
}

.branding .firmennamen {
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
}


.album-übersicht {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.album-kachel {
    text-decoration: none;
    flex: 1 1 250px;
    max-width: 300px;
}

.album-vorschau {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.album-vorschau img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.album-vorschau:hover img {
    transform: scale(1.04);
}

.album-title {
    position: absolute;
    bottom: 0;
    background: rgba(124, 10, 2, 0.8);
    color: white;
    width: 100%;
    padding: 0.6rem;
    font-weight: bold;
    text-align: center;
}


.hero {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #7C0A02;
    color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #68AEE0;
    color: #fff;
    padding: 0.8rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.cta-button:hover {
    background-color: #5599cc;
}

.ueber-uns, .leistungen, .galerie-vorschau {
    margin-top: 2rem;
}

.leistungen-liste {
    list-style: none;
    padding-left: 0;
}

.leistungen-liste li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
