/** --------------------------
 *  Custom Fonts
 * -------------------------- */
@font-face {
    font-family: railway;
    src: url(/fonts/railway.otf);
}

@font-face {
    font-family: helveticathin;
    src: url(/fonts/HelveticaNeue-UltraLight.otf);
}

@font-face {
    font-family: helveticaneue;
    src: url(/fonts/helveticaneue.otf);
}

/** --------------------------
 *  Farbdefinition (Color Variables)
 * -------------------------- */
:root {
    --Blue100: rgb(0, 17, 65);
    --Blue60: rgba(15, 98, 254, 0.6);
    --Blue50: rgb(69, 137, 255);
    --Blue30: rgb(166, 200, 255);
    --Blue20: rgb(208, 226, 255);
    --Blue10: rgb(237, 245, 255);
    --Cyan90: rgb(1, 39, 73);
    --Cyan70: rgb(0, 83, 154);
    --CoolGray70: rgb(77, 83, 88);
    --CoolGray40: rgb(162, 169, 176);
    --CoolGray20: rgb(221, 225, 230);
    --CoolGray10: rgb(242, 244, 248);
    --Transparent: rgba(242, 244, 248, 0);
}

/** --------------------------
 *  Base Styles
 * -------------------------- */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    font-family: helveticaneue, sans-serif;
    color: var(--CoolGray70);
}

body {
    background-color: var(--CoolGray10);
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/** --------------------------
 *  Header
 * -------------------------- */
header {
    background-color: var(--Blue100);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 40px;
}
nav {
  background-color: var(--Blue100);
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  color: var(--CoolGray10);
  text-decoration: none;
  font-family: railway, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
  display: inline-block;
  transition: all 0.25s ease;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus {
  color: var(--Blue30);
  border-bottom: 2px solid var(--Blue30);
}

nav a.active {
  color: white;
  border-bottom: 2px solid var(--Blue50);
}

/** --------------------------
 *  Hero Section
 * -------------------------- */
.hero {
    padding: 3rem 2rem;
    background-color: var(--Blue10);
    text-align: center;
}

.hero h1 {
    color: var(--Blue100);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: helveticathin, sans-serif;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--CoolGray70);
}

.cta-button {
    background-color: var(--Cyan70);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: var(--Blue60);
}

/** --------------------------
 *  Services Section
 * -------------------------- */
.services {
    padding: 2rem;
    background-color: #ffffff;
}

.services h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--Blue100);
}

.services ul {
    list-style: disc;
    padding-left: 2rem;
}

/** --------------------------
 *  Mission + Vision
 * -------------------------- */
.mission-vision {
    padding: 2rem;
    background-color: var(--CoolGray10);
}

.mission-vision h2 {
    margin-top: 1rem;
    color: var(--Cyan90);
}

/** --------------------------
 *  Footer
 * -------------------------- */
footer {
    background-color: var(--Blue100);
    color: var(--CoolGray20);
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.9rem;
    font-family: railway, sans-serif;
}

footer a {
    color: var(--CoolGray20);
    text-decoration: underline;
}


.page {
  padding: 2rem;
  background-color: white;
  max-width: 960px;
  margin: auto;
}

.services-header h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--Blue100);
}

.services-header p {
  font-size: 1.1rem;
  color: var(--CoolGray70);
}

.services-list ul {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.services-list li {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--CoolGray70);
}

.about-section {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
}

.about-intro h1 {
  font-size: 2.5rem;
  color: var(--Blue100);
  margin-bottom: 1rem;
}

.about-intro .lead {
  font-size: 1.2rem;
  color: var(--CoolGray70);
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 2;
}

.about-text h2 {
  color: var(--Blue60);
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.about-text p {
  color: var(--CoolGray70);
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 250px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-section {
  max-width: 700px;
  margin: auto;
  padding: 2rem;
}

.contact-section h1 {
  font-size: 2rem;
  color: var(--Blue100);
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  color: var(--CoolGray70);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--CoolGray70);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--CoolGray40);
  border-radius: 6px;
  font-family: helveticaneue, sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--Blue50);
  box-shadow: 0 0 0 2px var(--Blue20);
}

.submit-btn {
  background-color: var(--Blue100);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  font-family: railway, sans-serif;
}

.submit-btn:hover {
  background-color: var(--Blue60);
}


.founder-note {
  font-weight: 1000;
  font-family: helveticaneue, sans-serif;
}

.founder-note p {
  font-weight: 100;
  font-family: helveticaneue, sans-serif;
    
}