/* Base reset + typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", serif;
}

:root{
  --primary:#56b8e5;
  --primary-2:#a141f4;
  --accent:#f95959;
  --ink:#1c1c1c;
  --bg:#ffffff;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo {
  background-image: linear-gradient(to top, #56b8e5 0%, #a141f4 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 800;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar__item { height: 80px; }

.navbar__links {
  color: #cd1b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  font-weight: 600;
}

.navbar__links:hover { color: var(--accent); transition: all 0.3s ease; }

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(86,184,229,0.35);
  transition: transform .15s ease, box-shadow .3s ease, background .3s ease;
}

.button:hover { background: var(--primary-2); box-shadow: 0 6px 18px rgba(161,65,244,0.35); }
.button:active { transform: translateY(1px); }

/* Active link helper class you can add server-side or via JS */
.navbar__links.active { color: var(--primary-2); }

/* Mobile */
.navbar__toggle .bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all .3s ease-in-out;
  background: #7839e6;
  display: none;
}

#mobile-menu { display: none; }

@media screen and (max-width: 960px) {
  .navbar__container { padding: 0 20px; }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    left: 0;
    opacity: 0;
    transition: all .5s ease;
    height: 100vh;
    z-index: -1;
    background: #ffffff;
    padding-top: 80px;
  }

  .navbar__menu.active {
    top: 0;
    opacity: 1;
    z-index: 99;
    font-size: 1.25rem;
  }

  #navbar__logo { padding-left: 0; }

  .navbar__toggle .bar { display: block; cursor: pointer; }
  #mobile-menu {
    display: block;
    position: absolute;
    top: 22px;
    right: 20px;
    transform: translate(0, 0);
  }

  .navbar__item, .navbar__btn { width: 100%; }
  .navbar__links {
    text-align: center;
    padding: 1.5rem;
    width: 100%;
    display: table;
  }

  .button {
    width: 80%;
    height: 56px;
    margin: 12px auto 0;
  }

  #mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
  #mobile-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Utils */
.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 50px; }
.section { padding: 64px 0; }
