/*
Theme Name: Clinic Theme
Theme URI: https://gleb1.manager888.fvds.ru/
Author: Harmony Med
Author URI: https://gleb1.manager888.fvds.ru/
Description: Тема для клиники "Гармония Мед"
Version: 1.0
*/

/* Базовые сбросы */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    color: #2c3e50;
    font-size: 24px;
}

/* Кнопка записи */
.appointment-button-container {
    margin: 20px 0;
}

.method-button, 
.header-appointment-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.method-button:hover,
.header-appointment-button:hover {
    background: #2980b9;
}

/* Баннер */
.main-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.main-banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Блоки секций */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 28px;
}

h3 {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 22px;
}

/* УТП блок */
.utp-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.utp-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.utp-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Списки */
.symptoms-list,
.advantages-list {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.symptoms-list li,
.advantages-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.advantages-list li {
    padding-left: 30px;
    position: relative;
}

.advantages-list li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
}

/* Стадии */
.stages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stage-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Алгоритм лечения */
.algorithm-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.algorithm-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Врач */
.doctor-details {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.doctor-photo img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Отзывы */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.review-rating {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Рейтинги */
.ratings-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 30px 0;
}

.rating-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 150px;
}

.rating-stars {
    color: #f39c12;
    font-size: 24px;
    margin: 10px 0;
}

/* Контакты */
.contacts-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Футер */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #3498db;
}

/* Адаптивность */
@media (max-width: 768px) {
    .symptoms-list,
    .advantages-list {
        columns: 1;
    }
    
    .doctor-details {
        flex-direction: column;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-banner h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}
