.hotel-gallery-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #252525;
    color: #F9EDDC;
    padding: 40px 0;
}

.hotel-gallery-tabs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    background: #252525;
    color: #F9EDDC;
}

.tabs-navigation {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: none;
    padding-bottom: 20px;
}

.tab-button {
    padding: 0px;
    border: none;
    background-color: #252525 !important;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    border-bottom: none;
    transition: all 0.3s ease;
    letter-spacing: 0px;
    font-family: "ABC Synt", Sans-serif !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    
}

.tab-button.active {
    color: #F9EDDC;
    border-bottom: none;
    background-color: #252525 !important;
    letter-spacing: 0px;
    font-family: "ABC Synt", Sans-serif !important;
    font-size: 30px !important;
    font-weight: 500 !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-description {
    max-width: 600px;
    line-height: 1.6;
}

.view-gallery-btn {
    display: inline-block;
    padding: 0px !important;
    background-color: #252525 !important;
    color: #F9EDDC #252525 !important;
    border: none;
    margin-top: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Maison Neue", Sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

.view-gallery-btn:hover {
    background: #252525;
    color: #F9EDDC;
}

.gallery-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 auto;
    height: 480px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    height: 100%;
    width: auto;
    display: block;
}

.scroll-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    font-size: 24px;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Lightbox Styles */
.lightbox-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-wrapper.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
}