*, *::after, *::before {
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: "Alice", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header and Navigation */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #333;
  gap: 40px;
}

.navbar {
  grid-column: 1;
  justify-self: start;
  display: flex;
  gap: 30px;
  align-items: center;
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Alice", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: #0ff;
}


.brand-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.brand-link:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  color: #0ff;
  font-family: 'Tw Cen MT', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.desktop-only {
  display: none;
}

.language-selector {
  grid-column: 3;
  justify-self: end;
}

.lang-btn {
  padding: 8px 16px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #666;
  font-family: "Alice", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: #0ff;
  color: #0ff;
}

.lang-btn.active {
  background-color: #0ff;
  color: #000000;
  border-color: #0ff;
}

/* Main Content */
body > :not(.header):not(.footer) {
  flex: 1;
}

.content {
  padding: 40px 20px;
}

.contact-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 20px;
}

p {
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  line-height: 1.6;
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
  text-align: center;
}

.main-headline {
  max-width: 800px;
  margin: 0;
  line-height: 1.6;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 0;
}

.page-text {
  max-width: 600px;
}

/* Founder Section */
.founder-section {
  width: 100%;
  margin-top: 40px;
}

.founder-title {
  font-size: 1.8rem;
  color: #20b2aa;
  margin-bottom: 30px;
  margin-top: 0;
}

.gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 65%;
  margin: 0 auto;
  gap: 20px;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.banner-img {
  object-fit: scale-down;
  max-width: 150px;
  height: auto;
}

.banner-section {
  padding: 40px 20px;
  gap: 15px;
}

.banner-text {
  color: #0ff;
  font-family: 'Tw Cen MT', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: bold;
}

.email-link {
  color: #0ff;
  text-decoration: none;
  font-family: "Alice", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-top: 20px;
  transition: color 0.3s ease;
}

/* Footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 20px;
  border-top: 1px solid #333;
  margin-top: auto;
}

.social-link {
  color: #0ff;
  text-decoration: none;
  font-family: "Alice", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #ffa500;
}

.social-link i {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .navbar {
    grid-column: 1;
    gap: 15px;
    justify-content: center;
  }

  .brand {
    grid-column: 1;
    justify-content: center;
  }

  .language-selector {
    grid-column: 1;
    justify-self: center;
  }

  .desktop-only {
    display: none;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .gallery {
    max-width: 100%;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .footer {
    flex-wrap: wrap;
    gap: 20px;
  }

  .banner-img {
    max-width: 120px;
  }

  .banner-text {
    font-size: 2rem;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .main-headline {
    font-size: 1rem;
  }
}

@media (min-width: 769px) {
  .desktop-only {
    display: inline;
  }
}
