/* Main Header Container */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  border-bottom-width: 1px;
  border-bottom-color: #cdcdcd;
  border-bottom-style: solid;
}

/* Inner Layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1200px; */
  margin: 0 auto;
  color: #1c1c1c;
}

/* Logo */
.site-logo img {
  max-height: 60px;
  width: auto;
}

/* Phone + Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1em;
}

.header-link {
  /* font-size: 1rem; */
  font-weight: 500;
}

.header-link:hover {
  font-weight: 600;
  text-decoration: underline;
}

/* Book Now Button */
.book-now-btn {
  background-color: #12d0ff;
  color: #1c1c1c;
  padding: 0.75rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.15s;
  border-radius: 2rem;
}

.book-now-btn:hover {
  background-color: #cdcdcd;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 2rem;
  background-color: #1c1c1c;
  color: #cdcdcd;
}

.top-bar-left {
  flex-shrink: 1;
  font-family: 'Antonio', 'Roboto Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 0.8rem;
}

.top-bar-right {
  flex-shrink: 0;
  font-size: 0.95rem;
}

.arrow {
  font-size: 1.2em;
  margin-left: 0.2em;
}

.top-bar-link {          
  font-family: 'Noto Sans', 'Roboto', 'Arial', 'Helvetica Neue', sans-serif;
  text-decoration: none;     /* Remove underline */
  font-weight: 400;                
  /* letter-spacing: 0.1em;     */
  padding: 0.2em 0.6em;      /* Add some clickable area */
  display: inline-block;     /* Helps with padding/margin */
  transition: color 0.3s;    
}

.top-bar-link:hover {            
  font-weight: 600;
  text-decoration: underline;
  color: #12d0ff;   
}


/* Mobile Adjustments */
@media (max-width: 768px) {
  .book-now-btn {
    display: none;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-link {
    font-size: 0.9rem;
  }

  .site-logo img {
    max-height: 50px;
  }

}

/* New layout: left logo, center button, right icons */
.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

/* Desktop layout */
@media (min-width: 769px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-left {
    flex: 1;
    justify-content: flex-start;
  }

  .header-center {
    flex: 1;
    justify-content: center;
  }

  .header-right {
    flex: 1;
    justify-content: flex-end;
    gap: 2.5rem;
  }

  .book-now-btn {
    display: inline-block;
  }
}


/* Mobile layout */
@media (max-width: 768px) {
  .header-left {
    flex: 1;
    justify-content: flex-start;
  }

  .header-right a span {
    display: none;
  }

  .header-link span {
    display: none;
  }

  .header-link a span {
    display: none;
  }

  .header-center {
    display: none; /* Button hidden on mobile as you already had */
  }

  .header-right {
    flex: 1;
    justify-content: flex-end;
    gap: 2rem;
  }

  .header-right a {
    font-size: 2rem;
  }
}
