/* components/header/header.css */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-30px);
    animation: headerSlideDown 1s ease-out 0.5s forwards;
}

@keyframes headerSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.02em;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(44, 44, 44, 0.5);
}

.header__logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 5px 15px rgba(122, 138, 150, 0.4));
}

.header__logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(122, 138, 150, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(122, 138, 150, 0.3);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.header__logo-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(122, 138, 150, 0.3), transparent);
    border-radius: var(--border-radius-lg);
    opacity: 0;
    transition: var(--transition);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.header__logo:hover .header__logo-icon {
    background: rgba(122, 138, 150, 0.3);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.header__logo span {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 24px;
    background: var(--gradient-accent);
    background-clip: text;
}

.header__contact {
    text-align: right;
    color: var(--color-white);
}

.header__contact-hours {
    font-size: 12px;
    color: var(--color-light-gray);
    margin-bottom: 4px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(44, 44, 44, 0.3);
}

.header__contact-phone {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 6px rgba(44, 44, 44, 0.4);
    display: block;
}

.header__contact-phone:hover {
    color: var(--color-accent);
    transform: translateY(-1px);
    filter: drop-shadow(0 3px 8px rgba(122, 138, 150, 0.4));
}

.header__contact-location {
    font-size: 11px;
    color: var(--color-accent);
    margin-top: 2px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(44, 44, 44, 0.3);
}

@media (max-width: 768px) {
    .header__container {
        padding: 16px 20px;
    }

    .header__logo {
        font-size: 20px;
        gap: 10px;
    }

    .header__logo-icon {
        width: 44px;
        height: 44px;
    }

    .header__logo span {
        font-size: 20px;
    }

    .header__contact-phone {
        font-size: 18px;
    }

    .header__contact-hours,
    .header__contact-location {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 12px 16px;
    }

    .header__contact-hours,
    .header__contact-location {
        display: none;
    }

    .header__contact-phone {
        font-size: 16px;
    }
}