/* Shared Header Styles for both Index and Landing pages */

.header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5vh 2.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
    min-height: 10vh;
    max-height: 15vh;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.practice-name {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    flex-shrink: 0;
    width: 250px;
    position: relative;
    z-index: 1;
}

.header-content {
    flex: 1;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive adjustments for small screens */
@media screen and (max-width: 767px) {
    .header {
        padding: 1vh 3vw;
        min-height: 8vh;
    }
    
    .practice-name {
        font-size: clamp(1rem, 4vw, 1.4rem);
        width: 200px;
    }
}

/* Landscape orientation adjustments */
@media screen and (orientation: landscape) and (max-height: 600px) {
    .header {
        min-height: 12vh;
        padding: 0.8vh 2vw;
    }
    
    .practice-name {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        width: 180px;
    }
    
    .subtitle {
        font-size: clamp(1rem, 3.5vw, 1.6rem);
    }
}