/* Grundlegende Body- und Schriftstile */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Header-Stile */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

header img {
    max-height: 100px;
    height: auto;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    margin: 0;
    padding: 0;
}

.hero img {
    max-width: 50%;
    height: auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-icons {
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-icons a {
    color: #222;
    font-size: 2rem;
    transition: color 0.2s;
    text-decoration: none;
}

.hero-icons a:hover {
    color: #0078d7;
}

/* About Section */
.about {
    text-align: center;
    padding: 100px 20px;
    margin-top: 0;
}

.about img {
    width: 300px;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

/* Header Sichtbarkeit Animation */
.hidden-header {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.visible-header {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

/* Angebot Section - Allgemein */
.angebot-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 60px auto;
    max-width: 1100px;
    padding: 40px 20px;
    background: #f9f9f9;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.angebot-section.reverse {
    flex-direction: row-reverse;
}

.angebot-section img {
    max-height: 100px;
    margin-left: 10px;
    object-fit: contain;
}

/* Angebot Text */
.angebot-text {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.angebot-text h2 {
    font-size: 2.2rem;
    margin-top: 0;
    color: #0078d7;
}

/* Angebot Pricing */
.angebot-pricing {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    max-width: 320px;
}

.angebot-pricing h3 {
    margin: 0 0 16px 0;
    color: #222;
    font-size: 1.4rem;
}

.angebot-pricing .preis {
    font-size: 1.6rem;
    color: #0078d7;
    font-weight: bold;
    margin-bottom: 16px;
}

.angebot-pricing ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    color: #333;
    font-size: 1rem;
}

.angebot-pricing ul li {
    margin-bottom: 8px;
}

.angebot-pricing .cta {
    margin-top: 12px;
    display: inline-block;
    background: #0078d7;
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.angebot-pricing .cta:hover {
    background: #005fa3;
}

/* Kontakt Icons */
.contact-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px solid #e30a1b;
    border-radius: 8px;
    padding: 8px 16px;
    max-width: fit-content;
    margin: 0 auto;
}

.contact-icons a {
    color: #222;
    font-size: 2rem;
    transition: color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icons a:hover {
    color: #0078d7;
}

/* Webdesign Logo in Header Section */
.header-section {
    background: #f9f9f9;
    border-top: 2px solid #0078d7;
    border-bottom: 2px solid #0078d7;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 60px auto;
    max-width: 1100px;
    padding: 40px 40px 40px 20px;
}

.header-section img {
    max-height: 100px;
    margin-left: 10px;
    object-fit: contain;
}

.header-section h1 {
    flex: 1;
    font-size: 3rem;
    text-align: right;
    margin-right: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078d7;
}

/* Scroll Down Indicator */
#scroll-down-indicator {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    cursor: pointer;
    z-index: 1000;
}

#scroll-down-indicator i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

#scroll-down-indicator i.black {
    color: black;
    animation-delay: 0s;
}

#scroll-down-indicator i.blue {
    color: #0078d7;
    animation-delay: 0.3s;
}

#scroll-down-indicator i.red {
    color: #e30a1b;
    animation-delay: 0.6s;
}

#scroll-down-indicator i.fas.fa-chevron-up {
    font-size: 2rem;
    position: relative;
    animation: bounce-up 2s infinite;
    display: none;
}

#scroll-down-indicator i.fas.fa-chevron-up.black {
    color: black;
    animation-delay: 0s;
}

#scroll-down-indicator i.fas.fa-chevron-up.blue {
    color: #0078d7;
    animation-delay: 0.3s;
}

#scroll-down-indicator i.fas.fa-chevron-up.red {
    color: #e30a1b;
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes bounce-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .angebot-section,
    .angebot-section.reverse {
        flex-direction: column;
        gap: 24px;
    }

    .angebot-pricing {
        max-width: 100%;
        min-width: unset;
    }

    .header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .header-section img {
        margin: 0 0 20px 0;
        max-height: 80px;
    }

    .header-section h1 {
        margin: 0 0 10px 0;
        font-size: 2.2rem;
        justify-content: center;
    }

    .header-section p {
        font-size: 1.2rem;
        margin: 0;
    }
}