


@font-face {
    font-family: "Velvelyne";
    src: url(Velvelyne-Regular.woff2), url(Velvelyne-Regular.woff);
}


body {
    font-family: "Velvelyne";
    font-size: 24px;
    line-height: 1;
    color: #000000;

    background-color: #d3c7f3;
    background-image: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0));

    transition: background-color 0.5s;
    width: 100vw;
    height: 100vh;
}

body.body-info {
  background: linear-gradient(180deg, #ffffff, #eee0ff 85%, #d6bfff 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}


.info-header {
  position: fixed;
  top: 30px;      /* match index.html header vertical padding */
  /* right: 30px;    align with expected index nav offset */
  z-index: 100;
  display: flex;
  /* gap: 1rem; */
  font-size: 24px; /* same as global body font */
  font-family: 'Velvelyne', sans-serif;
  transition: all 0.3s ease;
}

.info-nav {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
.info-header {
  padding: 0 0 0 24px;
}
.info-header a {
  text-decoration: none;
  color: black;
  line-height: 1;
  display: block;
  padding: 0.25rem 0.75rem;
}

/* Centered header layout */
.centered-header {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.info-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-size: 1.25rem;
  font-family: 'Velvelyne', sans-serif;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 2rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-nav a {
  text-decoration: none;
  color: black;
  transition: background 0.3s ease;
  padding: 0.25rem 0.75rem;
  border-radius: 40px;
}

.info-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
}



body.scrolled .info-nav a {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



h1 {
    font-size: 32px;
    padding-bottom: 32px;
}
h2 {
    font-size: 5vmin;
}

section.index {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    text-align: center;
    width: 50%;
}
section.about {
    width: 100%;
    padding: 96px 0 96px 0;
    display: block;
}

div.text {
    max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;

}

div.text p {

  font-size: 18px;
  font-family: "liberation-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
section div.circle {
    width: 20px;
    height: 20px;
    background-color: #f7fe00;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s;
}
section a {
    color:#000000;
}


a { color:#000000;}
header a { text-decoration: none;}

 a:hover{
    color: rgba(0, 0, 0 , 0.6);
    transition: color 0.1s;
}
footer {
position: fixed;
bottom: 0;
left: 0;
justify-content: center;}

header, footer {

    width: 100%;
    padding: 30px 0px;
    display: flex;
    justify-content: space-around;

}

footer img {
    max-width: 50px;
    max-height: 50px;
    margin: 0 10px;
    cursor: pointer;
}
p {
    text-align: left;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

div.links {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 80px 0;
}

@media (max-width: 700px) {
  .info-nav {
    justify-content: center;
    gap: 0.75rem;
  }
  .info-nav a {
    font-size: 18px;
    padding: 0.4rem 0.75rem;
  }
}
