@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/InstrumentSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/InstrumentSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'URW Geometric';
  src: url('../fonts/URWGeometric-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'URW Geometric';
  src: url('../fonts/URWGeometric-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

:root {
      --font-primary: 'Instrument Sans', sans-serif;
      --font-secondary: 'URW Geometric', sans-serif;
      --color-bg: #181818;
      --color-primary: #fefefe;
      --color-accent: #aabaff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .hero {
      padding: 3rem 1.5rem;
      background: linear-gradient(145deg, #1e1e1e, #141414);
      border-radius: 1rem;
      margin-bottom: 2rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      text-align: center;
    }

    .hero-logo {
      width: 150px;
      height: 150px;
      transition: transform 0.5s ease, filter 0.3s ease;
      filter: drop-shadow(0 0 0.5rem #aabaff88);
    }

    .hero-logo:hover {
      transform: scale(1.05);
      filter: drop-shadow(0 0 1rem #aabaffaa);
    }

    .hero-text h1 {
      font-family: var(--font-secondary);
      font-size: 3rem;
      color: var(--color-accent);
      background: linear-gradient(to right, #aabaff, #ffffff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .tagline {
      font-size: 1.125rem;
      color: #cccccc;
      max-width: 600px;
      margin: 0 auto;
    }

    @media (max-width: 600px) {
      .hero-text h1 {
        font-size: 2.25rem;
      }

      .hero-logo {
        width: 120px;
        height: 120px;
      }
    }


    body {
      font-family: var(--font-primary);
      background-color: var(--color-bg);
      color: var(--color-primary);
      line-height: 1.6;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .about-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .about-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-section h2 {
      font-size: 2rem;
      font-family: var(--font-secondary);
      margin-bottom: 2rem;
      color: var(--color-accent);
      background: linear-gradient(to right, #aabaff, #ffffff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      font-size: 1.05rem;
      color: #dddddd;
      line-height: 1.8;
      text-align: justify;
    }

    @media (max-width: 600px) {
      .about-section h2 {
        font-size: 1.75rem;
      }

      .about-text {
        font-size: 1rem;
      }
    }


    main {
      flex: 1;
      max-width: 700px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    main h2 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    main p {
      margin-bottom: 1rem;
    }

    footer {
      text-align: center;
      padding: 1rem 1rem;
    }

    footer a {
      color: var(--color-accent);
      font-weight: 600;
      text-decoration: none;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 2rem;
      }

      main h2 {
        font-size: 1.5rem;
      }
    }

.bottom-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 1rem 1rem 1rem;
  border-top: 1px solid #2c2c2c;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bottom-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.bottom-footer p {
  font-size: 0.9rem;
  color: #bbbbbb;
  line-height: 1.5;
}

.bottom-footer a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.bottom-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.bottom-footer a:hover {
  color: #cdd6ff;
}

.bottom-footer a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 600px) {
  .bottom-footer {
    font-size: 0.85rem;
    padding: 1.5rem 1rem;
  }
}

.logo {
  height: 200px;
  width: 200px;
}

.mail-container {
  display: flex;
  align-self: center;
  justify-content: center;
}
.mail-inner-container {
  width: fit-content;
  max-width: 700px;
  text-align: center;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #1f1f1f, #111);
  border: 1px solid #2c2c2c;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 2rem 2rem;
  margin: 2rem auto;
  transition: transform 0.4s ease, all 0.4s ease;
}

.mail-inner-container:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #262626, #1a1a1a);
}

.mail-inner-container p {
  font-size: 1.1rem;
  color: #dddddd;
  line-height: 1.6;
}

.mail-inner-container a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.mail-inner-container a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.mail-inner-container a:hover {
  color: #cdd6ff;
}

.mail-inner-container a:hover::after {
  transform: scaleX(1);
}

.values {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.values h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: var(--font-secondary);
  color: var(--color-accent);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

.value-card {
  background-color: #202020;
  padding: 2rem 1.25rem;
  border-radius: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  background-color: #262626;
  transform: translateY(-5px);
}

.value-card h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.value-card p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #cccccc;
}

.icon-placeholder {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

a {
  transition: color 0.2s ease;
}

a:hover {
  color: #cdd6ff;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
