/* Ballina Byron Airport-Inspired Header Design */
.header_bg {
    top: 0;
    height: 80px;
    width: 100%;
    background-color: white;
    /*
    background-image: url('/img/header/hex.png');
    */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.header_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

header {
    display: flex;
    color: #2d3748;
    width: 100%;
    position: relative;
    z-index: 2;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 24px;
    height: 100%;
    position: relative;
    z-index: 3;
}

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
}

.logo_container {
    display: flex;
    align-items: center;
}

.logo_container img {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo_container img:hover {
    transform: scale(1.05);
}

/* Navigation Section */
.nav-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-item:hover {
    color: var(--primary-color);
    background-color: #f7fafc;
}

.nav-item:active {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.phone-info,
.support-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #718096;
    line-height: 1;
}

.phone-info i,
.support-info i {
    font-size: 14px;
    color: var(--primary-color);
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.phone-info {
    font-weight: 500;
    color: #718096;
}

.support-info {
    font-size: 11px;
    color: #718096;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .header-container {
        padding: 0 16px;
    }
    
    .main-nav {
        gap: 24px;
    }
    
    .nav-item {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media screen and (max-width: 768px) {
    .header_bg {
        height: 90px;
    }
    
    header {
        height: 90px;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .logo_container img {
        height: 40px;
    }
    
    .main-nav {
        gap: 16px;
    }
    
    .nav-item {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .contact-info {
        gap: 2px;
    }
    
    .phone-info,
    .support-info {
        font-size: 11px;
        gap: 4px;
    }
    
    .phone-info i,
    .support-info i {
        font-size: 12px;
    }
}

@media screen and (max-width: 640px) {
    .header_bg {
        height: 100px;
    }
    
    header {
        height: 100px;
    }
    
    .header-container {
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .nav-section {
        order: 2;
    }
    
    .contact-section {
        order: 3;
    }
    
    .logo-section {
        order: 1;
    }
    
    .main-nav {
        gap: 12px;
    }
    
    .nav-item {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 16px;
    }
    
    .phone-info,
    .support-info {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .header_bg {
        height: 110px;
    }
    
    header {
        height: 110px;
    }
    
    .header-container {
        padding: 8px 8px;
        gap: 8px;
    }
    
    .logo_container img {
        height: 36px;
    }
    
    .main-nav {
        gap: 8px;
    }
    
    .nav-item {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .contact-info {
        gap: 12px;
    }
    
    .phone-info,
    .support-info {
        font-size: 9px;
    }
    
    .phone-info i,
    .support-info i {
        font-size: 10px;
    }
}
