/* Header styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0; /* Increased padding */
    position: relative;
    z-index: 100;
    min-height: 110px; /* Increased height to prevent logo cutoff */
    display: flex;
    align-items: center;
}

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

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center; /* Center logo horizontally */
}

.logo {
    max-width: 240px;
    height: auto;
    max-height: 90px; /* Increased maximum height */
    object-fit: contain; /* Ensure logo fits properly */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
        min-height: 90px; /* Adjusted for mobile */
    }
    
    .logo {
        max-width: 180px;
    }
}

/* Header specific styles */
.logo-section {
    padding: 1rem 0;
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    min-height: 100px !important;  /* Force minimum height */
}

.logo-section a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Very specific selector to ensure it overrides any other styles */
.logo-section a img.logo,
.logo-section img,
.logo {
    width: 200px !important;
    height: 80px !important;
    object-fit: contain !important;
    max-width: none !important;
    max-height: none !important;
}

.welcome-heading {
    color: white;
    margin: 0.5rem 0 1rem;
    font-weight: 500;
    font-size: 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-section {
        min-height: 80px !important;
    }

    .logo-section a img.logo,
    .logo-section img,
    .logo {
        width: 160px !important;
        height: 60px !important;
    }

    .welcome-heading {
        margin: 0.25rem 0 0.75rem;  /* Even smaller margins on mobile */
        font-size: 1.25rem;
    }
} 