nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  z-index: 100;
}

.nav-left {
  display: flex;
  gap: 50px;
  list-style: none;
}

.nav-left a {
  text-decoration: none;
  color: #8b9a9c;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-left a:hover {
  color: #5b9bad;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image img {
    max-width: 200px; /* adjust size as needed */
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional hover effect */
.logo-image img:hover {
    transform: scale(1.05);
}

.nav-right {
  display: flex;
  gap: 50px;
  list-style: none;
}

.nav-right a {
  text-decoration: none;
  color: #8b9a9c;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-right a:hover {
  color: #5b9bad;
}

/* footer */
.footer {
  background: linear-gradient(135deg, #5391A4 0%, #1f3f52 100%);
  color: #ffffff;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-left {
  flex: 0 0 280px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-wave {
  width: 50px;
  height: 50px;
}

.footer-logo-wave svg {
  width: 100%;
  height: 100%;
}

.footer-logo-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-text {
  font-family: "Carattere", cursive;
  font-size: 38px;
  color: #c8e8f0;
  line-height: 0.9;
  font-weight: 400;
}

.footer-logo-subtext {
  font-size: 9px;
  letter-spacing: 3px;
  color: #a0c5d1;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: -3px;
}

.footer-center {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(200, 232, 240, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8e8f0;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: #c8e8f0;
  color: #2c5570;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-right {
  flex: 1;
}

.footer-links-group {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 11px;
  font-weight: 600;
  color: #c8e8f0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #a0c5d1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #e8f5f7;
  padding-left: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(200, 232, 240, 0.1);
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 60px;
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  color: #a0c5d1;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
