html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* HEADER */
.header {
  position: relative;
  background: linear-gradient(
    to right,
    rgba(139, 239, 255, 0.75),
    rgba(51, 169, 219, 0.55)
  );
  backdrop-filter: blur(8px);
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* LOGO */
.logo-box {
  position: absolute;
  left: 20px;
  top: 20px;
}

.logox {
  position: absolute;
  left: 20px;
  top: 20px;
}

.logo {
  height: 130px;
  width: auto;
  border-radius: 20%;
  border: 3px solid white;
  box-shadow: 0 0 10px #33a9db;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  background: #33a9db;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "Dancing Script", cursive;
}

.nav a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.nav a:hover {
  background: #2c90bc;
  border-radius: 5px;
}

/* HEADER TITLE */
.site-title {
  margin-top: 15px;
  width: 80%;
  font-size: 40px;
  font-family: "Dancing Script", cursive;
  text-align: center;
  padding: 0;
  font-weight: bold;
  letter-spacing: 2px;
  color: rgb(56, 171, 171);
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  color: white;
  background: linear-gradient(
    to right,
    rgba(51, 169, 219, 0.75),
    rgba(44, 144, 188, 0.65)
  );
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  margin: 0;
  text-align: center;
}

.footer-box {
  word-break: break-word;
}

.footer-icon {
  color: white;
  font-size: 16px;
  /* background-color: #16a2e8; */
}

/* MOBILE / TABLET */
@media (max-width: 768px) {
  .header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 16px 12px;
  }

  .logo-box {
    position: static;
    order: 1;
  }

  .logo {
    width: 70px;
    height: auto;
  }

  .site-title {
    order: 2;
    width: 100%;
    font-size: 28px;
    line-height: 1.2;
    margin-top: 0;
    letter-spacing: 1px;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    width: 100%;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 22px;
  }

  .nav ul {
    gap: 8px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 15px;
  }

  .footer {
    font-size: 14px;
    padding: 10px 12px;
  }
}