/* style.css — тёмная версия */

/* Базовые настройки */
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    color: #fff; /* белый текст на чёрном фоне */
    background-color: #000; /* чёрный фон */
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 15px 30px 15px; /* верх 20px, низ 30px */
    background-color: #000; /* чёрный фон */
}

.hero-content img.logo {
    display: block;
    margin: 10px auto 10px auto; /* сверху 10px, снизу 10px, центрирование */
    max-width: 200px;
    height: auto;
}

.hero-content .tagline {
    font-size: 1.5rem;
    margin: 10px 0;
    font-weight: 500;
    color: #fff;
}

.hero-content .description {
    font-size: 1rem;
    margin: 20px auto 0 auto;
    max-width: 520px;
    color: #ccc;
    text-align: justify; /* ВОТ ЭТО ключ */
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    text-align: center;
    padding: 30px 15px;
    background-color: #111; /* немного отличающийся темный фон */
}

.reviews h2 {
    margin-bottom: 20px;
}

/* Location Section */
.location {
    text-align: center;
    padding: 30px 15px;
    background-color: #000; /* чёрный фон */
}

.location h2 {
    margin-bottom: 20px;
}

.location iframe {
    border: 0;
    width: 100%;
    max-width: 800px;
    height: 450px;
}

.location .address {
    font-size: 0.9rem;   /* чуть меньше, чем заголовок */
    color: #ccc;         /* светло-серый, гармонирует с текстом */
    text-align: center;  /* чтобы красиво стояло под Find us */
    margin-bottom: 15px; /* немного отступа до карты */
    font-weight: 400;    /* обычный шрифт */
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 5px 0 5px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn.primary {
    background-color: #ff5e57;
    color: #fff;
}

.btn.secondary {
    background-color: #333;
    color: #fff;
}

/* Изображения */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* GALLERY */
.gallery {
    padding: 20px 15px;
    background-color: #000;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 10px;
}

.swiper {
    width: 100%;
    max-width: 900px; /* было больше — теперь компактнее */
    margin: 0 auto;
}

.swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    position: relative;

    aspect-ratio: 3 / 4; /* 🔥 главное — фиксируем формат */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* кроп без искажений */
}

/* затемнение как у баров */
.swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    transition: 0.3s;
}

.swiper-slide:hover::after {
    background: rgba(0,0,0,0);
}

.instagram-follow {
    text-align: center;
    padding: 25px 15px;       /* чуть больше отступов */
    margin-bottom: 30px;
    background-color: #111;    /* совпадает с блоком отзывов */
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;         /* увеличиваем текст */
    transition: color 0.3s;
}

.instagram-link:hover {
    color: #E1306C; /* фирменный цвет Instagram при наведении */
}

.insta-icon {
    width: 28px;               /* увеличиваем иконку */
    height: 28px;
    margin-right: 10px;        /* чуть больше отступ */
}


