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

:root {
  --background-color: #f6f4ed;
  --color: #fff;
  --primary-color: #fdc400;
  --primary-color-dark: #ffc400;
  --secondary-color: #7b29dd;
  --text-color: #1e1e1e;
}

body {
  background-color: var(--background-color);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  font-weight: 600;
}

h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 4rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 2.5rem;
}
h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}

/* Button */

.btn {
  display: inline-block;
  padding: 12px 24px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
}
.btn-primary:hover {
  background-color: var(--primary-color-dark);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
}

/* Header */

.header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid var(--primary-color);
  background-color: var(--background-color);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  & .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 2.5rem;
    transition: color 0.3s ease;
  }

  & .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2.5rem;
    gap: 2rem;
    font-size: 1.2rem;

    & .nav {
      color: var(--text-color);
      padding: 10px 20px;
      border-radius: 5px;
      transition: all 0.3s ease-in-out;

      & ul {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 2rem;

        & li {
          margin: 0 1rem;
        }

        & a {
          color: var(--text-color);
          border-radius: 5px;
          transition: all 0.3s ease;
          font-size: 1.2rem;
          font-weight: 500;
        }
      }
    }
  }
}

/* Hero Section */

.hero {
  min-height: 100vh;
}
.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100vh;
  margin: 0 0 0 2.5rem;

  &::before {
    content: '';
    position: fixed;
    top: 0;
    left: -50px;
    width: 50%;
    height: 25%;
    border-radius: 50%;
    background-color: var(--secondary-color);
    z-index: -1;
    -webkit-filter: blur(400px);
    filter: blur(400px);
  }

  & span {
    color: var(--secondary-color);
  }

  & .hero-image-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    &::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      height: 80%;
      border-radius: 50%;
      background-color: var(--primary-color);
      z-index: -1;
      opacity: 0.7;
      -webkit-filter: blur(400px);
      filter: blur(400px);
    }
  }

  & .hero-image {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }
}

/* About Section */

.about {
  min-height: 100vh;
  padding: 2rem 9%;

  & .about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 6rem;
    gap: 1rem;

    & .about-features {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 1rem;

      & h2 {
        padding: 1rem 2rem;
        text-align: center;

        & span {
          display: block;
          color: var(--secondary-color);
        }
      }

      & .about-feature {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2rem;
        color: var(--text-color);
        transition: all 0.3s ease-in-out;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;

        & i {
          background-color: var(--primary-color);
          color: var(--text-color);
          padding: 1rem;
          font-size: 2rem;
        }
      }
    }

    & .about-image-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        border-radius: 50%;
        background-image: linear-gradient(90deg, #7b29dd 1%, #fdc400 99%);
        z-index: -1;
        opacity: 0.7;
      }
    }
  }
}

.products {
  min-height: 100vh;

  & .product-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 6rem;
    padding: 2rem 12rem;

    & h2 {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      padding: 1rem 2rem;
      text-align: center;

      & span {
        display: block;
        color: var(--secondary-color);
      }
    }
  }
}
