/* Define color variables */
:root {
    --accent-color: #090258;
    --primary-color: #b7a1e0;
    --secondary-color: #7355cd;
    --backgroun-color: #d5d0de;
  }

  body {
    background-color: var(--backgroun-color);
  }


  
  
  /* Navigation bar styles */
  nav {
    /* background-color: var(--primary-color); */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .logo {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 40%;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links a {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    position: relative;
  }
  
  .nav-links a:hover {
    color: var(--secondary-color);
  }
  
  .nav-links a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -3px;
    left: 0;
    background-color: var(--secondary-color);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  
  .nav-links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
  }
  
  .burger {
    display: none;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 5px;
  }
  
  @media screen and (max-width: 768px) {
    .nav-links {
      position: fixed;
      background-color: var(--primary-color);
      height: 90vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(0px at top right);
      -webkit-clip-path: circle(0px at top right);
      transition: all 0.5s ease-out;
      pointer-events: none;
      top: 50px;
      left: 0;
      z-index: 10000;

    }
  
    .nav-links li {
      opacity: 0;
      z-index: 1000;
    }
  
    .burger {
      display: block;
      cursor: pointer;
    }
  }
  
  .nav-active {
    clip-path: circle(150% at top right);
    -webkit-clip-path: circle(150% at top right);
    pointer-events: all;
    z-index: 1000;
  }
  
  .nav-links li {
    opacity: 1;
    transition: all 0.5s ease 0.5s;
  }
  
  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .toggle .line2 {
    opacity: 0;
  }
  
  .toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  