/*
Theme Name: Санэк
Theme URI: https://sanek.zabota-64.ru/
Author: ООО «Санэк»
Author URI: https://sanek.zabota-64.ru/
Description: Кастомная тема WordPress для сайта компании по экологии и охране труда
Version: 1.0.0
Text Domain: sanek
*/

/* Основные стили */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    color: #000;
    font-weight: 700;
}

/* Ссылки */
a {
    color: #FF6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e55a00;
    text-decoration: none;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #FF6600;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e55a00;
    text-decoration: none;
}

/* Сброс стилей для меню WordPress */
#primary-menu,
.menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#primary-menu li,
.menu li {
    list-style: none !important;
    margin: 0 !important;
}

/* Стили для главной страницы */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section h1 {
        font-size: 1.8em !important;
    }
    
    .services-grid,
    .advantages-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

