/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fbd3e9, #bbd2c5);
}

/* GLOBAL SPACING SYSTEM */
section {
  padding: 80px 60px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 60px;
  background: black;
  color: white;

  position: sticky;
  top: 0;
  z-index: 1000;

}

/* LOGO */
.logo {
  font-family: 'Pacifico', cursive;
  font-size: 24px;
}

/* SEARCH */
.search {
  padding: 8px 12px;
  border-radius: 20px;
  border: none;
  width: 220px;
  background: #f1f1f1;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fbd3e9;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HERO TEXT */
.hero-left {
  max-width: 500px;
}

.hero-left h1 {
  font-size: 50px;
  margin-bottom: 20px;
  animation: slideUp 1s ease-out;
}

.hero-left p {
  margin-bottom: 20px;
  animation: slideUp 1.2s ease-out;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;
  animation: slideUp 1.4s ease-out;
}

.primary-btn {
  padding: 10px 20px;
  background: black;
  color: white;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.secondary-btn {
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 20px;
  background: white;
  cursor: pointer;
}

/* IMAGE */
.hero-right img {
  width: 350px;
  border-radius: 20px;
  animation: fadeIn 1.2s ease-in-out;
}

/* FEATURES */
.features {
  text-align: center;
}

.feature-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* PRODUCTS */
.products {
  text-align: center;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.product {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-10px);
}

.product img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTACT SECTION */
.contact {
  text-align: center;
  padding: 80px 60px;
}

.contact h2 {
  margin-bottom: 30px;
}

/* FORM */
.contact-form {
  max-width: 500px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 15px;

  background: white;
  padding: 25px;
  border-radius: 15px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* BUTTON */
.contact-form button {
  padding: 12px;
  background: black;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #333;
}

/* FOOTER */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ANIMATIONS */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .search {
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img {
    width: 100%;
    margin-top: 20px;
  }

  .feature-box {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }
}