@font-face {
  font-family: 'Soehne';
  src: url('../fonts/soehne-leicht.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Soehne';
  src: url('../fonts/soehne-leichtkursiv.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Soehne';
  src: url('../fonts/soehne-buch.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Soehne';
  src: url('../fonts/soehne-buchkursiv.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Fullscreen hero video section */
body {
  font-family: 'Soehne', sans-serif;
  overflow-x: hidden;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Video styling */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Logo in top-left */
.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: auto;
  z-index: 1;
}
.overlay-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* Vertically center */
  align-items: center;       /* Horizontally center */
  text-align: center;
  z-index: 1;
  padding: 0;                /* Remove padding */
  margin: 0;                 /* Remove margin */
}

.overlay-content h1 {
  font-size: 25vw;           
  color: black;
  margin: 0;                 /* Remove default top/bottom margin */
  padding: 0;                /* No extra padding */
  font-weight: 300;
  line-height: 1;
}
/* Info section below */
.info-section {
  background-color: #FEF1D5;
  padding: 4rem 2rem;
}

/* Slogan stays flush left */
.slogan {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-align: left;
  line-height: 1.1; 
  max-width: 100%;      /* use full width of container */
}
/* About block is centered */
.info-container {
  max-width: 500px;
  margin: 8rem auto 0;
  text-align: left;
  padding: 0 1rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
}
.team-image {
  display: block;
  margin-top: 3rem;
  margin-bottom: 2rem;
  margin-left: 0;
  border-radius: 32px;
  width: 180%;         /* Stick out to the right */
  max-width: none;     /* Allow overflow on desktop */
}

/* Responsive adjustment for mobile */
@media (max-width: 700px) {
  .team-image {
    width: 100%;
    max-width: 100%;
  }
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem; 4rem;
  gap: 2rem;
  flex-wrap: wrap;

   background: linear-gradient(
    to bottom,
    #FEF1D5 0%,
    #EECDF6 30%,
    #EECDF6 100%
  );
}

/* Left video */
.footer-left {
  flex: 0 0 auto;
}

.footer-video {
  width: 120px;
  height: auto;
}


.footer-middle {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  max-width: 600px;        /* or whatever feels balanced */
  margin: 0 auto;          /* centers within available space */
  justify-content: center; /* centers content inside itself */
  align-items: flex-start;     /* vertically align with logo and video */
}
.footer-column p,
.footer-column a {
  margin-top: 0;
}
.footer-column {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #222;
}

.spacer {
  height: 1rem;
}

/* LinkedIn link styling */
.linkedin-link {
  text-decoration: underline;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}
.linkedin-link:hover {
  color: #0077b5; /* LinkedIn blue on hover */
}

/* Right logo */
.footer-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 100px;
  width: auto;
}

