body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #4a4a4a;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #0008ff;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header-logo {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

header a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

header a:hover {
    color: #ffd700;
}

header nav {
    display: flex;
    gap: 20px;
    padding-right: 0;
}

.hero {
    height: 100vh;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.hero p {
    font-size: 1rem;
    margin: 20px 0;
    font-weight: 400;
    opacity: 0.9;
}

.hero .btn {
    background-color: #ffd700;
    color: #6b4423;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
    background-color: #e6c200;
}

section {
    padding: 10px;
    margin: 10px;
    border-radius: 15px;
}

section h2 {
    font-size: 2rem;
    color: #6b4423;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

section p, section ul {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

section ul li::before {
    content: '•';
    color: #ffd700;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.gallery-slider {
    position: relative;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 15px;
    flex-shrink: 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.2rem;
}

.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .gallery-slider {
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .gallery-slider {
        height: 500px;
    }
}

.price-subsection {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 15px;
}

.price-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.price-media {
    flex: 1;
    display: flex;
    justify-content: center;
}

.price-description {
    flex: 1;
    text-align: center;
    margin-right: 0;
}

.price-description h3 {
    font-size: 1.5rem;
    color: #6b4423;
    margin-bottom: 10px;
}

.price-description p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.price-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.price-table th, .price-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.price-table th {
    background-color: #6b4423;
    color: #fff;
    font-weight: 600;
}

.price-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

footer {
    background: linear-gradient(to right, #6b4423, #8b5a2b);
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer:hover {
    background: linear-gradient(to right, #8b5a2b, #a87c52);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close:hover {
    color: #ffd700;
}

#caption {
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 10px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 90%;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    box-sizing: border-box;
}

.booking-form h3 {
    font-size: 1.5rem;
    color: #6b4423;
    margin-bottom: 15px;
    text-align: center;
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #4a4a4a;
}

.booking-form input, .booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.booking-form button {
    background-color: #ffd700;
    color: #6b4423;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.booking-form button:hover {
    background-color: #e6c200;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #6b4423;
}

@media (min-width: 768px) {
    .header-logo {
        font-size: 2rem;
    }

    header a {
        font-size: 1.1rem;
    }

    header nav {
        gap: 30px;
        padding-right: 50px;
    }

    .hero h2 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .hero .btn {
        padding: 12px 24px;
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    section p, section ul {
        font-size: 1.1rem;
    }

    .gallery-slider {
        width: 70%;
        height: 400px;
    }

    .price-content {
        flex-direction: row;
    }

    .price-description {
        text-align: left;
        margin-right: 20px;
    }

    .contact-content {
        flex-direction: row;
    }

    .contact-info {
        max-width: 45%;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .header-logo {
        font-size: 2.5rem;
    }

    header a {
        font-size: 1.2rem;
    }

    header nav {
        gap: 50px;
        padding-right: 150px;
    }

    .hero h2 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .hero .btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    section p, section ul {
        font-size: 1.1rem;
    }

    .gallery-slider {
        width: 50%;
        height: 500px;
    }

    .price-content {
        justify-content: space-between;
    }

    .price-description {
        max-width: 50%;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-info {
        max-width: 45%;
    }
}

.google-map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 15px;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-button i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.social-button.whatsapp {
    background-color: #25D366;
}

.social-button.whatsapp:hover {
    background-color: #128C7E;
}

.social-button.vk {
    background-color: #4C75A3;
}

.social-button.vk:hover {
    background-color: #2A5885;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .contact-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
        max-width: 500px;
    }

    .booking-form {
        flex: 1;
        max-width: 500px;
    }
}