/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&family=Roboto:wght@400;500;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: hsl(210, 10%, 33%);
}

/* Buttons */
.button {
  text-decoration: none;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  margin: 50px 30px 0 0;
  transition: 0.3s;
}
.button--ios {
  background: hsl(171, 66%, 44%);
}
.button--mac {
  background: hsl(233, 100%, 69%);
}
.button:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

/* Hero */
.hero-header {
  background: url(/images/bg-header-desktop.png) no-repeat center/cover;
  text-align: center;
  padding: 80px 20px;
}
.hero-header__logo {
  width: 80px;
  margin-bottom: 30px;
}
.hero-header__content {
  max-width: 600px;
  margin: auto;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
.features-grid__image-wrapper img {
  max-width: 100%;
  height: auto;
}
.features-grid__text-container {
  max-width: 400px;
  text-align: left;
}
.feature-item {
  margin-bottom: 40px;
}

.access-anywhere p {
  margin: 30px 0;
}
/* Workflow */
.workflow-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin: 40px 0;
}
.tool-card {
  max-width: 300px;
}

/* Partners */
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.partners-logos img {
  max-width: 120px;
  height: auto;
}

.final-cta h2 {
  margin-bottom: 20px;
}
.final-cta p {
  margin: 40px 0;
}
/* Footer */
.site-footer {
  background: hsl(195, 12%, 94%);
  padding: 30px;
}
.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.site-footer a {
  text-decoration: none;
  transition: 0.3s;
  color: #000;
  padding: 10px 0;
}
.site-footer a:hover {
  color: hsl(171, 66%, 44%);
  transform: translateY(-5px);
}
/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    text-align: center;
  }
  .features-grid__text-container {
    text-align: center;
  }
  .access-anywhere img {
    max-width: 100%;
  }
}
