body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #EFECE3;
  scroll-padding-top: 94px;
}
.navbar {
  width: 100vw;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px 0 rgba(134, 20, 139, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 36px;
  padding-right: 36px;
  height: 80px;
  position: relative;
}
.navbar-logo {
  display: flex;
  align-items: center;
  min-width: 80px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-links li {
  display: flex;
}

.navbar-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #D062B5;
}

.logo-text {
    font-family: "Courgette", cursive;
    font-size: 40px;
    color: #D062B5;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
}

.btn-reservation {
    background-color: #D062B5;
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease !important;
    font-weight: 600;
}

.btn-reservation:hover {
    background-color: #86148B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 98, 181, 0.3);
}

/* Mobile Menu Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: #fff;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 24px 30px 24px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 2001;
}

.mobile-nav-overlay.is-open .mobile-nav-content {
    right: 0;
}

.mobile-nav-header {
    display: none;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #D062B5;
}

.mobile-nav-link.btn-reservation {
    background-color: #D062B5;
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-align: center;
    margin-top: 20px;
    display: block;
}

.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}

/* Burger button styles */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: fixed;
    right: 20px;
    top: 28px;
    z-index: 2002;
    margin: 0;
}

.burger span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    origin: center;
}

.burger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(10.5px);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10.5px);
}

.mobile-nav-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width, 15px);
}

@media (max-width: 900px) {
    .navbar-links {
        display: none;
    }
    
    .burger {
        display: flex;
    }
    
    .navbar-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}
}
    .burger:hover,
  .burger:focus,
  .burger:active,
  .mobile-nav-link:hover,
  .mobile-nav-link:focus,
  .mobile-nav-link:active,
  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus,
  .mobile-nav-toggle:active,
  .mobile-submenu-link:hover,
  .mobile-submenu-link:focus,
  .mobile-submenu-link:active {
    transform: none !important;
    box-shadow: none !important;
    background: none !important;
    opacity: 1 !important;
    color: inherit !important;
  }
}