/* 1. Утилиты и Анимации */
@import url('animations.css');

/* 2. Общие блоки (Layout) */
@import url('sections/header.css');
@import url('sections/footer.css');

/* 3. Секции Главной страницы */
@import url('sections/hero.css');
@import url('sections/about.css');
@import url('sections/sky_gold.css');
@import url('sections/benefits.css');
@import url('sections/products.css');
@import url('sections/divider_logo.css');
@import url('sections/process.css');
@import url('sections/testimonials.css');
@import url('sections/contact.css');

:root {
    --primary: #2A363B;
    --secondary: #E84A5F;
    --accent: #FF847C;
    --light: #FECEAB;
    --text: #2A363B;
    --background: #F9F9F9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* ✨ ГЛАВНОЕ: Включаем плавную прокрутку */
    scroll-behavior: smooth;
    /* Делаем отступ при скролле к якорю, чтобы Header не перекрывал контент */
    /* Значение должно быть равно высоте шапки (примерно 80-100px) */
    scroll-padding-top: 100px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 100px 0; position: relative; }

/* Общий компонент: Кнопка */
.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}
.btn:before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn:hover:before { left: 100%; }
.btn:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Общий компонент: Формы */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd;
    border-radius: 5px; font-size: 1rem;
    font-family: 'Raleway', sans-serif; transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(232,74,95,0.2);
}
