/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 16px 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.header.hidden {
  transform: translateY(-100%);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 42px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 24px;
  height: 24px;
}

.logo-text {
  font-family: "Gotham HTF-Book", Helvetica;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

.cta-button {
  background-color: #9affe0;
  color: #003629;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #7affd6;
  transform: translateY(-2px);
}

/* Responsive header */
@media (max-width: 768px) {
  .header .container {
    padding: 0 20px;
  }
  
  .logo-icon {
    width: 20px;
    height: 20px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 0;
  }
} 