.navbar-right.active {
        right: 0;
    }/* navbar.css */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: transparent; /* Transparent by default for video pages */
}

.navbar.scrolled {
    background-color: #000000; /* Black background when scrolled */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Left side - Logo and name */
.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.logo.scrolled_logo {
    height: 40px;
}

.name {
    color: #1ebad9;
    font-family: 'Bungee', cursive;
    font-size: 23px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Shadow for visibility over video */
}

.name.scrolled_name {
    font-size: 20px;
    text-shadow: none;
}

/* Right side - Navigation and contact button */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-family: 'Tektur', sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7); /* Shadow for visibility over video */
}

.main-nav a.scrolled-link {
    font-size: 18px;
    text-shadow: none;
}

.main-nav a.active-page {
    color: #E54687 !important;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #E54687;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

/* Book Table Button - Similar styling to contact button but with different color */
.book-table-btn {
    background-color: #1ebad9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Tektur', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.book-table-btn:hover {
    background-color: #17a3ba;
    transform: scale(1.05);
}

.contact-btn {
    background-color: #E54687;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Tektur', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #E54687;
    transform: scale(1.05);
}

/* For non-video pages, add top padding to body to account for fixed navbar */
body {
    padding-top: 90px;
}

/* Remove top padding for pages with video sections (index & playstation) */
body.has-video-section {
    padding-top: 0 !important;
}

/* Ensure video sections start at the top of the page */
.video-section {
    position: relative;
    width: 100%;
    margin-top: 0;
}

/* Hamburger menu icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 16px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile and tablet navigation styles - Show hamburger for everything except laptops */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 10px 20px;
    }
    
    .hamburger {
        display: flex;
        margin-right: 2px;
    }
    
    .navbar-right {
        position: fixed;
        top: 0;
        right: -100%;
        height: auto;
        width: 60%;
        max-width: 250px;
        flex-direction: column;
        background-color: #000000;
        padding: 60px 15px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        gap: 20px;
        z-index: 1000;
        border-radius: 0 0 0 10px;
    }
    
    .main-nav {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 5px;
    }
    
    .main-nav a {
        font-size: 16px;
        margin: 5px 0;
        text-align: center;
        width: 100%;
        padding: 8px 0;
    }
    
    .book-table-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding: 8px 15px;
        font-size: 16px;
    }
    
    .contact-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding: 8px 15px;
        font-size: 16px;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

     .name {
        font-size: 15px;
    }

    .name.scrolled_name {
    font-size: 15px;
    text-shadow: none;
}
}

/* Smaller devices - adjust sizes further */
@media screen and (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .name {
        font-size: 15px;
    }

    .name.scrolled_name {
    font-size: 13px;
    text-shadow: none;
}
}

.no-underline{
    text-decoration: none;
}