/* Стили для header */
.header-blur-background {
    position: fixed;
    top: 0;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 999;
}

.header {
    position: fixed;
    top: 1rem;
    left: 7%;
    right: 7%;
    width: 86%;
    background-color: #b0926a;
    height: 3.5rem;
    display: flex;
    align-items: center;
    border-radius: 25rem;
    padding: 0 2rem;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-text {
    font-size: clamp(9px, 1.2vw, 21px);
    color: #fae7c9;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.6
}

.header-subtitle {
    font-size: 0.5em; /* Make it smaller relative to its parent */
    line-height: 1.3; /* Reduce line height to decrease spacing */
    display: block; /* Ensure it takes its own line */
    margin-top: -0.2em; /* Pull it up slightly */
}

.header-buttons {
    display: flex;
    gap: 1.5rem;
    text-transform: uppercase;
}

.header-button {
    display: inline-block;
    padding: 0.3rem 0.3rem;
    background-color: beige;
    color: #4a7c59;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25rem;
    transition: all 0.3s ease;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-button:hover {
    background-color: transparent;
    color: #ffffff;
}

.header-button.button {
    background-color: #4a7c59; /* Зеленый цвет для Садаки */
    border-color: #4a7c59;
    color: #fae7c9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-button.button:hover {
    background-color: #fae7c9;
    color: #4a7c59;
}


