/* ОБЩИЕ СТИЛИ */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    scroll-behavior: smooth;
    color: #333;
    overflow-x: hidden;
}

/* ГЛАВНЫЙ ЭКРАН */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* ТЕКСТ НА ГЛАВНОМ */
.hero-logo-icon { font-size: 3rem; color: #f39c12; margin-bottom: 5px; }
.hero-brand-top { color: #f39c12; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; margin: 0 0 10px 0; font-weight: 600; }
.hero-content h1 { font-size: clamp(2.5rem, 8vw, 6rem); margin: 0; letter-spacing: 12px; font-weight: 900; }
.hero-subtitle { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px; margin: 15px 0 40px; opacity: 0.9; }

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.4s;
}
.btn-primary:hover { background: white; color: black; }

/* ПРЕИМУЩЕСТВА */
.hero-features { position: absolute; bottom: 50px; display: flex; align-items: center; gap: 40px; }
.feature-num { font-size: 1.3rem; font-weight: bold; color: #f39c12; }
.feature-txt { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }
.feature-divider { width: 1px; height: 25px; background: rgba(255,255,255,0.3); }

/* ОБНОВЛЕННОЕ ФИКСИРОВАННОЕ МЕНЮ */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.1); [cite: 13, 14]
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); [cite: 15]
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease; [cite: 16]
}

/* Эффект при прокрутке */
.sticky-nav.scrolled {
    background: rgba(255, 255, 255, 0.8); [cite: 17]
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); [cite: 18]
}

/* ЭТИ СТИЛИ ВЕРНУТ МЕНЮ В ГОРЗИНТАЛЬНЫЙ ВИД */
.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Выстраивает элементы в ряд */
    justify-content: space-between; /* Распределяет их по ширине */
    align-items: center;
    height: 50px;
}

/* СТИЛЬ ССЫЛОК */
/* Основной стиль ссылок */
.nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.7rem; /* Уменьшил размер до 0.7rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    display: inline-block; /* ОБЯЗАТЕЛЬНО для эффекта увеличения */
    transition: all 0.3s ease; /* Плавность анимации */
}

/* Эффект при наведении */
.nav-list a:hover {
    color: #f39c12 !important;
    transform: scale(1.25); /* Увеличение на 15% */
}

/* Активная кнопка (текущая страница) */
.nav-list a.active {
    color: #f39c12 !important;
    font-weight: 900;
}

/* ЦВЕТ ТЕКСТА ПРИ СКРОЛЛЕ */
.sticky-nav.scrolled .nav-list a {
    color: #333; [cite: 24]
}

/* КНОПКА ПЭТ */
.pet-badge {
    border: none !important; /* Убираем рамку  */
    padding: 10px 15px !important;
}

/* СЕКЦИИ */
.content-section { 
    padding: 120px 20px; 
    text-align: center; 
    background: #fff; 
    position: relative; 
    z-index: 10; 
}

/* Компенсация высоты меню для первой секции */
body { margin: 0; padding: 0; }
.content-section:first-of-type { padding-top: 150px; } 

