/* Общие стили */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #5C4500; /* золотисто-коричневый фон */
    color: #FFD700; /* золотой текст */
}

/* ----------------- Шапка ----------------- */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.7);
    padding: 20px 50px;
}

/* Лого + слоган */
.logo-container {
    display: flex;
    align-items: center; /* вертикальное выравнивание */
    gap: 20px;           /* расстояние между лого и текстом */
    justify-content: flex-start; /* логотип слева */
    flex-wrap: wrap;      /* разрешаем переносить при необходимости */
}

/* Текст рядом с логотипом */
.logo-text {
    max-width: 600px; /* ограничение ширины текста */
    opacity: 0; /* скрываем до анимации */
    animation: fadeIn 1.5s ease forwards; /* 1.5 секунды */
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 10px 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

.logo-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #FFD700;
    margin: 0;
    line-height: 1.5;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

/* Анимация появления */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Меню */
header nav {
    margin-top: 20px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.menu-btn {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    color: #FFD700;
    font-weight: 700;
    font-size: 22px;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 215, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.menu-btn:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* ----------------- Основной контент ----------------- */
main {
    padding: 50px;
}

/* Заголовки разделов */
h2 {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #FFD700;
}

/* Блоки услуг */
.service-block {
    background-color: #000000;
    color: #FFD700;
    margin: 40px auto;
    padding: 25px;
    border-radius: 15px;
    max-width: 1000px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.service-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 25px;
}

.service-block img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 12px;
}

.service-list {
    list-style-type: disc;
    padding-left: 25px;
    line-height: 1.8;
    font-size: 18px;
}

/* ----------------- Галерея работ ----------------- */
.works-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.works-gallery img, .works-gallery video {
    width: 340px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

.works-gallery img:hover, .works-gallery video:hover {
    transform: scale(1.05);
}

video {
    display: block;
}

/* ----------------- Контакты ----------------- */
footer {
    background-color: #000000;
    color: #FFD700;
    text-align: center;
    padding: 35px 15px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

footer .social-buttons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.whatsapp-btn, .instagram-btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000000;
    background: #FFD700;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover, .instagram-btn:hover {
    background: #FFC107;
    transform: translateY(-3px);
}

/* ----------------- Адаптив ----------------- */
@media screen and (max-width: 1200px) {
    .logo {
        height: 100px;
    }
    .logo-text h1 {
        font-size: 24px;
    }
    .logo-text p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    header nav {
        gap: 15px;
    }
    .menu-btn {
        font-size: 18px;
        padding: 10px 15px;
    }
    .works-gallery img, .works-gallery video {
        width: 90%;
    }
    .service-block {
        padding: 20px;
    }
}
