@font-face {
    font-family: "Hanken Grotesk";
    src: url(fonts/HankenGrotesk-VariableFont_wght.ttf) format("truetype");
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  height:100%;
}

body:not(.light-theme) {
  background: #000;
  color: #ffffff;
}

body.light-theme {
  background: #fff;
  color: #000000;
}

.grecaptcha-badge { visibility: hidden; }

#background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -20;
	width:100%;
	height:100%;
}

#particle-canvas {
	width:100%;
	height:100%;
}

.wrapper {
  width: 1600px;
  max-width: 1600px;
  padding: 20px;
  z-index: 20;
}

header, footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  text-align: center;
  padding: 10px;
}

.logo {
  flex: 200px;
  max-width: 200px;
  text-align: left;
  border-radius: 10px;
}

body.light-theme .logo {
  background-color: #000000;
}

.slogan {
  flex: 40%;
}

.phone {
  text-align: right;
}

.email {
  flex: 20%;
  text-align: right;
}

/* For mobile devices */
@media (max-width: 600px) {
  .item {
    width: 100%;
  }

  .logo, .phone, .email {
    text-align: center;
  }
  
  h1 {
    display: none !important;
  }

}

h1 {
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
}

body:not(.light-theme) h1 {
  color: #c5edff;
}

body.light-theme h1 {
  color: #000088;
}

h2 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}

body:not(.light-theme) h2 {
  color: #c5edff;
}

body.light-theme h2 {
  color: #000088;
}

h3 {
  font-size: 20px;
}

body:not(.light-theme) h3 {
  color: #ffedc5;
}

body.light-theme h3 {
  color: #888800;
}

.faqs {
  max-width:1000px;
  margin-left:auto;
  margin-right:auto;
}

.getintouch {
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
}

body:not(.light-theme) .faq {
  border-bottom: 1px solid #444;
}

body.light-theme .faq {
  border-bottom: 1px solid #ccc;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body:not(.light-theme) p a, body:not(.light-theme) form span a, body:not(.light-theme) .CookieDeclarationTableCell a, body:not(.light-theme) #CookieDeclarationUserStatusPanel a {
color:#ffffcc;
}

body.light-theme p a, body.light-theme form span a, body.light-theme .CookieDeclarationTableCell a, body.light-theme #CookieDeclarationUserStatusPanel a {
color:#888800;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.cta-button {
  background: #c5edff;
  color: #000 !important;
  font-family: 'Hanken Grotesk', sans-serif;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

#theme-toggle {
  background: #c5edff;
  color: #000 !important;
  font-family: 'Hanken Grotesk', sans-serif;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

body:not(.light-theme) footer a, body:not(.light-theme) footer span {
  margin: 0 10px;
  color: #ffffff;
  font-size: 12px;
}

body.light-theme footer a, body.light-theme footer span {
  margin: 0 10px;
  color: #000000;
  font-size: 12px;
}

video {
  width:100%;
}

input, textarea {
	width: 100%;
    display: block;
    font-family: 'Hanken Grotesk', sans-serif;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

input.error, textarea.error {
    border-color: red;
}

input.valid, textarea.valid {
    border-color: green;
}

.error-message {
    color: red;
    font-size: 0.8em;
    height: 20px;
}

.validation-error-box {
    border: 1px solid darkred;
    background-color: #ffe0e0;
    border-radius: 4px;
    color:#000000;
    padding: 10px;
    margin-top: 10px;
}

.validation-success-box {
    border: 1px solid darkgreen;
    background-color: #e0ffe0;
    border-radius: 4px;
    color:#000000;
    padding: 10px;
    margin-top: 10px;
}

form button {
  background: #ffedc5;
  color: #000 !important;
  font-family: 'Hanken Grotesk', sans-serif;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom:10px;
}

form span {
  font-size:10px;
}