/* 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: 15px auto 0 auto;
    max-width: 600px;
    color: #ccc; /* чуть светлее для текста описания */
}

/* 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;
}

/* Кнопки */
.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);
}

