/* Header Layout */
.main-header {
    background-color: transparent; 
    color: white;
    padding: 20px 0;
    position: fixed; 
    width: 100%;
    z-index: 1000;     
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

.main-header.hide-on-up {
    transform: translateY(-100%);
}

.main-header.show-on-down {
    transform: translateY(0);
    background-color: rgba(7, 90, 101, 0.98);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-text-block {
    text-align: right;
}

.header-text-block h2 {
    margin: 0;
    margin-bottom: 4px;
    font-size: 1.1rem; 
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;   
}

.header-text-block p {
    margin: 0;
    font-size: 10px;   
    color: rgba(255, 255, 255, 0.6); 
    text-transform: uppercase;
    letter-spacing: 0.8px; 
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
