@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Archivo+Black');
@import url('https://fonts.googleapis.com/css?family=Inter');

#section-1 {
    height: 100%;
}

#section-2 {
    background: #83c3e6;
}

#section-3 {
    background: #C1D2E9;
}

#section-4 {
    background: #ffffff;
    color: #32343f;
}

#section-4 h1 {
    color: #1992c3;
}

#catcher {
   /* background-image: url("../resources/dreams.jpg"); */
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

/*
#catcher div {
    vertical-align: top;
    margin-top: 10%;
}

#holo {
    color: #52b5e4;
    background-color: #fff;
}
    */

#more {
    color: #ffffff;
    background-size: cover;
    background: #1992c3 url("../resources/nodes.svg") no-repeat 50% 50%;
}

h1 {
    font-size: 8em;
    font-weight: 300;
    padding: 0 5% 0 5%;
    margin: 40px 0 40px 0;

}

h2 {
    font-size: 1.4em;
    font-weight: 100;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 auto;
    text-align: justify;
    width: 90%;
    max-width: 1000px;
}

body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    color: #fff
}

.section {
    text-align: center
}

.section.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%
}

#fp-nav ul li a span, #menu-line, .fp-slidesNav ul li a span {
    background: #cb835a;
}


.fp-slidesNav.bottom {
    bottom: 25px;
}

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-size: cover;
    background: #fff url("../resources/background.svg") no-repeat 50% 50%;
}

.header {
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    position: absolute;
    top: 100%;
    margin-top: -60px;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    width: 100%;
    height: 60px;
    z-index: 999;
}

.header.fixed {
    bottom: auto;
    top: 0;
    background: rgba(0, 0, 0, .6);
    margin-top: 0;
    color: #ffffff;
}

.topnav {
    margin: 0 auto;
    list-style-type: none;
    max-width: 100%;
    padding-right: 80px;
}

.logo {
    max-width: 20%;
    list-style-type: none;
    float: left;
    display: block;
    line-height: 40px;
    padding-bottom: 10px;
    padding-left: 80px;
}

.logo img {
    width: 156px;
    height: 36px
}

.topnav li a {
    font-family: 'Archivo Black', sans-serif;
    display: block;
    text-align: center;
    float: right;
    color: #3E557C;
    padding: 5px 17px;
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.topnav li a:hover, .header.fixed .topnav li a:hover {
    color: #cb835a;
}

.header.fixed .topnav li a {
    color: #ffffff;
}


.social-links {
    margin: 4em 0 0 0;
    text-align: center;
}

.social-links li {
    display: inline-block;
    font-size: 3em;
    padding: 0 15px 60px 15px;
}

.social-links a {
    color: #3E557C;
    background-image: none;
}

.social-links a:hover {
    color: #cb835a;
}


.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery img {
  width: 200px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}