@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

:root {
  --purple-700: hsl(257, 40%, 49%);
  --magenta-400: hsl(300, 69%, 71%);
}

body {
  min-height: 100vh;
  background: url(./images/bg-desktop.svg), var(--purple-700);
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
}
nav {
  display: flex;
  align-items: center;
  justify-content: start;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  padding-top: 20px;
  padding-left: 40px;
}

nav img {
  max-width: clamp(150px, 45vw, 200px);
}
.container {
  flex: 1;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(20px, 6.93vw, 30px) clamp(30px, 5vw, 50px);
}
.left-column {
  display: flex;
  justify-content: center;
}
.left-column img {
  width: 100%;
}

.right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.heading {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 650px;
}

.description {
  color: #ecebeb;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 650px;
}

.btn {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 400;
  background: #fff;
  color: var(--purple-700);
  display: block;
  padding: 15px 60px;
  border-radius: 50px;
  box-shadow: #00000054 0px 10px 10px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--magenta-400);
  color: #fff;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  padding-top: 10px;
}

footer .social a {
  color: #fff;
  font-size: clamp(15px, 4.65vw, 20px);
  padding: clamp(4px, 1.6vw, 7px) clamp(5px, 1.8vw, 8px);
  border: 1px solid;
  border-radius: 40px;
  margin-right: 10px;
  transition: 0.3s;
}

footer .social a:hover {
  color: var(--magenta-400);
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    background-image: url(./images/bg-mobile.svg);
    background-size: contain;
  }
  .container {
    grid-template-columns: 1fr;
    text-align: center;
    height: auto;
  }
  .right-column {
    align-items: center;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    padding-top: 10px;
  }
}
