:root {
    --olive: #7A8B63;
    --mint: #B5CDA3;
    --eucalyptus: #8BA888;
    --light-mint: #E8F0E0;
    --dark-text: #3D4A3D;
    --warm-white: #FDF8F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--warm-white);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Шрифты как на флаере */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: var(--olive);
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--eucalyptus);
}

/* Кнопки */
.btn-custom {
    background-color: var(--olive);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--olive);
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--olive);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(122, 139, 99, 0.3);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--olive);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--olive);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--olive);
    color: white;
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--olive);
    border: 2px solid var(--olive);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background-color: var(--olive);
    color: white;
}

/* Секции */
.header {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(181, 205, 163, 0.3);

    top: 0;
    z-index: 1000;
}

.hero-section {
    padding: 60px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdf8f4 0%, #f5f0ea 100%);
}

.min-vh-75 {
    min-height: 75vh;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--mint));
    border-radius: 2px;
}

.divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Изображения */
.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(122, 139, 99, 0.2);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive);
}

/* Карточки статей */
.articles-section {
    background: white;
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--olive);
}

.article-card {
    background: var(--warm-white);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 139, 99, 0.15);
}

.article-card .card-img-top {
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid var(--mint);
}

.article-card .card-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
}

.article-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Социальные сети */
.contacts-section {
    background: var(--light-mint);
    padding: 80px 0;
}

.social-links-wrapper {
    background: white;
    padding: 50px !important;
}



/* Стили для соцсетей */
.social-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--olive);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 100px;
    background: transparent;
}

.social-link svg {
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: block;
}

/* При наведении */
.social-link:hover {
    color: #ffffff !important;
    background: var(--olive) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 139, 99, 0.3);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Текст под иконкой */
.social-link .small {
    color: inherit;
    font-size: 0.75rem;
    margin-top: 4px;
}
.text-custom {
    color: var(--olive);
}

.contacts-section a {
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.contacts-section a:hover {
    color: var(--olive);
}

/* Футер */
.footer {
    background: var(--dark-text);
    color: white;
}

.footer a {
    color: var(--mint);
    text-decoration: none;
}

/* Модальное окно */
.modal-content {
    border: none;
    border-radius: 20px;
}

.modal-header {
    border-bottom: 2px solid var(--light-mint);
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: var(--olive);
}

/* Адаптив */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2rem;
    }

    .hero-section {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .social-link {
        min-width: 80px;
        padding: 10px 15px;
    }

    .social-link i {
        font-size: 2rem;
    }
}

/* Стили для текста "Обо мне" */
.about-text h3 {
    color: var(--olive);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.about-text h4 {
    color: var(--olive);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-text ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--olive);
    font-size: 1.2rem;
}

/* Для списков с эмодзи 🔹 используем псевдоэлемент */
.about-text ul li[data-icon="🔹"]::before {
    content: "🔹";
}

.about-text .highlight-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text .italic-text {
    font-style: italic;
    color: #5A6B4A;
}

.about-text .conclusion {
    font-weight: 500;
    color: var(--olive);
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    border-top: 2px solid var(--light-mint);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.about-text strong {
    color: var(--dark-text);
}