@media (max-width:991px) {
    body.poster {
        margin-top: 60vh;
    }
}

body.poster {
    background-attachment: fixed;
}

.top-5 {
    top: 5px;
}

:root {
    --accent-color: var(--bs-primary);
    --bg-dark: var(--bs-secondary);
    --card-dark: #1e1e1e;
    --text-light: #e0e0e0;
    --text-muted: #aaaaaa;
    --border-color: #333333;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--card-dark);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
}

.card-body {
    padding: 3rem;
}

.form-title {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.form-control,
.form-select {
    background-color: #252525;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-light);
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
}

.form-control:focus,
.form-select:focus {
    background-color: #303030;
    color: var(--text-light);
    border-color: var(--accent-color);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23aaaaaa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-check-input {
    background-color: #ffffff;
    border-color: var(--border-color);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background-color: var(--accent-color);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-submit:hover::before {
    left: 0;
}

.contact-info-box {
    background-color: rgba(0, 230, 118, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 230, 118, 0.2);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-text {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #252525;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: #000;
}

.thank-you-message {
    display: none;
    background-color: rgba(0, 230, 118, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 1.5rem;
    margin-top: 2rem;
}

.thank-you-title {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Responsives Design */
@media (max-width: 768px) {
    .card-body {
        padding: 2rem;
    }
}

.section-about {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.custom-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.team-img {
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
}

.about-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.progress-label {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.custom-progress {
    height: 10px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2.3rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--primary);
}

.timeline-year {
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.counter-box {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.counter-text {
    color: var(--dark);
    font-weight: 500;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 193, 7, 0.4);
    z-index: -1;
}

.btn-custom {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.quote-card {
    background-color: var(--primary);
    color: white;
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.1);
}

.brands-section {
    padding: 3rem 0;
    background-color: var(--secondary);
}

.brand-img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Für Glassmorphism-Effekte */
.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -1.8rem;
    }
}
