@font-face {
    font-family: "Lexend";
    src: url("/assets/font/Lexend-Variable.ttf") format("truetype");
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

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

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #ECF0F1;
}

body {
    color: #ECF0F1;
}

.container {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 4rem;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2b3d4fd9;
    height: 85px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.navigation__left, .navigation__right {
    flex: 1;
    height: 100%;
}

.navigation__right {
    display: flex;
    justify-content: end;
}

.navigation__links-container {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
    align-items: center;
}

.navigation__link {
    transition: color 0.15s;
    font-weight: 600;
}

.navigation__logo {
    width: 110px;
    height: auto;
}

.navigation__link:hover {
    color: #E74C3C;
}

a {
    white-space: nowrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    background-color: #FF9900;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.47);
    transition: padding 0.15s, font-size 0.15s;
    display: block;
    transition: transform 0.15s;
    text-align: center;
}

.cta-button:hover {
    transform: scale(1.05);
}

.header {
    padding-top: 10rem;
    padding-bottom: 8rem;
    background: #5E8BB8;
    background: radial-gradient(circle, rgba(94, 139, 184, 1) 0%, rgba(68, 100, 131, 1) 50%, rgba(44, 62, 80, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.header__title {
    font-size: 4rem;
}

.header__title-yours {
    color: #E74C3C;
    text-decoration: underline;
}

.header__subtext {
    margin-bottom: 3rem;
}

.header__buttons-container {
    display: flex;
    gap: 1rem;
}

.header__button-learn-more {
    text-align: center;
    padding: 1rem 2rem;
    border: 1px solid white;
    transition: background-color 0.15s;
}

.header__button-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.services {
    background-color: #ECF0F1;
}

.services__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4.5rem;
}

.section__title {
    font-size: 42px;
    color: #333333;
    text-transform: uppercase;
    text-align: start;
    line-height: 2.5rem;
}

.services__title {
}

.services__cards-container {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}

.services__card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #666;
    font-weight: 500;
    flex: 1;
    border: 2px solid rgb(102, 102, 102);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    max-width: 325px;
    font-size: 0.9rem;
    transition: transform 0.15s;
    background-color: #ffffff;
}

.services__card:hover {
    transform: scale(1.1);
}

.services__card-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.services__card-price {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
}

.services__card-price-currency {
    font-size: 1rem;
}

.services__card-list-item {
    display: flex; /* makes the circle + text sit side by side */
    align-items: top;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.services__card-list-item::before {
    content: "✓";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    background-color: #333;
    color: #ECF0F1;
    font-weight: bold;
    flex-shrink: 0; /* prevents the circle from shrinking */
}

.services__card-list-item-white::before {
    background-color: #ECF0F1;
    color: #E74C3C;
}
.services__card-list-item-gold::before {
    background-color: #FF9900;
    color: #ECF0F1;
}

.services__card-recommended {
    color: #ECF0F1;
    background-color: #E74C3C;
    border: 10px solid orange;
    transform: scale(1.075);  /* make it pop */
    filter: drop-shadow(0 0 10px #00000071);
}

.services__card-recommended:hover {
    transform: scale(1.175);
}

.service__card-price-recommended {
    color: white;
}


.services__card-recommended-title {
    font-size: 1.5rem;
    text-align: center;
    text-decoration: underline;
    font-weight: bold;
}

.services__card-list-item-bold {
    font-weight: bold;
}

.development {
    background-color: white;
}

.development__container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
}

.development__steps-container {
    display: flex;
    gap: 1.5rem;
}

.development__step {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #333;
    flex: 1;
}

.development__step-number {
    color: #E74C3C;
    font-size: 2rem;
    font-weight: bold;
}

.development__step-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.development__step-description {
    font-size: 1rem;
    font-weight: 300;
    color: #7c7c7c;
}

.testimony {
    background-color: #2B3D4F;
}

.testimony__container {
    color: #ECF0F1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__title-white {
    color: #ECF0F1;
    text-align: center;
}

.quote-symbol {
    font-size: 4rem;
}

.testimony__text {
    font-size: 1.5rem;
    text-align: center;
    max-width: 650px;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.testimony__subtext {
    font-size: 0.9rem;
    max-width: 700px;
    text-align: center;
    line-height: 1.3rem;
    color: #a9adad;
    margin-bottom: 1.5rem;
}

.testimony__client-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimony__client-name {
    font-weight: bold;
}

.testimony__client-company-name {
    font-weight: 300;
    color: #a9adad;
    font-size: 0.9rem;
}

.testimony__client-img {
    border-radius: 100px;
}

.about {
    background-color: #fff;
    color: #666;
}

.about__container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.about__img {
    width: 350px;
}

.about__info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: start;
}

.about__info-container div {
    flex: 1;
}

.about__description {
    font-weight: 300;
    line-height: 1.65rem;
    max-width: 500px;
    font-size: 1.1rem;
}

.about__btn {
    color: #ECF0F1;
    padding: 1rem 1.5rem;
    background-color: #E74C3C;
    border-radius: 5px;
}

.faq {

}

.faq__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    gap: 3rem;
}

.faq__questions-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.faq__item {
    background-color: #2B3D4F;
    border-radius: 5px;
    transition: height 0.15s;
}

.faq__question {
    padding: 1rem;
    background-color: #2B3D4F;
    color: #ECF0F1;
    border-radius: 5px;
    transition: background-color 0.15s;
    user-select: none;
}

.faq__question:hover {
    cursor: pointer;
    background-color: #3e576f;
}

.faq__answer {
    margin-left: 3rem;
    color: #b7baba;
    padding-bottom: 1rem;
    margin-right: 4rem;
    padding-top: 0.5rem;
}

.meet {
    background: radial-gradient(circle, rgba(94, 139, 184, 1) 0%, rgba(68, 100, 131, 1) 50%, rgba(44, 62, 80, 1) 100%);
}

.meet__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meet__subheading-container {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.meet__subheading {
    color: #d6d8d9;
    font-size: 1.25rem;
}

.form__container {
    display: flex;
    gap: 2rem;
    color: #666;
    align-items: start;
    max-width: 1100px;
}

.form__container-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__contact-info-container {
    display: flex;
    gap: 0.5rem;
}

.form__container-right {
    flex: 2;
}

.form__element {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form__text-field {
    background-color: #2B3D4F;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    color: #ECF0F1;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
}

.form__text-field::placeholder {
    color: #ecf0f19d;
    font-weight: bold;
    font-size: 1.1rem;
}

.form__message {
    padding-bottom: 150px;
}

.form__button {
    padding: 1rem;
    color: #ECF0F1;
    background-color: #E74C3C;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

textarea {
    resize: none;
    width: 100%;
}

footer {
    background-color: #2B3D4F;
}

.footer__container {
    display: flex;
    gap: 12rem;
    align-items: start;
}

.footer__left-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
    max-width: 400px;
    flex: 1;
}

.footer__image {
    width: 175px;
}

.footer__description {
    font-size: 0.8rem;
    color: #a9adad;
    font-weight: 300;
    line-height: 1.25rem;
}

.footer__copyright {
    font-weight: bold;
    font-size: 0.9rem;
}

.footer__creator-tag {
    color: #a9adad;
    transition: color 0.15s;
}

.footer__creator-tag:hover {
    color: #E74C3C;
}

.footer__right-container {
    display: flex;
    justify-content: start;
    flex: 1;
    gap: 4rem;
}

.footer__links-title {
    font-size: 0.9rem;
    color: #a9adad;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer__links-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__email {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.meeting-button {
    cursor: pointer;
    margin-top: 2rem;
}

.navigation__hamburger-menu {
    display: none;
    background: none;
    border: none;
}

.navigation__hamburger-menu:hover {
    background-color: rgba(255, 255, 255, 0.244);
    border-radius: 5px;
}

.blog__page-container {
    display: flex;
    flex-direction: column;
    padding: 10rem 0;
    gap: 5rem;
}

.blog__title a,
.blog__item,
.blog__item span {
    color: #333;
}

.blog__title a:hover {
    color: #666;
}

.blog__item {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 865px;
}

.blog__information {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 500px;
    align-items: start;
    flex: 1;
}

.blog__button {
    padding: 0.75rem 1rem;
    background-color: #5E8BB8;
    border-radius: 5px;
    transition: background-color 0.15s;
}

.blog__button:hover {
    background-color: #3e5c7a;
}

.blog__creation-info {
    color: #666;
}

.blog__img-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.blog__img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.article {
    background-color: #ECF0F1;
    color: #333;
}

.article__content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 8rem 0;
    max-width: 900px;
}

.article__information {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.article__img {
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  border-radius: 2px;
}

.blog {
    background-color: #ECF0F1;
}

.blog__container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.blog__items-container {
    display: flex;
    gap: 3rem;
    flex-direction: column;
    color: #ECF0F1;
}

.blog__more-btn {
    background-color: #E74C3C;
}

.page__header-title {
    color: #333;
    font-size: 3rem;
    text-transform: uppercase;
    border-bottom: 3px solid #333;
}

.page__header {
    background-color: #ECF0F1;
    width: 100%;
    text-align: center;
}

.page__header-cta {
    font-size: 2.5rem;
    color: #555;
    text-align: center;
    max-width: 1200px;
}

.page__header-container {
    margin-top: 5rem;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.about__page-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about__page-img {
    width: 60%;
    margin: 0 auto;
}

.about__page-container section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about__page article {
    color: #333;
    max-width: 700px;
}

.about__page-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about__page-list li::before {
    content: "➤ ";
    padding-left: 2rem;
}

/* ====== Shared styles for <= 1023px ====== */
@media (max-width: 1023px) {
    .container {
        width: 90%;
    }

    .nav__container {
        width: 95%;
    }

  .navigation__links-container {
    display: none;
  }

  .section__title {
    text-align: center;
  }

  .responsive-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    padding-block: 3rem;
    background-color: #2b3d4f;
    backdrop-filter: blur(5px);
    border-bottom: 3px solid #ecf0f19d;
  }

  .navigation__hamburger-menu {
    display: block;
  }

  .navigation__link {
    padding: 0; /* keep consistent */
  }

  .header {
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .header__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 4rem;
  }

  .header__subtext {
    margin-bottom: 2rem;
  }

  .header__content {
    gap: 0;
  }

  .services__cards-container,
  .development__steps-container,
  .about__container,
  .form__container,
  .form__contact-info-container,
  .footer__right-container {
    flex-direction: column;
  }

  .about__container,
  .footer__container {
    flex-direction: column-reverse;
  }

  .about__btn,
  .form__container-right {
    width: 100%;
  }

  .footer__container {
    gap: 5rem;
  }

  .blog__item {
    flex-direction: column-reverse;
  }
}

/* ====== Phone-only styles (<= 599px) ====== */
@media (max-width: 599px) {
  .nav__container,
  .container {
    width: 90%;
  }

  .header__content {
    padding-top: 6rem;
  }

  .header__buttons-container {
    flex-direction: column;
    width: 100%;
  }

  .header__title {
    font-size: 2.5rem;
    line-height: 2.75rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }

  .about__info-container {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .blog__item {
    gap: 2rem;
  }

  .blog__information {
    width: 100%;
  }

  .blog__title a {
    text-wrap-mode: wrap;
  }

  .page__header-title {
    font-size: 2.5rem;
  }

  .page__header-cta {
    font-size: 2rem;
  }

  .blog__page-container {
    padding: 4rem 0.5rem;
  }

  .meet__subheading-container  {
    width: 100%;
  }

  .cta-button {
    width: 100%;
    text-wrap-mode: wrap;
    font-size: 1rem;
  }

  .container { 
    padding: 3rem 1rem;
  }
}
