/* Import Open Sans font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #E6E6E6;
}

.gallery-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.gallery-wrapper {
    flex: 1;
}

.main-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

#mainImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnails-container {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    justify-content: center;
}

.thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 4px;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    border: 2px solid #007bff;
}

.content-container {
    flex: 1;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#slideTitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.slide-content {
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.social-info {
    color: #007bff;
    margin-bottom: 30px;
    font-size: 14px;
}

.book-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.book-button:hover {
    background-color: #0056b3;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.tiktok-button {
    background-color: #010101;
    color: #fff;
}
.tiktok-button:hover {
    background-color: #222;
}

.instagram-button {
    background: linear-gradient(45deg, #fd1d1d, #833ab4, #fcb045);
    color: #fff;
    border: none;
}
.instagram-button:hover {
    filter: brightness(0.9);
}

.contact-button {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.call-button {
    background-color: #28a745;
    color: white;
}

.call-button:hover {
    background-color: #218838;
}

.email-button {
    background-color: #6c757d;
    color: white;
}

.email-button:hover {
    background-color: #5a6268;
}

@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column;
    }

    .content-container {
        margin-top: 20px;
    }

    .thumbnails-container {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding-bottom: 8px;
        margin-bottom: 16px;
    }

    .thumbnail {
        flex: 0 0 auto;
    }
}