/* --- Шрифты --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

html body {
    font-family: 'Lato', sans-serif !important;
    line-height: 1.6 !important;
    background-color: #ffffff !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* --- Заголовки --- */
html body h1, html body h2, html body h3, html body h4 {
    font-family: 'Playfair Display', serif !important;
    color: #222 !important;
    margin-bottom: 0.4em !important;
    letter-spacing: 0.5px !important;
}

/* --- Контейнер --- */
html body .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* --- Кнопки --- */
html body button,
html body .btn,
html body input[type="submit"] {
    background: #d4a373 !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border: none !important;
    border-radius: 30px !important;
    font-size: 1em !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
html body button:hover,
html body .btn:hover,
html body input[type="submit"]:hover {
    background: #c08a58 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
}

/* --- Секции --- */
html body section {
    padding: 60px 0 !important;
}

/* --- Instagram-блок --- */
html body .instagram-feed {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 15px !important;
}
html body .instagram-feed img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}
html body .instagram-feed img:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

/* --- Анимация при скролле --- */
html body .fade-in {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    animation: fadeInUp 1s forwards !important;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Мобильная версия --- */
@media (max-width: 768px) {
    html body h1 {
        font-size: 1.8em !important;
    }
    html body h2 {
        font-size: 1.5em !important;
    }
    html body .btn,
    html body button,
    html body input[type="submit"] {
        width: 100% !important;
        padding: 14px !important;
    }
}
