/* HEADER - ALLE BUTTONS IN EINER ZEILE */

/* Header */
.oyropa-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, #1A365D 0%, #2D4A7C 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* Logo verstecken */
.header-logo {
    display: none !important;
}

/* Share-Buttons Container - inline mit Navigation */
.share-buttons-container {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    gap: 12px;
    align-items: center;
    margin-right: 24px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #D69E2E;
    color: #1A365D !important;
    transform: translateY(-2px);
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Header Container - Flex Layout für eine Zeile */
.header-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.header-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.header-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.header-btn:hover {
    background: #D69E2E;
    color: #1A365D !important;
    border-color: #D69E2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

/* Spacer für fixed header */
body {
    padding-top: 70px !important;
}

/* Mobile - Stack vertically if needed */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        padding: 8px 0;
    }

    .oyropa-header {
        height: auto;
        min-height: 70px;
        padding: 12px 20px;
    }

    .share-buttons-container {
        margin-right: 0;
        margin-bottom: 8px;
    }

    body {
        padding-top: 130px !important;
    }
}

@media (max-width: 768px) {
    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .header-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .header-buttons {
        gap: 10px;
    }
}
