/* Aggressive reset to remove all spacing */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* Important: Reset body margin/padding to remove any gaps */
body {
  padding-top: 80px !important; /* Adjusted padding for header height only */
  border: 0 !important;
}

/* Remove any top margins that might be causing the gap */
div, nav, section, header {
  margin-top: 0 !important;
  border-top: 0 !important;
}

/* Reset and completely rebuild the header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

/* Container inside header */
header .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo styles */
.logo a {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* Navigation menu */
nav {
  display: flex;
  height: 100%;
}

nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  gap: 16px;
}

nav ul li {
  height: 100%;
  display: flex;
  align-items: center;
}

nav ul li a {
  color: var(--text-color);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Book now button */
.book-now .btn {
  font-size: 10px;
  padding: 4px 10px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Hide the dropdown icon for cleaner look */
.dropdown-icon {
  display: none;
}

/* Mobile menu adjustments */
.mobile-menu-toggle {
  height: 20px;
  width: 20px;
  display: none;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
}

.mobile-menu-toggle span {
  height: 1px;
  width: 16px;
  background-color: var(--primary-color);
  margin: 2px 0;
}

/* Media query for mobile */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    display: none;
  }
  
  header.mobile-menu-open nav {
    display: block;
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  header.mobile-menu-open nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 20px;
  }
}
