.navbar-container {
    padding-left: 0px !important;
}

.event-video-image {
    width: 125px;
    height: 125px;
    object-fit: cover;
    margin-right: 10px;
    object-position: center;
    border-radius: 100px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    cursor: pointer;
    &:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    }
    @media (max-width: 768px) {
        width: 100px;
        height: 100px;
    }
    @media (max-width: 480px) {
        width: 80px;
        height: 80px;
    }
    @media (max-width: 320px) {
        width: 60px;
        height: 60px;
    }
}

.event-video-thumbnail {
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}

.event-video-image-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 10px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    width: 100%;
    white-space: nowrap;
    align-items: center;
}

/* Tüm ekran boyutları için */
.event-video-image-list > * {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.event-video-image-list::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
    width: 0 !important;
    height: 0 !important;
}

/* Mobilde yatay scroll için */
@media (max-width: 768px) {
    .events-container .event-video-image-list {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100vw;
        white-space: nowrap;
        margin: 0;
        padding: 10px 0;
    }
    
    .events-container .event-video-image-list::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .events-container .event-video-thumbnail {
        display: inline-block !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        width: auto !important;
        float: none !important;
    }
    
    .events-container .event-video-image {
        margin-right: 5px;
        display: block !important;
        float: none !important;
    }
}

/* Event Video Modal - Instagram Story Style */
.event-video-modal-story {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.event-video-modal-story.active {
    display: flex !important;
    opacity: 1;
}

.event-video-modal-story-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.event-video-modal-story-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px 20px;
    z-index: 2;
    box-sizing: border-box;
    pointer-events: none;
}
.gallery-h1-link{
    font-size: 22px !important;
}
.event-video-modal-story-container > * {
    pointer-events: auto;
}

.event-video-modal-story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.event-video-modal-story-close::before {
    content: '×';
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    margin-top:-10px;
    padding: 0;
    width: 100%;
    height: 100%;
}

.event-video-modal-story-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.event-video-modal-story-progress-container {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    z-index: 100;
}

.event-video-modal-story-progress-bar {
    height: 100%;
    background-color: white;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.event-video-modal-story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.event-video-modal-story.active .event-video-modal-story-nav {
    opacity: 1;
}

.event-video-modal-story-nav span {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-video-modal-story-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.event-video-modal-story-nav-left {
    left: 20px;
}

.event-video-modal-story-nav-right {
    right: 20px;
}

.event-video-modal-story-player-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - 120px);
    aspect-ratio: 9 / 16;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 10;
    flex-shrink: 0;
}

.event-video-modal-story-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    cursor: pointer;
    outline: none;
    display: block;
    position: relative;
    z-index: 1;
}

/* Video controls'ü gizle */
.event-video-modal-story-player::-webkit-media-controls {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-enclosure {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-panel {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-play-button {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-timeline {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-current-time-display {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-mute-button {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-volume-slider {
    display: none !important;
}

.event-video-modal-story-player::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* Firefox için */
.event-video-modal-story-player {
    -moz-controls: none !important;
}

/* Tüm medya kontrollerini gizle */
.event-video-modal-story-player[controls] {
    pointer-events: none;
}

.event-video-modal-story-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.event-video-modal-story-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.event-video-modal-story-player-container.playing .event-video-modal-story-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.event-video-modal-story-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 100;
    text-align: center;
    pointer-events: none;
}

.event-video-modal-story-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-video-modal-story-container {
        padding: 50px 10px 10px;
        max-width: 100%;
    }
    
    .event-video-modal-story-player-container {
        max-width: 100%;
        max-height: calc(100vh - 100px);
    }
    
    .event-video-modal-story-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .event-video-modal-story-progress-container {
        top: 10px;
        left: 10px;
        right: 60px;
    }
    
    .event-video-modal-story-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .event-video-modal-story-nav-left {
        left: 10px;
    }
    
    .event-video-modal-story-nav-right {
        right: 10px;
    }
    
    .event-video-modal-story-title {
        font-size: 16px;
    }
    
    .event-video-modal-story-info {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .event-video-modal-story-play-overlay svg {
        width: 60px;
        height: 60px;
    }
}

/* Activity Calendar - Event Filter Animations */
.event-item-grid {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.event-item-grid.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

.gallery-image-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease;
    &:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    }
    @media (max-width: 768px) {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        transition: all 0.6s ease;
        &:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
        }
    }
}

.dining-image-fit-cover {
    width: 100%;
    height:250px;
    object-fit: cover;
    object-position: center;
   
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
 
  
    @media (max-width: 768px) {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      
       
    }
}

/* Alt Menü Animasyonları */
#hotels-sub-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#hotels-sub-menu.menu-open {
    opacity: 1;
    transform: translateY(0);
 display: flex !important;
}

/* Alt menü linklerine hover efekti */
#hotels-sub-menu .menu-link-sub {
    transition: all 0.2s ease;
}

#hotels-sub-menu .menu-link-sub:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

/* Ana Menü Animasyonları - Sağdan Açılma */
#main-menu.menu-block {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 600px !important;
    height: 100vh !important;
    background-color: var(--bg-1) !important;
    z-index: 9999 !important;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    inset: auto !important;
}

/* Menü Öğeleri - Başlangıç Durumu (Gizli) */
#main-menu.menu-block .menu-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menü öğeleri için sıralı animasyon (JavaScript ile kontrol edilecek) */
#main-menu.menu-block .menu-link.menu-item-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    #main-menu.menu-block {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    #main-menu.menu-block {
        max-width: 100% !important;
        width: 100% !important;
    }
}

#main-menu.menu-block.menu-open {
    opacity: 1 !important;
    transform: translateX(0) !important;
    display: flex !important;
}

/* Menü Overlay (Arka plan karartma) */
#main-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.6s ease;
}

#main-menu-overlay.overlay-visible {
    opacity: 1;
}

/* Menü Kapatma Butonu (X) */
#main-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

#main-menu-close:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

#main-menu-close::before,
#main-menu-close::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 24px;
    background-color: var(--soft-white);
    transition: background-color 0.3s ease;
}

#main-menu-close::before {
    transform: rotate(45deg);
}

#main-menu-close::after {
    transform: rotate(-45deg);
}

#main-menu-close:hover::before,
#main-menu-close:hover::after {
    background-color: #fff;
}