@media only screen and (max-width: 1000px) {
    /* Disable all transitions on mobile EXCEPT hamburger menu and navbar */
    *:not(.hamburger-menu):not(.hamburger-menu__line):not(.hamburger-menu:before):not(.hamburger-menu:after):not(#navbar):not(#navbar *) { 
        transition: none !important;
        -webkit-transition: none !important;
        -moz-transition: none !important;
        -o-transition: none !important;
        animation: none !important;
        -webkit-animation: none !important;
    }
    
    /* Ensure hamburger and navbar animations work */
    .hamburger-menu,
    .hamburger-menu__line,
    .hamburger-menu:before,
    .hamburger-menu:after,
    #navbar,
    #navbar * {
        transition: all 0.3s ease-out !important;
        animation: inherit !important;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex !important;
        top: 44px;
        z-index: 111111;
    }
    
    /* Hide navbar by default on mobile - use visibility instead of display */
    #navbar {
        top: 112px;
        left: 0;
        width: 100%;
        background: #474747;
        z-index: -1 !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Setup for animation */
        transform: translateY(-100%);
        opacity: 0;
        /* Remove conflicting transition */
        height: 0;
    }
      
    /* Show navbar when hamburger is active with scroll down animation */
    #navbar.mobile-menu-open {
        visibility: visible !important;
        
        /* Final position after animation */
        transform: translateY(0);
        opacity: 1;
        /* Remove conflicting transition */
        z-index: 0 !important;
        position: absolute;
        height: auto;
    }
    
    /* Mobile navigation styling */
    #navbar .container {
        padding: 29px 0;
    }
    
    #navbar ul.navbar-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    #navbar .nav-item {
        padding: 0 !important;
        border-bottom: 1px solid #2c2c2c;
        /* Add staggered animation for menu items */
        transform: translateX(-30px);
        opacity: 1;
        transition: all 0.3s ease-out;
    }
    
    /* Animate menu items when menu is open */
    #navbar.mobile-menu-open .nav-item {
        transform: translateX(0);
        opacity: 1;
    }
    

    
    #navbar .nav-item:last-child {
        border-bottom: none;
    }
    
    #navbar .nav-link {
        color: #ffffff !important;
        font-weight: 500;
        padding: 15px 20px !important;
        font-size: 16px;
        display: block;
        text-decoration: none;
        background: transparent !important;
    }
    
    #navbar .nav-link:hover {
        color: #bfa76a !important;
        background: rgba(191, 167, 106, 0.1) !important;
    }
    
    #header {
    z-index: 222;
    }
    
    header {
    }
    

    
    img.mbgimage {
        width: auto !important;
        height: 100% !important;
    }
    .cover-bottom-links {
    display: grid;
    grid-template-columns: 1fr !important;
    }
    .banner {
        position: relative;
        height: 100%;
        max-height: 700px;
        overflow: hidden;
    }
    .search-submit-btn {
        margin-left: 0px !important;
    }
    .front-page-text-box-wrap {
    margin-top: 0px  !important;
    }
    div#header {
        height: 108px;
        position: absolute !important;
    }
    
    .round-logo {
        top: 0px!important;
    }
    
    .fixed#header {
        position: absolute !important;
        top: auto !important;
        left: auto !important;
        box-shadow: none !important;
        height: 108px !important;
    }
    
    .bookig-header {
        display: none;
    }
    .bottom-info-section-wrap {
    flex-direction: column;
    }
    .embed-yt {
    background: url(../images/bg-black-leather.png);
    position: relative;
}
.bottom-img img {
    border-radius: 20px;
    width: 100% !important;
    height: auto;
}
.accommodation-item .card {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}
.accommodation-read-more-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    border-left: none;
}
.archive-offer-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    align-items: center;
    align-content: center;
}
.single-accommodation-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
}

/* Hide hamburger menu on desktop */
@media only screen and (min-width: 1001px) {
    .hamburger-menu {
        display: none !important;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(50, 51, 43);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 3px solid #bfa76a;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content h4 {
    margin: 0 0 10px 0;
    color: #bfa76a;
    font-size: 18px;
    font-weight: 600;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cookie-btn.accept {
    background: #bfa76a;
    color: white;
}

.cookie-btn.accept:hover {
    background: #a89356;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: #bfa76a;
    border: 2px solid #bfa76a;
}

.cookie-btn.decline:hover {
    background: #bfa76a;
    color: white;
}

.cookie-btn.settings {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #666;
}

.cookie-btn.settings:hover {
    background: #666;
    color: white;
}

/* Mobile responsive for cookie popup */
@media only screen and (max-width: 768px) {
    .cookie-popup .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        min-width: auto;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
    }
    .divide-paralax:before {
    width: 100%;
    height: 32px;
    display: block;
    margin: 0;
    content: '';
    position: absolute;
    background: url(../images/bg-white-leather01-down.jpg) repeat-x bottom;
    top: 0px;
    background-size: 100% 32px;
    left: 0;
}
}

/* Responsive styles for divide-parallax effect */
@media only screen and (max-width: 768px) {
  #header:after {
    background-size: 400% 32px !important;
    background-position: right;
  }
   .banner-footer:before {
    background-size: 300% 32px !important;
  }
   .divide-paralax:before {
    background-size: 300% 32px !important;
  }
  .our-menu:before {
    background: url(../images/bg-white-leather01-up.jpg) repeat-x bottom;
    top: -31px;
    background-size: 300% 32px !important;
    left: 0;
  }
}