/* Header styles for GuideHeader component */

.title-with-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
}

.title-links {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
}

.title-links-horizontal {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link-group-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 1rem;
    border-radius: 14px;
    box-shadow: 0 1px 8px rgba(180,160,80,0.04);
    background: #faf9f6;
}

.group-hera {
    border: 1.5px solid #e6c97a;
}

.group-repos {
    border: 1.5px solid #b8a0e6;
}

.group-label {
    font-weight: 600;
    font-size: 0.98rem;
    color: #5C6142;
    margin-right: 0.7rem;
    padding: 0.1rem 0.6rem;
    border-radius: 6px;
    background: transparent;
    letter-spacing: 0.01em;
}

.title-link-btn {
    min-width: 64px;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 7px;
    margin: 0;
    padding: 0.18rem 0.7rem 0.18rem 0.7rem;
    box-shadow: 0 1px 4px rgba(180,160,80,0.06);
    background: linear-gradient(180deg, #f7f6e7 0%, #e6c97a 100%);
    color: #5C6142;
    border: 1px solid #e6c97a;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.01em;
}

.title-link-btn:hover {
    background: linear-gradient(180deg, #ffe9a7 0%, #e6c97a 100%);
    color: #7a5c1e;
    box-shadow: 0 2px 8px rgba(180,160,80,0.12);
}

.title-link-btn:active {
    background: #e6c97a;
    color: #5C6142;
}

.header-tooltip-icon {
    color: #b8a05a;
    font-size: 1.15rem;
    vertical-align: middle;
    margin: 0 0.1rem 0 0.1rem;
    transition: color 0.18s;
}

.header-tooltip-icon:hover {
    color: #e6c97a;
}

.animated-header {
    display: inline-block;
    animation: headerFadeScale 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
    font-weight: bold;
    color: #7a5c1e;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(180,160,80,0.12);
}

@keyframes headerFadeScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
        color: #b8a05a;
    }
    60% {
        opacity: 1;
        transform: scale(1.08);
        color: #e6c97a;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: #7a5c1e;
    }
}

.header-flex {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.animated-header-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.header-title-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-title-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #7a5c1e;
    letter-spacing: 1px;
}

.header-title-bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.header-bg-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 120px;
    height: 120px;
    opacity: 0.18;
    pointer-events: none;
}

.header-title-fg {
    position: relative;
    z-index: 1;
    margin-left: 16px;
}

.header-center-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
}

.header-row-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    min-height: 100px;
}

.header-row-img {
    width: 150px;
    height: 80px;
    object-fit: contain;
}
