/* .main-padding{
    padding: 10px;
    display: grid;
    justify-content: center;
    z-index: 1;
    padding-bottom: 100px;
}

@media only screen and (min-width: 500px) {
    .main-padding{
        padding: 30px;
    }
} */

.tabs {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tabs button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #a1dded;
    border: 1px solid #ccc;
    margin-right: 5px;
}

.tabs button.active {
    background-color: var(--primary-color);
}

.tab-content {
    /* display: none; */
}

.tab-content.active {
    display: block;
}


/* #gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
    row-gap: 10px;
    padding-top: 15px;
}

#gallery .photo-gallery-item {
    aspect-ratio: 1 / 1;
}

#gallery .photo-gallery-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
} */
#gallery-content {
    /* border: 1px solid red; */
    /* margin-bottom: 20px; */
    width: 100%;
    box-sizing: border-box;
}
.tab-content {
    width: 100%;
}
.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding-top: 15px;
}

@media only screen and (min-width: 500px) {
    .gallery {
        width: 100%;
        display: grid;
        /* grid-template-columns: repeat(3, 1fr);  */
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
        padding-top: 15px;
    }

}

.gallery .photo-gallery-item {
    aspect-ratio: 1 / 1;
}

.gallery .photo-gallery-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#video-highlight {
    margin-top: 10px;
}

#video-opening {
    margin-top: 10px;
    margin-bottom: 50px;
}

#video-highlight iframe,
#video-opening iframe {
    display: block;
}

.gallery-title.first {
    font-weight: 500;
    padding-bottom: 20px;
    font-size: 18px;
    color: white;
}

.gallery-title {
    padding-top: 20px;
    font-weight: 500;
    font-size: 18px;
    color: white;
}

#view-all-photos-here {
    margin-top: 25px;
    margin-bottom: 10px;
    display: grid;
    justify-content: center;
}

#view-all-photos-here .href {
    font-size: 16px;
    color: white;
}

#modal-iphone-message {
    z-index: 99999999999 !important;
}

#modal-iphone-message .modal-body {
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.pswp {
    z-index: 10000 !important;
  }
  
/* Ensure top bar (with buttons) is above everything */
.pswp__top-bar {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent !important;
    backdrop-filter: blur(4px); /* optional: adds a nice frosted glass effect */
    box-shadow: none !important;
}

.pswp__button--arrow--prev,
.pswp__button--arrow--next {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10002 !important;
}
  
/* Optional: position them higher */
.pswp__button--arrow--prev {
    left: 10px !important;
}

.pswp__button--arrow--next {
    right: 10px !important;
}
