/* Базови настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    color: #2c3e50;
    line-height: 1.6;
    background-color: #fdfdfd;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Навигационна лента */
.navbar {
    background-color: #1a252f;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
}

.nav-links a:hover, .nav-links a.active {
    color: #f39c12;
}

.btn-nav {
    background-color: #f39c12;
    color: #fff !important;
}

.btn-nav:hover {
    background-color: #e67e22 !important;
}

/* Хедър с фонова снимка head.jpg */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('head.jpg') no-repeat center center/cover;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(243,156,18,0.4);
}

.cta-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

/* Структура на секциите */
.section-container {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f4f6f7;
    max-width: 100%;
    padding-left: calc((100% - 1200px)/2 + 50px);
    padding-right: calc((100% - 1200px)/2 + 50px);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.mt-5 { margin-top: 60px; }

/* Карти за оферти */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.offer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.offer-info {
    padding: 25px;
}

.offer-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

/* Удобства с икони */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.icon-wrap {
    font-size: 45px;
    color: #f39c12;
    margin-bottom: 20px;
}

.amenity-item h3 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 8px;
}

.amenity-item p {
    color: #7f8c8d;
}

/* Отзиви */
.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 35px;
    border-radius: 4px;
    border-left: 5px solid #f39c12;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.review-text {
    font-style: italic;
    font-size: 17px;
    margin-bottom: 15px;
}

.review-author {
    color: #95a5a6;
    text-align: right;
}

/* Форма за Резервации */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdde1;
    border-radius: 5px;
    font-size: 16px;
}

.captcha-box {
    display: flex;
    gap: 15px;
    align-items: center;
}

#captcha-code {
    background: #f1f2f6;
    padding: 10px 25px;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: monospace;
    border-radius: 4px;
    border: 1px dashed #718093;
}

.submit-btn {
    width: 100%;
    background-color: #1a252f;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #f39c12;
}

/* Контакти и Локация */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-info i {
    color: #f39c12;
    margin-right: 10px;
    width: 25px;
}

/* Слайдшоу за Галерия */
.slideshow-container {
    max-width: 850px;
    position: relative;
    margin: 0 auto 60px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mySlides { display: none; }

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    background-color: rgba(0,0,0,0.5);
    user-select: none;
}

.next { right: 0; }

.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }

.text {
    color: #fff;
    font-size: 16px;
    padding: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(26,37,47,0.75);
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from {opacity: .4} to {opacity: 1}
}

/* Film-strip Рамка (Ефект на лента) */
.film-strip-grid, .video-film-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.video-film-strip {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.film-item {
    background: #111;
    padding: 20px 12px;
    border-top: 14px dashed #fff;
    border-bottom: 14px dashed #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.film-item img, .film-item video {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border: 2px solid #000;
}

.film-item video {
    aspect-ratio: 16/9;
}

/* Футър */
.footer {
    background-color: #1a252f;
    color: #bdc3c7;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* Мобилна адаптивност */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 8px 12px;
    }
    .section-container {
        padding: 50px 20px;
    }
    .reviews-container, .contacts-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}