/*
 * Плашка о переезде сайта
 * Уведомление о новом адресе: zalogcars.ru
 */

.site-moved-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

.site-moved-banner-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.site-moved-banner-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-moved-banner-icon {
    font-size: 32px;
    animation: bounce 2s infinite;
}

.site-moved-banner-text {
    flex: 1;
}

.site-moved-banner-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.site-moved-banner-description {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

.site-moved-banner-link {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.site-moved-banner-link:hover {
    background: #fdc300;
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.site-moved-banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site-moved-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.site-moved-banner.hidden {
    display: none;
}

/* Отступ для контента сайта */
body.site-moved-banner-visible {
    padding-top: 100px;
}

/* Анимации */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Альтернативный стиль - желтый */
.site-moved-banner.style-yellow {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Альтернативный стиль - зеленый */
.site-moved-banner.style-green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Альтернативный стиль - красный (важное уведомление) */
.site-moved-banner.style-red {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Адаптивность */
@media (max-width: 768px) {
    .site-moved-banner {
        padding: 12px 15px;
    }

    .site-moved-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .site-moved-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .site-moved-banner-icon {
        font-size: 28px;
    }

    .site-moved-banner-title {
        font-size: 16px;
    }

    .site-moved-banner-description {
        font-size: 13px;
    }

    .site-moved-banner-link {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }

    .site-moved-banner-close {
        top: 5px;
        right: 5px;
        width: 28px;
        height: 28px;
        font-size: 16px;
        line-height: 28px;
    }

    body.site-moved-banner-visible {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    .site-moved-banner-title {
        font-size: 15px;
    }

    .site-moved-banner-description {
        font-size: 12px;
    }

    body.site-moved-banner-visible {
        padding-top: 160px;
    }
}

/* Печать - скрываем баннер */
@media print {
    .site-moved-banner {
        display: none !important;
    }

    body.site-moved-banner-visible {
        padding-top: 0 !important;
    }
}
