/* Sticky header */
.site-header {
    background: var(--bg-light-green);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  }

.hero {
  padding: 20px 15px 8px;
  text-align: center;
}

/* Logo styles - h1 removed, using logo image instead */


.site-header.shrink .hero {
  padding: 6px 15px 4px;
}

.site-header.shrink .site-logo {
  height: 70px;
}

.site-header.shrink .hero-right {
  font-size: 1rem;
  gap: 12px;
}

.site-header.shrink .contact-item {
  font-size: 1rem;
  gap: 6px;
}

.site-header.shrink .header-booking-button {
  padding: 6px 16px;
  font-size: 0.9rem;
}

.site-header.shrink .language-selector select {
  font-size: 0.9rem;
}
  

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  box-sizing: border-box;
}
  
.hero-left {
  text-align: left;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.site-logo {
  height: 120px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: height 0.3s ease;
}


  
.hero-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  flex: 1;
}
  
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: var(--primary);
}

.header-booking-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.header-booking-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.header-booking-button:active {
  transform: translateY(0);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-selector form {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.language-selector select {
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  transition: opacity 0.2s;
}

.language-selector select:hover {
  opacity: 0.8;
}

.language-selector select:focus {
  opacity: 1;
}

.main-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px 20px;
  background: var(--bg-dark-green);
  transition: padding 0.3s ease, gap 0.3s ease;
}

.site-header.shrink .main-menu {
  padding: 3px 0;
  gap: 10px;
}

.main-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, padding 0.3s ease;
}
.site-header.shrink .main-menu a {
    padding: 2px 5px;
    font-size: 0.9rem;
  }

.main-menu a:hover {
  background: var(--primary);
  color: white;
}

