@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --background-color: #101010;
  --surface-color: #181818;

  --primary-text-color: white;
  --secondary-text-color: #acacac;

  --primary-color: #9eb7e5;
  --primary-hover: #cdc392;

  --border-color: #2a2a2a;

  --section-padding: 120px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--primary-text-color);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 60px;
  letter-spacing: 2px;
}

.subtitle {
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 30px;
}

/* HEADER */

header {
  position: sticky;
  top: 0;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  padding: 20px 60px;

  background-color: rgba(16, 16, 16, 0.8);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid var(--border-color);

  z-index: 999;
}

.logo {
  font-size: 35px;
  letter-spacing: 2px;
}

header nav ul {
  list-style: none;
  gap: 30px;
}

header nav ul li {
  cursor: pointer;
  transition: 0.2s;
  color: var(--secondary-text-color);
}

header nav ul li:hover {
  color: white;
}

/* HERO */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: row;

  justify-content: center;
  align-items: center;

  gap: 200px;

  padding: 100px 60px;
}

.hero-content {
  width: 700px;
  gap: 20px;
}

.hero .title {
  font-size: 90px;
  line-height: 90px;
  letter-spacing: 2px;
}

.hero-image {
  width: 700px;

  /* filter: drop-shadow(0px 0px 30px rgba(255, 0, 255, 0.2)); */

  transition: 0.3s;
}

/* .hero-image:hover {
  transform: scale(1.03);
} */

.hero-buttons {
  margin-top: 20px;
  gap: 20px;
}

.primary-button {
  background-color: var(--primary-color);
  color: black;

  padding: 16px 26px;

  border-radius: 12px;

  font-weight: bold;
  font-size: 16px;
}

.primary-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.secondary-button {
  background-color: transparent;

  color: white;

  padding: 16px 26px;

  border: 1px solid var(--border-color);

  border-radius: 12px;

  font-size: 16px;
}

.secondary-button:hover {
  border-color: white;
}

.down-arrow {
  position: absolute;
  bottom: 30px;

  font-size: 30px;

  animation: float 1.5s infinite ease-in-out;
}

/* SERVICES */

.services {
  padding: var(--section-padding) 60px;
  gap: 60px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  flex: 1;
  min-width: 280px;

  gap: 20px;

  padding: 35px;

  background-color: var(--surface-color);

  border: 1px solid var(--border-color);

  border-radius: 24px;

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);

  border-color: var(--primary-color);
}

.card i {
  font-size: 50px;
  color: var(--primary-color);
}

.card-title {
  font-size: 28px;
  font-weight: bold;
}

.card p {
  color: var(--secondary-text-color);
  line-height: 28px;
}

/* SECTION CARD */

.section-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 50px;
  width: 100%;
}

/* BADGE */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;

  background-color: rgba(158, 183, 229, 0.08);
  border: 1px solid rgba(158, 183, 229, 0.25);

  color: var(--primary-color);

  padding: 6px 16px;

  border-radius: 100px;

  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* TAGS */

.project-tags {
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);

  color: var(--secondary-text-color);

  padding: 6px 14px;

  border-radius: 100px;

  font-size: 13px;
}

/* HISTORY */

.history {
  padding: var(--section-padding) 60px;
  gap: 60px;
}

.history-content {
  gap: 80px;
  align-items: flex-start;
}

.founder-card {
  min-width: 280px;
  align-items: center;
  text-align: center;
  gap: 16px;

  padding: 40px 35px;

  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 24px;
}

.founder-avatar {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgba(158, 183, 229, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

.founder-avatar i {
  font-size: 36px;
  color: var(--primary-color);
}

.founder-name {
  font-size: 32px;
  letter-spacing: 1px;
}

.founder-role {
  font-size: 14px;
  color: var(--secondary-text-color);
  letter-spacing: 1px;
}

.founder-stats {
  margin-top: 10px;
  gap: 30px;
}

.stat {
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 42px;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 0.5px;
}

.history-text {
  gap: 24px;
  justify-content: center;
}

.history-text p {
  color: var(--secondary-text-color);
  font-size: 18px;
  line-height: 32px;
}

/* PROJECT */

.project {
  justify-content: center;
  align-items: center;

  gap: 80px;

  padding: var(--section-padding) 60px;
}

.project-content {
  width: 600px;
  gap: 20px;
}

.project-content p {
  color: var(--secondary-text-color);
  line-height: 30px;
  font-size: 18px;
}

.project-image {
  width: 460px;
}

/* ABOUT */

.about {
  align-items: center;
  text-align: center;

  gap: 40px;

  padding: var(--section-padding) 60px;
}

.about-card {
  max-width: 900px;
  gap: 20px;
}

.about p {
  color: var(--secondary-text-color);

  font-size: 18px;
  line-height: 32px;
}

/* FOOTER */

footer {
  align-items: center;
  justify-content: center;

  gap: 20px;

  padding: 80px 20px;

  border-top: 1px solid var(--border-color);
}

.footer-logo {
  font-size: 50px;
}

footer span:nth-of-type(2) {
  color: var(--secondary-text-color);
}

.footer-legal {
  gap: 16px;
  font-size: 14px;
  color: var(--secondary-text-color);
}

.footer-legal a {
  transition: 0.2s;
}

.footer-legal a:hover {
  color: white;
}

.socials {
  gap: 25px;
}

.socials a {
  color: inherit;
  display: flex;
}

.socials i {
  font-size: 26px;

  cursor: pointer;

  transition: 0.2s;
}

.socials i:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* ANIMATIONS */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* RESPONSIVE */

@media (max-width: 1400px) {
  .hero {
    gap: 100px;
  }

  .hero .title {
    font-size: 72px;
    line-height: 72px;
  }

  .hero-content {
    width: 550px;
  }

  .hero-image {
    width: 500px;
  }
}

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;

    text-align: center;

    gap: 80px;

    padding-top: 120px;
  }

  .hero-content {
    width: 100%;
    max-width: 700px;

    align-items: center;
  }

  .hero .title {
    font-size: 64px;
    line-height: 64px;
  }

  .hero-image {
    width: 450px;
  }

  .project {
    flex-direction: column;
  }

  .project-content {
    width: 100%;
    max-width: 700px;

    text-align: center;
    align-items: center;
  }

  .history-content {
    flex-direction: column;
    align-items: center;
  }

  .founder-card {
    width: 100%;
    max-width: 400px;
  }

  .history-text {
    width: 100%;
    max-width: 700px;
  }
}

@media (max-width: 700px) {
  header {
    padding: 20px;
  }

  header nav {
    display: none;
  }

  .hero {
    padding: 120px 20px 80px;
    gap: 60px;
  }

  .hero-content {
    width: 100%;
  }

  .hero .title {
    font-size: 46px;
    line-height: 46px;
  }

  .subtitle {
    font-size: 16px;
    line-height: 28px;
  }

  .hero-image {
    width: 100%;
    max-width: 380px;
  }

  .section-title {
    font-size: 42px;
  }

  .services,
  .project,
  .about,
  .history {
    padding: 100px 20px;
  }

  .history-content {
    gap: 40px;
  }

  .section-card {
    padding: 30px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .project-image {
    width: 100%;
    max-width: 380px;
  }

  .footer-logo {
    font-size: 40px;
  }
}
