body {
    margin: 0;
    font-family: 'Russo One', sans-serif;
    background-color: #0d0d0d;
    color: #fff;
    scroll-behavior: smooth;
}

header#hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

header#hero .overlay {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn {
    background-color: #e60023;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #ff0033;
}

.card img,
.project img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    cursor: grab;
}

/* Логотип */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}
.logo img {
    height: 100px;
}

/* Заголовки секций */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}
.divider {
    width: 80px;
    height: 4px;
    background: rgba(255, 0, 0, 0.7); /* Красная с прозрачностью */
    margin: 0 auto;
    border-radius: 2px;
}

/* Адаптация для тёмного фона */
body {
    background-color: #000;
    color: #fff;
}

#contact {
    text-align: center;
}

#contact .contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}


.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn.order-btn {
    background: linear-gradient(45deg, #1e9600, #6ecc3a); /* Зелёный градиент */
    border-radius: 5px; /* Как у основной кнопки */
    box-shadow: none; /* Убираем тень */
}

.btn.order-btn:hover {
    background: linear-gradient(45deg, #6ecc3a, #1e9600); /* Инвертируем градиент */
    transform: none; /* Убираем трансформацию */
}

/* Стили для отзывов */
.testimonial {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.client-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
    border: 3px solid #e60023;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 60px;
    color: rgba(230, 0, 35, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
}

.client-info h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.client-position {
    color: #aaa;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .testimonial {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .client-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
        top: -40px;
    }
}

#about {
    padding: 80px 20px;
    background: #0d0d0d;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-photo {
    flex: 1;
    text-align: center;
}

.about-photo img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #e60023;
    box-shadow: 0 5px 20px rgba(230, 0, 35, 0.5);
}

.about-text {
    flex: 2;
    max-width: 600px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ddd;
}

/* Адаптив */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-photo img {
        width: 200px;
        height: 200px;
    }
}
