:root {
      --pink: #f7b6c8;
      --red: #d81f3f;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
        font-family: "Playfair Display", serif;
    }

    body {
    background: #f5a4c7;
    color: #e31e2b;
}

  section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    flex-direction: column;
    flex-wrap: nowrap;
}

    .container {
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }

    /* Logo */
    .logo {
     
      font-weight: 800;
      letter-spacing: 4px;
      margin-bottom: 0px;
      color: #fff;
    }

    /* Hero */
  .hero h1 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 9px;
}

    .hero p {
      font-size: 30px;
      max-width: 700px;
      margin: 0 auto 9px;
      color: var(--red);
    }

    /* Signup */
    .signup {
    background: #d81f3f;
    color: #ffffff;
}

    .signup h2 {
      font-size: 60px;
      margin-bottom: 20px;
    }

    .signup p {
      font-size: 24px;
      margin-bottom: 40px;
    }

    form {
      max-width: 500px;
      margin: 0 auto;
    }

    input {
      width: 100%;
      padding: 15px;
      margin-bottom: 15px;
      border: 2px solid var(--red);
      font-size: 16px;
    }
button {
    width: 100%;
    padding: 16px;
    background: #f40069;
    color: var(--white);
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

    /* About */
    .about {
    background: #f5a4c7;
}

   .about h2 {
    font-size: 75px;
    margin-bottom: 30px;
}
 .about h2 span {
    color: #fff;
}

    .about p {
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto 20px;
      line-height: 1.6;
    }

    /* Footer */
    footer {
      padding: 40px 20px;
      text-align: center;
      background: var(--red);
      color: var(--white);
    }

    @media (max-width: 768px) {
      .logo { font-size: 44px; }
      .hero h1 { font-size: 36px; }
      .signup h2, .about h2 { font-size: 32px; }
    }

.social-arrow-section {
  text-align: center;
  padding: 0px 20px;
}

.social-icons {
    display: flex;
    justify-content: end;
    gap: 30px;
    margin-bottom: 40px;
    margin-right: 60px;
}
.menu h2:hover {
    color: #d81f3f;
    transition: 0.5s;
}

.social-icons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #e31e2b;
    color: #fff;
}

.scroll-arrow {
  font-size: 26px;
  
  color: #e31e2b;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .social-icons {
    gap: 20px;
  }
  .social-icons a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.logo img {
    width: 100%;
}

.menu {
    text-align: end;
    padding-right: 150px;
    position: relative;
    top: 30px;
}
.menu h2 {
    text-align: end;
    border: 1px solid;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 19px;
    color: #fff;
}