/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */





/*

.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


*/





html {
  scroll-behavior: smooth;
}


body {
 
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  background-image: linear-gradient(to bottom, #222, #000);
  color: #eee;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



a:link	    	{color: #777; text-decoration: none;  transition: color 0.1s ease ;} /* color:rgba(0,0,0,0.18);  */
 a:hover 		{color: #999;    transition: color 0.1s ease ;}
 a:visited 		{color: #002366;}
 a:active 		{color: #002366;}
        
        





/* Layout wrapper */
.layout {
  display: flex;
  flex: 1;
}

/* --- SIDEBAR --- */
.sidebar {
  width: 30%;
  background: #000;
  background-image: linear-gradient(to bottom, #111, #111);
  border-right: 1px solid #333;
  padding: 2em 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  height: 100vh;
}

.logo img {
  height: 200px;
  width: auto;
  margin-bottom: 2em;
  display: block;
  transition: opacity 0.3s ease;
}

.logo img:hover {
  opacity: 0.8;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  text-align: center;
}

.nav-links a {
  color: #eee;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #0031df;
}

/* --- MAIN CONTENT --- */
.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* Keeps footer at bottom */
  padding: 6em 1.5em;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 100vh; /* Ensures full height of viewport */
}

.hero {
  flex-grow: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  color: #fff;
}


.hero h2 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  color: #fff;
}

.hero p {
  color: #ccc;
}

/* --- FOOTER INSIDE MAIN --- */
.content-area footer {
  text-align: center;
  padding: 1em;
  border-top: 1px solid #333;
  font-size: 0.9em;
  color: #777;
  margin-top: 4em;
}








.vfx {float: right; opacity: 0.5;}








/* --- RESPONSIVE --- */
@media (max-width: 800px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1em;
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .logo img {
    height: 150px;
    margin-bottom: 0;
  }

  .nav-links {
      /*
    flex-direction: row;
    gap: 1em;
      */
      
    
    gap: 0.5em;  
  text-align: left;
  }

  .content-area {
    padding: 2em;
  }
    
    
.hero h1 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  color: #fff;
}


.hero h2 {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  color: #fff;
}
    
    
    
    
    
    
    
}















