body {
  font-family: "poppins", sans-serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.166), rgba(0, 0, 0.166)),
    url(../images/radiant.jpg);
  background-repeat: no repeat;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 200px 0;
}

header h3 {
  font-weight: 300;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 5px;
  margin: 0;
}

header a {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  display: inline-block;
  padding: 16px 32px;
  text-align: center;
  color: #272044;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: white;
}

section {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

section.secondary {
  background-color: antiquewhite;
}

.text-center {
  text-align: center;
}
main {
  background-color: beige;
}

main h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 5px;
  color: #3d3f49;
  opacity: 0.3;
  text-transform: uppercase;
}

main h3 {
  font-weight: 700;
  font-size: 40px;
  margin: 0;
  line-height: 1.5;
  color: #3d3f49;
}

main p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #3d3f49;
  opacity: 0.7;
}

.grid {
  display: grid;
  grid-gap: 64px;
}

.grid-2-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.grid-3-columns-all-equal {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-3-columns {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 2rem 0;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.image-responsive {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.card h4 {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}

.card ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  background-color: #ff8fa3;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e96d87;
}

footer {
  background-image: linear-gradient(
      rgba(210, 180, 140, 0.8),
      rgba(245, 222, 179, 0.8)
    ),
    url(../images/lightbrown.jpg);
  background-repeat: no repeat;
  background-size: cover;
  color: black;
  text-align: center;
}

.footer-form {
  display: flex;
}

.footer-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 1rem;
}

.footer-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 0 4px 4px 0;
  background-color: #757c88;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.footer-form button:hover {
  background-color: #3d3f49;
}
footer h4 {
  font: weight 700;
  font-size: 20px;
  line-height: 30px;
}

footer p {
  font-weight: 200;
  font-size: 16px;
  opacity: 0.7;
  line-height: 24px;
}

footer ul {
  padding: 0;
}

footer li {
  font-weight: 200;
  font-size: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.emebed {
  width: 100%;
  aspect-ratio: 1/1;
}
.footer-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 900px) {
  header {
    padding: 60px 0;
  }
  header h3 {
    font-size: 18px;
  }
  .grid {
    grid-template-columns: 1fr;
    grid-gap: 32px;
  }
  section {
    padding: 30px;
  }
}