.content-wrapper { max-width: 750px; margin: 0 auto; }
.section-subtitle { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; color: #f39c12; margin-bottom: 15px; font-weight: bold; }
.content-section h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 25px; font-weight: 300; letter-spacing: 2px; }
.content-section p { max-width: 750px; margin: 0 auto 40px; font-size: 1.1rem; line-height: 1.8; color: #555; }

.btn-more {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    transition: 0.3s;
}
.btn-more:hover { background: #333; color: #fff; }

/* СЕКЦИИ */
.content-section { padding: 120px 20px; text-align: center; background: #fff; position: relative; z-index: 10; }
.content-wrapper { max-width: 750px; margin: 0 auto; }
.section-subtitle { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 4px; color: #f39c12; margin-bottom: 15px; font-weight: bold; }
.content-section h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 25px; font-weight: 300; letter-spacing: 2px; }
.content-section p { max-width: 750px; margin: 0 auto 40px; font-size: 1.1rem; line-height: 1.8; color: #555; }

.btn-more {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    transition: 0.3s;
}
.btn-more:hover { background: #333; color: #fff; }

/* ПАРАЛЛАКС И КАРТИНКИ ДЛЯ ВСЕХ БЛОКОВ */
.parallax-img {
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 5;
}

/* Ссылки-заглушки (замените на свои файлы) */
.img-kvas    { background-image: url('parallax/1.jpg'); }
.img-tech    { background-image: url('parallax/2.jpg'); }
.img-water   { background-image: url('parallax/2.jpg'); }
.img-tech    { background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80'); }
.img-awards  { background-image: url('https://images.unsplash.com/photo-1567427017947-545c5f8d16ad?auto=format&fit=crop&w=1920&q=80'); }
.img-about   { background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80'); }
.img-pet     { background-image: url('https://images.unsplash.com/photo-1551033406-611cf9a28f67?auto=format&fit=crop&w=1920&q=80'); }

/* ФУТЕР */
.site-footer { padding: 100px 20px; background: #111; color: white; text-align: center; }
.site-footer h2 { color: white; font-weight: 300; }
.contact-info { margin: 30px 0; font-size: 1.2rem; }
.btn-more.light { border-color: white; color: white; }
.btn-more.light:hover { background: white; color: black; }

/* ПРОДУКТОВЫЕ БЛОКИ - СТИЛИ ИЗ STYLE9.CSS */
:root { 
    --accent: #f39c12; 
    --dark: #333; 
}

/* ОСНОВНАЯ СЕТКА ПРОДУКТОВ */
.product-block { 
    padding: 80px 0; 
    background: #fff; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
}

.product-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    padding: 0 40px; 
}

.product-info { flex: 1; }
.product-gallery { flex: 1.2; perspective: 1500px; }

/* ТЕКСТОВЫЙ КОНТЕНТ ПРОДУКТОВ */
.product-info h2 { 
    font-size: 3.5rem; 
    margin: 0 0 20px; 
    font-weight: 300; 
    line-height: 1.1; 
}

.product-info p { 
    font-size: 1.1rem; 
    line-height: 1.6; 
    color: #666; 
    margin-bottom: 25px; 
}

.product-features { 
    list-style: none; 
    padding: 0; 
    margin-bottom: 30px; 
}

.product-features li { 
    margin-bottom: 10px; 
    display: flex; 
    align-items: center; 
    font-weight: 600; 
}

.product-features li::before { 
    content: "✓"; 
    color: var(--accent); 
    margin-right: 10px; 
}

/* --- АНИМАЦИЯ ТЕКСТА ПРОДУКТОВ --- */
.product-info h2, 
.product-info p, 
.product-info .section-subtitle, 
.product-info .product-features li, 
.product-info .btn-more {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-info.appeared h2,
.product-info.appeared p,
.product-info.appeared .section-subtitle,
.product-info.appeared .product-features li,
.product-info.appeared .btn-more {
    opacity: 1;
    transform: translateY(0);
}

.product-info.appeared .section-subtitle { transition-delay: 0.1s; }
.product-info.appeared h2 { transition-delay: 0.2s; }
.product-info.appeared p { transition-delay: 0.3s; }
.product-info.appeared .product-features li:nth-child(1) { transition-delay: 0.4s; }
.product-info.appeared .product-features li:nth-child(2) { transition-delay: 0.5s; }
.product-info.appeared .product-features li:nth-child(3) { transition-delay: 0.6s; }
.product-info.appeared .btn-more { transition-delay: 0.7s; }

/* БАЗОВАЯ КАРУСЕЛЬ */
.carousel { 
    position: relative; 
    width: 100%; 
    height: 600px; 
    overflow: hidden; 
    background: radial-gradient(circle, #ffffff 0%, #f2f2f2 100%); 
    border-radius: 20px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); 
}

.slide { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
    pointer-events: none; 
    overflow: hidden; 
}

.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ВАРИАНТЫ АНИМАЦИЙ КАРУСЕЛИ */
.anim-3d .slide { transform: rotateY(-90deg) scale(2); transform-origin: center; }
.anim-3d .slide.active { transform: rotateY(0deg) scale(1); }

.anim-drop .slide { transform: translateY(-100%) scale(0.5); }
.anim-drop .slide.active { transform: translateY(0) scale(1); transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); }

.anim-zoom .slide { transform: scale(0) rotate(-180deg); }
.anim-zoom .slide.active { transform: scale(1) rotate(0deg); }

.anim-shift .slide { transform: translateX(100%); }
.anim-shift .slide.active { transform: translateX(0); }
.anim-shift .slide.prev-slide { transform: translateX(-100%); opacity: 0; }

/* НАВИГАЦИЯ КАРУСЕЛИ */
.nav-box { 
    position: absolute; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.nav-btn { 
    background: #fff; 
    border: none; 
    width: 50px; 
    height: 50px; 
    cursor: pointer; 
    border-radius: 50%; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: 0.3s; 
    font-size: 1.2rem; 
}

.nav-btn:hover { background: var(--accent); color: white; }
.counter { 
    font-family: monospace; 
    font-weight: bold; 
    font-size: 1.1rem; 
    color: var(--dark); 
    background: rgba(255,255,255,0.8); 
    padding: 5px 15px; 
    border-radius: 20px; 
}

/* ПЕРЕКЛЮЧАТЕЛЬ РЕЖИМОВ */
.mode-switcher { 
    position: fixed; 
    top: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 100; 
    background: rgba(255,255,255,0.95); 
    padding: 8px; 
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border: 1px solid #ddd; 
}

.mode-switcher button { 
    border: none; 
    padding: 10px 20px; 
    cursor: pointer; 
    border-radius: 25px; 
    transition: 0.3s; 
    font-size: 12px; 
    font-weight: bold; 
}

.mode-switcher button.active { background: var(--accent); color: white; }

/* ЭФФЕКТ ПАРАЛЛАКСА ПРОДУКТОВ */
.parallax-wrapper {
    position: relative;
    height: 600px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.parallax-content h3 {
    font-size: 3.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 300;
}

.footer-spacer {
    height: 40px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* АНИМАЦИИ */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards ease-out; }
.animate-fade-in { opacity: 0; animation: fadeIn 1.5s forwards ease-in; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* Адаптивность */
@media (max-width: 768px) {
    .parallax-img { background-attachment: scroll; height: 40vh; }
    .nav-list { flex-wrap: wrap; height: auto; padding: 10px 0; gap: 10px; justify-content: center; }
    .product-container { flex-direction: column; padding: 0 20px; gap: 40px; }
    .product-info h2 { font-size: 2.5rem; }
    .carousel { height: 400px; }
}

/* Квас - мягкий соломенный/бежевый оттенок */
#kvas-section {
    background-color: #fdfaf2; 
}

/* Газировка - свежий бледно-зеленоватый (мятный) оттенок */
#soda-section {
    background-color: #f2fdfa;
}

/* Вода - легкий арктический голубой оттенок */
#water-section {
    background-color: #f2f7fd;
}

/* Плавный переход фона при скролле */
.product-block {
    transition: background-color 0.6s ease;
}
/* ========== НОВЫЕ БЛОКИ ========== */

/* ЦВЕТА СЕКЦИЙ */
#kvas-section        { background-color: #fdfaf2; }
#denli-new-section   { background-color: #f5f2fd; }
#lemonade-section    { background-color: #fffdf5; }
#denli-aqua-section  { background-color: #f0f8ff; }
#fresh-up-section    { background-color: #f2fdf5; }
#blast-boost-section { background-color: #1a1a2e; }

#blast-boost-section .product-info h2 { color: #ffffff; }
#blast-boost-section .product-info p  { color: #aaaaaa; }
#blast-boost-section .product-info .section-subtitle { color: #ff4655; }
#blast-boost-section .product-features li { color: #dddddd; }
#blast-boost-section .btn-more { border-color: #ff4655; color: #ff4655; }
#blast-boost-section .btn-more:hover { background: #ff4655; color: #fff; }

/* ЛИМОНАДЫ — ВКЛАДКИ */
.lemonade-block { display: block; padding: 80px 0 0; }

.lemonade-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.lemonade-header {
    text-align: center;
    padding-bottom: 50px;
}

.lemonade-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin: 0 0 35px;
    letter-spacing: 2px;
}

.lemonade-tabs {
    display: inline-flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #f7f7f7;
}

.lemonade-tab {
    padding: 13px 32px;
    border: none;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.lemonade-tab.active {
    background: #f39c12;
    color: #fff;
    border-radius: 50px;
}

.lemonade-tab:hover:not(.active) { color: #f39c12; }

.lemonade-panel { display: none; padding-bottom: 80px; }
.lemonade-panel.active { display: block; animation: fadeIn 0.4s ease; }

/* Отступ между кнопкой и табами внутри панели */
.lemonade-panel .product-info .btn-more {
    margin-bottom: 0;
}

/* КОНТАКТЫ */
.contacts-section {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}
.contacts-container { max-width: 1000px; margin: 0 auto; }
.contacts-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin: 10px 0 20px;
    letter-spacing: 2px;
}
.contacts-desc {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.contact-card {
    padding: 40px 20px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #f39c12;
}
.contact-icon { font-size: 2rem; margin-bottom: 15px; }
.contact-card h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f39c12;
    margin: 0 0 10px;
    font-weight: 700;
}
.contact-card p { font-size: 0.95rem; color: #555; margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
    .contacts-grid { grid-template-columns: 1fr 1fr; }
    .lemonade-tabs { flex-wrap: wrap; border-radius: 12px; }
    .lemonade-tab { padding: 10px 16px; font-size: 0.65rem; }
}

/* Отступ от кнопки до низа в лимонадах */
.lemonade-panel .product-info .btn-more {
    display: inline-block;
    margin-bottom: 0;
}

/* Отступ сверху у панели контента */
.lemonade-panel .product-container {
    padding-top: 20px;
}

/* Разделительная линия между хедером и панелью */
.lemonade-header {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 0;
}

/* Вкладки лимонадов — под кнопкой */
.lemonade-block .lemonade-tabs {
    display: inline-flex;
    margin-top: 28px;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #f7f7f7;
}

/* Убрать старый header */
.lemonade-header { display: none; }
.lemonade-block { padding: 80px 0; }
.lemonade-panel .product-container { padding-top: 0; }

/* ВИДЕО В БЛОКЕ BLAST BOOST */
.energy-video-wrap {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.energy-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .energy-video-wrap { height: 400px; }
}

/* ПАРАЛЛАКС С ВИДЕО */
.parallax-video-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.parallax-video-wrap .parallax-overlay {
    z-index: 1;
}

.parallax-video-wrap .parallax-content {
    z-index: 2;
}

/* Видео параллакса чуть больше блока, чтобы при смещении не было пустот */
.parallax-video {
    height: 160%;
    top: -30%;
    will-change: transform;
}

/* Высота параллакс-блоков — 300px */
.parallax-wrapper,
.parallax-video-wrap {
    height: 300px;
}

/* Фикс серого фона при параллакс-скролле видео */
.parallax-video-wrap {
    background: #000;
    overflow: hidden;
}

.parallax-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200%;
    min-width: 100%;
    object-fit: cover;
    will-change: transform;
}
