/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v47-latin-regular.woff2") format("woff2");
}
/* roboto-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto-v47-latin-600.woff2") format("woff2");
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v47-latin-700.woff2") format("woff2");
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  background: #e8ebf3;
  color: #0b1c2b;
}
html,
body {
  height: 100%;
  margin: 0;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header {
  background: white;
  padding: 11px 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.logo {
  height: 40px;
  cursor: pointer;
}
.nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #0b1c2b;
  font-weight: bold;
}
.nav a:hover {
  color: #ff4b2b;
}
.btn {
  background: #fc4132;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #fc4132;
}
.btn:hover {
  background: #fff;
  color: #fc4132;
  border: 1px solid #fc4132;
}
.main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.image-grid {
  background: url("../images/couples.webp");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 884px;
  margin-right: 50px;
}

.about-card {
  max-width: 490px;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.about-card h2 {
  margin-bottom: 2rem;
  color: #0b1c2b;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.about-card p {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 16px;
}
.about-card p.highlight {
  font-weight: bold;
  color: #0b1c2b;
  font-size: 18px;
  text-transform: uppercase;
}
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background: #ff4b2b;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fc4132;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cta-button:hover {
  color: #ff4b2b;
  background: #fff;
}
.footer {
  text-align: center;
  background: #dde1ed;
  padding: 1rem;
  font-size: 0.9rem;
  color: #333;
  margin-top: 2rem;
}

ul {
  text-align: left;
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 3;
  font-size: 20px;
  list-style-type: square;
}

.btn.btn-2 {
  display: none;
}

.link {
  color: rgb(252, 65, 50);
}

.link:hover {
  filter: brightness(1.2);
  text-decoration: none;
}

@media (max-width: 1279px) {
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about-card h2 {
    font-size: 18px;
    margin-bottom: 1.2rem;
  }
  ul {
    font-size: 18px;
  }
  .main-content {
    padding: 1rem;
  }
  .logo {
    margin: 0 auto;
  }
  nav {
    margin: 24px auto 0;
  }
  .btn {
    display: none;
  }
  .btn.btn-2 {
    display: block;
    max-width: 300px;
    margin: 20px auto 0;
  }
  .about-card p.highlight {
    font-size: 15px;
  }
  .image-grid {
    min-width: 100%;
    min-height: 25vh;
    margin-right: 0;
    transition: all .3s ease;
  }
  .cta-button {
    font-size: 14px;
    line-height: 1.6;
  }
  html,
  body {
    height: unset;
    min-height: 100vh;
  }
  .footer {
    margin-top: 5rem;
  }
  .about-card {
    padding: 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeInUp 1.5s ease forwards;
  animation: fadeInUp 1.5s ease forwards;
}

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

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