/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #edc70d;
    font-size: 16px;
    line-height: 150%;
    margin-left: 3%;
}

/* HEADER */
.header {
    background: #111827;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: relative;
}

p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 18px;
}
/* отступ между текстом*/
.seo-text p {
    font-size: 18px;
    color: black;
    white-space: pre-line;
}
/* картинки блок модели */
.models-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.models-gallery img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 30px;
}


/* картинки блок */


.image-block {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.image-block img {
    width: calc(50% - 10px);
    max-width: 600px;
    height: auto;

    border-radius: 20px;
    object-fit: cover;

    box-shadow: 0 10px 30px rgba(17, 1, 1, 0.35);
    transition: 0.3s ease;

}

.image-block img:hover {
    transform: scale(1.02);
}

/* Адаптивность */
@media (max-width: 768px) {
    .image-block img {
        width: 100%;
    }
}
/*картинки*/


/* точки */
.navigation {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.navigation label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: white;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

#about-us {
    margin: 40px 0;
}

#about-us .faq .question {
    margin-bottom: 20px;
}

#about-us h3 {
    font-weight: bold;
    margin-bottom: 5px;
}

#about-us p {
    margin-left: 10px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* MENU */
.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 8px 10px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    top: 35px;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* CONTENT */
.container {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #111827;
    color: white;
    margin-top: 50px;
}

/* 🔥 BURGER BUTTON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   📱 TABLET (<= 900px)
========================= */
@media (max-width: 900px) {

    .menu {
        gap: 10px;
    }

    .container {
        margin: 30px 15px;
    }
}

/* =========================
   📱 MOBILE (<= 768px)
========================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        color: white;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #111827;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    .menu.active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #1f2937;
    }

    .dropdown-content a {
        color: white;
    }
}


/* отзывы css */

/* Общие стили для секции отзывов */
.reviews-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Сетка (Grid) для карточек */
.reviews-container {
    display: grid;
    /* Автоматически создает колонки: минимум 300px, максимум — делят место поровну */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; /* Расстояние между карточками */
    max-width: 1200px;
    margin: 0 auto;
}

/* Стили самой карточки */
.review-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

/* Эффект при наведении */
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Верхняя часть карточки (аватар + имя) */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Аватарка пользователя */
.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ddd;
}

/* Блок с именем и звездами */
.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

/* Звездочки рейтинга */
.review-rating {
    color: #ffcc00;
    font-size: 14px;
    margin-top: 4px;
}

/* Текст отзыва */
.review-text {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1; /* Чтобы карточки были одинаковой высоты, даже если текста разное количество */
}




/* номер тел */

    .sticky-phone {
      position: fixed;
      top: 15px;
      left: 50px;
      z-index: 9999;
      background-color: #ffffff;
      color: #111111;
      padding: 10px 15px;
      border-radius: 8px;
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 16px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
      transition: transform 0.2s ease, background-color 0.2s ease;
    }
    .sticky-phone:hover {
      background-color: #f5f5f5;
      transform: translateY(-2px);
    }
    @media (max-width: 400px) {
      .sticky-phone {
        left: 15px;
        font-size: 14px;
        padding: 8px 12px;
      }
    }

