/*
Theme Name: Media Chant - Understrap Child
Theme URI: https://mediachant.net
Description: Простая дочерняя тема для Understrap для сайта Media Chant
Author: Ваше имя
Author URI: https://mediachant.net
Template: understrap
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: mediachant
*/

/* Импортируем стили родительской темы */
@import url("../understrap/style.css");

/* Стили для Media Chant */

/* Градиентный фон для хедера и футера */
.gradient-bg {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
    color: white;
}

/* Верхняя секция (герой) */
.hero-section {
    padding: 3rem 0;
    text-align: center;
}

.hero-section .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Меню навигации */
.navbar {
    background-color: white;
}

/* Стили для разделов */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.separator {
    width: 50px;
    height: 2px;
    background-color: #db2777;
    margin: 0 auto 2rem;
}

/* About секция */
.about-section {
    padding: 3rem 0;
    background-color: white;
}

.about-image {
    border-radius: 50%;
    max-width: 100%;
}

/* Сервисы */
.services-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

/* Контакты */
.contact-section {
    padding: 3rem 0;
    background-color: white;
    text-align: center;
}

.contact-button {
    background-color: #9333ea;
    border-color: #9333ea;
    color: white;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 1rem;
}

.contact-button:hover {
    background-color: #db2777;
    border-color: #db2777;
    color: white;
}

/* Футер */
.footer-section {
    padding: 3rem 0 1.5rem;
}

.footer-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 2rem 0 1.5rem;
}

.copyright {
    text-align: center;
}

/* Стили для списков в about секции */
.services-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.services-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.services-list li::before {
    content: "•";
    color: #db2777;
    position: absolute;
    left: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .about-content .row {
        flex-direction: column-reverse;
    }

    .about-image {
        margin-bottom: 2rem;
    }
}