/* Layout Basics */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
  font-weight: 100;
  /*background-image: url(../../images/bg.jpg);*/
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  color: #4000ff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
}

.nav-left {
  flex-shrink: 0;
}

.logo {
  height: 46px;
}

/* Burger Menu */
.burger {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  width: 24px;
  height: 2px;
  background: white;
}

/* Main Content Wrapper */
.main-content {
  padding-top: 2rem;
  padding-bottom: 4rem;
  text-align: left;
}

/* Two-Column Layout */
.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.column {
  flex: 1 1 35%;
}

.column-right {
  text-align: center;
}

.image-section img.profile-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Headings */
h1 {
  font-size: 5.5rem;
  font-weight: 600;
  margin: 0.5em 0 0 0;
  font-family: 'Montserrat Alternates', sans-serif;
  line-height: 1.1;
}
h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0rem;
  text-transform: uppercase;
}

/* Tagline */
.tagline {
  font-size: 1.4rem;
  margin-bottom: 0rem;
  line-height: 1.4;
  font-weight: 100;
  width: 85%;
  margin: 0 0;
  text-align: left;
}

/* Social Links */
.social-links {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.social-links li {
  display: inline-block;
  margin: 0 0.5rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 0;
  font-size: 0.9rem;
  color: #efefef;
  background: transparent;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}
.site-footer a {
  color: #efefef;
}

/* Construction Banner */
.construction-banner {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 0.4rem;
  font-size: 0.9rem;
  line-height: 1rem;
  width: 40%;
  margin: 0 auto;
  opacity: 0.7;
  bottom: 0;
  border-radius: 10px;
}

/* Legal Section */
.legal-section {
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
}
.legal-section h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}
.legal-section a {
  color: #66ccff;
}

/* Cookie Banner */
.cc-color-override--1923517485.cc-window {
  opacity: 0.4 !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .column {
    width: 100%;
    flex: 1 1 100%;
  }

  .column-right {
    order: -1; /* Show image-section first */
  }

  .hero-section, .network-section {
    text-align: center;
  }

  .tagline {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  h1 {
    margin: 0 auto;
    font-size: 3.5rem;
  }

  .burger {
    top: 1rem;
    right: 1rem;
  }

  .site-footer {
    font-size: 0.8rem;
    padding: 0;
    margin: 0 auto;
     position: relative;
  }



  .construction-banner {
    width: 90%;
  }
}