@charset "UTF-8";

/* ===== RESET / BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* ===== NAV BASE ===== */
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  height: 55px;
  padding: 8px 14px;

  display: flex;
  justify-content: flex-end; /* since you have no logo currently */
  align-items: center;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}



/* Toggle button */
.menu-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.25);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

.menu-toggle img{
  width: 45px;
  height: 45px;
  display: block;
}

/* Mobile dropdown (hidden by default) */
nav ul.nav-list{
  list-style: none;
  display: none;

  position: absolute;
  top: 64px;          /* same as nav height */
  right: 14px;
  width: 320px;
  max-width: calc(100vw - 28px);

  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  padding: 12px 10px;

  text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

nav ul.nav-list.active{ display: block; }

nav ul.nav-list li{ margin: 10px 0; }

nav ul.nav-list li a{
  text-decoration: none;
  font-size: 26px;
  font-family: 'Dancing Script';

  color: #ffffff;
  background: linear-gradient(45deg, #0A1084, #1C2D89, #3B299C, #3F5C9C, #1D4EE3);

  display: block;
  padding: 12px 14px;
  border-radius: 12px;

  transition: transform 0.15s ease, filter 0.2s ease;
}

nav ul.nav-list li a:hover,
nav ul.nav-list li a:focus{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

footer {
  background: #000;
  color: #fff;
  text-align: center;

  font-size: 12px;
  font-family: "Cabin";

  padding: 12px 0;

  margin-top: auto; /* pushes footer down */
}



/* ===== DESKTOP: show bar, hide icon ===== */
@media screen and (min-width: 769px){
  nav{
    justify-content: center; /* looks nicer since no logo */
    height: 74px;
    padding: 10px 18px;

    background: linear-gradient(45deg, #0A1084, #1C2D89, #3B299C, #3F5C9C, #1D4EE3);
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .menu-toggle{ display: none; }

  nav ul.nav-list{
    display: flex;
    position: static;
    width: auto;
    max-width: none;

    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;

    gap: 10px;
    text-align: left;
  }

  nav ul.nav-list li{ margin: 0; }

  nav ul.nav-list li a{
    background: transparent;
    color: #ffffff;
    font-size: 28px;
    padding: 10px 14px;
    border-radius: 10px;
    transform: none;
    filter: none;
  }

  nav ul.nav-list li a:hover,
  nav ul.nav-list li a:focus{
    background: rgba(255,255,255,0.18);
  }
}

/* ===== <= 480px ===== */
@media screen and (max-width: 480px){
  nav{ height: 62px; }
  nav ul.nav-list{ top: 62px; width: 86%; right: 7%; }
  nav ul.nav-list li a{ font-size: 24px; }

  .menu-toggle{ width: 44px; height: 44px; }
  .menu-toggle img{ width: 32px; height: 32px; }
}

/* ===== <= 300px ===== */
@media screen and (max-width: 300px){
  nav ul.nav-list{ width: 92%; right: 4%; }
  nav ul.nav-list li a{ font-size: 20px; padding: 10px 12px; }
  .menu-toggle{ width: 40px; height: 40px; }
  .menu-toggle img{ width: 28px; height: 28px; }
}


