/**
 * Готовые CSS классы для использования в Elementor
 * 
 * Как использовать:
 * 1. Выберите виджет в Elementor
 * 2. Перейдите в Advanced → CSS Classes
 * 3. Добавьте нужный класс из списка ниже
 */

/* ========================================
   HEADER CLASSES
   ======================================== */

/* Класс для основного header контейнера */
.ablesheet-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 65px;
    z-index: 1000;
    height: 168px;
    box-sizing: border-box;
}

/* Класс для логотипа в header */
.ablesheet-logo {
    width: 99px;
    height: 100px;
}

.ablesheet-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Класс для навигационного меню */
.ablesheet-nav-menu {
    display: flex;
    gap: 78px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ablesheet-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.ablesheet-nav-menu a:hover {
    opacity: 0.8;
}

/* Класс для иконки поиска */
.ablesheet-search-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ========================================
   FOOTER CLASSES
   ======================================== */

/* Класс для основного footer контейнера */
.ablesheet-footer {
    background: #03162e;
    padding: 69px 267px;
    min-height: 311px;
}

/* Класс для footer content wrapper */
.ablesheet-footer-content {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

/* Класс для логотипа в footer */
.ablesheet-footer-logo {
    width: 154px;
    height: 154px;
    margin-right: 211px;
}

.ablesheet-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Класс для footer навигации */
.ablesheet-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-right: 211px;
}

.ablesheet-footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ablesheet-footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.ablesheet-footer-nav a:hover {
    opacity: 0.8;
}

/* Класс для контактной информации в footer */
.ablesheet-footer-contact {
    color: #fff;
    font-size: 18px;
    opacity: 0.8;
    line-height: 1.5;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 500;
}

.ablesheet-footer-contact p {
    font-size: 20px;
    margin-bottom: 52px;
}

.ablesheet-footer-contact p:first-child {
    font-size: 18px;
    margin-bottom: 52px;
}

.ablesheet-footer-contact p:last-child {
    margin-bottom: 0;
}

/* ========================================
   BUTTON CLASSES
   ======================================== */

/* Основная кнопка темы */
.ablesheet-btn-primary {
    background: #04316a;
    color: #fff;
    padding: 16px 63px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    height: 56px;
}

.ablesheet-btn-primary:hover {
    background: #062a54;
}

/* ========================================
   SECTION TITLE CLASSES
   ======================================== */

/* Заголовок секции */
.ablesheet-section-title {
    font-size: 40px;
    font-weight: bold;
    color: #04316a;
    text-transform: uppercase;
    margin-bottom: 110px;
    line-height: normal;
}

/* ========================================
   PRODUCT CARD CLASSES
   ======================================== */

/* Карточка продукта */
.ablesheet-product-card {
    background: #f1f1f1;
    height: 251px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.ablesheet-product-card.dark {
    background: #04316a;
}

.ablesheet-product-card .card-title {
    position: absolute;
    top: 29px;
    left: 22px;
    font-size: 20px;
    font-weight: bold;
    color: #04316a;
    max-width: 291px;
    line-height: normal;
    font-family: 'Inter', sans-serif;
}

.ablesheet-product-card.dark .card-title {
    color: #fff;
}

/* ========================================
   HERO SECTION CLASSES
   ======================================== */

/* Hero секция */
.ablesheet-hero {
    position: relative;
    height: 964px;
    overflow: hidden;
}

.ablesheet-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 68.432%, rgba(0, 0, 0, 0.6) 100%),
        linear-gradient(270deg, rgba(255, 0, 0, 0.5) 0%, rgba(28, 45, 205, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero заголовок */
.ablesheet-hero-title {
    font-size: 90px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 7px;
}

.ablesheet-hero-title .red-text {
    color: #FF0000;
}

/* Hero описание */
.ablesheet-hero-description {
    font-size: 29px;
    color: #fff;
    font-weight: 500;
    max-width: 839px;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE CLASSES
   ======================================== */

/* Адаптивные классы для мобильных устройств */
@media (max-width: 1440px) {
    .ablesheet-hero-title {
        font-size: 70px;
    }

    .ablesheet-header,
    .ablesheet-footer {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 768px) {
    .ablesheet-hero-title {
        font-size: 50px;
    }

    .ablesheet-nav-menu {
        display: none;
    }

    .ablesheet-header {
        padding: 20px;
        height: auto;
    }

    .ablesheet-footer {
        padding: 40px 20px;
    }

    .ablesheet-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .ablesheet-footer-logo,
    .ablesheet-footer-nav {
        margin-right: 0;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Текст с акцентным цветом */
.ablesheet-text-accent {
    color: #FF0000;
}

/* Текст с основным цветом */
.ablesheet-text-primary {
    color: #04316a;
}

/* Белый текст */
.ablesheet-text-white {
    color: #ffffff;
}

/* Центрирование текста */
.ablesheet-text-center {
    text-align: center;
}

/* Жирный текст */
.ablesheet-text-bold {
    font-weight: bold;
}

/* Uppercase текст */
.ablesheet-text-uppercase {
    text-transform: uppercase;
}

/* Контейнер с максимальной шириной */
.ablesheet-container {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

/* Padding для секций */
.ablesheet-section-padding {
    padding: 100px 267px;
}

@media (max-width: 1440px) {
    .ablesheet-section-padding {
        padding: 80px 100px;
    }
}

@media (max-width: 768px) {
    .ablesheet-section-padding {
        padding: 60px 20px;
    }
}