@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

.congetur-header-d2a2804d {
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
}

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

.brand-wrapper-d2a2804d {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-wrapper-d2a2804d {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-d2a2804d {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text-d2a2804d {
    display: flex;
    flex-direction: column;
}

.brand-name-d2a2804d {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.tagline-d2a2804d {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.nav-wrapper-d2a2804d {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu-d2a2804d {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

.nav-link-d2a2804d {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-link-d2a2804d:hover {
    color: #FFFFFF;
}

.cta-button-d2a2804d {
    display: inline-block;
    color: #0F1A24;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-d2a2804d:hover {
    background-color: transparent !important;
    border-color: #C49A55;
    color: #C49A55 !important;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .header-container-d2a2804d {
        flex-direction: column;
        gap: 20px;
    }
    .nav-wrapper-d2a2804d {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .nav-menu-d2a2804d {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
