/* style.css - Основные стили для сайта доставки алкоголя */

/* Импорт шрифтов для лучшей типографики */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Базовые стили */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
}

/* Кастомные классы для анимаций */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Градиентный текст */
.text-gradient-amber {
    background: linear-gradient(90deg, #d97706, #92400e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Стилизация скроллбара */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #d97706, #92400e);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #b45309, #78350f);
}

/* Анимация пульсации для кнопок */
@keyframes pulse-amber {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(217, 119, 6, 0);
    }
}

.pulse-button {
    animation: pulse-amber 2s infinite;
}

/* Медиазапросы для улучшенной адаптивности */
@media (max-width: 768px) {
    .text-hero {
        font-size: 2.5rem;
    }
}