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

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: white;
  position: relative;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 10px 15px;
  background-color: black;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: #333;
}

.search-icon {
  font-size: 18px;
  background: none;
  color: black;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  text-align: left;
  padding: 80px 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(30px, 6vw, 50px);
  font-weight: bold;
  line-height: 1.2;
  font-family: "Impact", sans-serif;
}

.hero h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: bold;
  line-height: 1.2;
  font-family: "Impact", sans-serif;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-top: 15px;
  max-width: 500px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  background-color: #0a0a0a;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Form Container */
.form-container {
  width: 100%;
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  background: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.form-container label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin-top: 10px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-container button {
  width: 100%;
  padding: 12px;
  background-color: #6c63ff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #5148d4;
}

/* Table Styling */
.how-it-works-table {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #f8f8f8;
  overflow-x: auto;
  display: block;
}

.how-it-works-table th,
.how-it-works-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.how-it-works-table th {
  background-color: #070708;
  color: white;
  font-size: 18px;
}

.how-it-works-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.how-it-works-table tr:hover {
  background-color: #ddd;
}

.steps {
  text-align: center;
  padding: 20px;
}

.steps h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Image Gallery */
.image-gallery {
  padding: 40px 5%;
  background-color: #f4f4f4;
}

.image-gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
  text-align: center;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-row img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-row img:hover {
  transform: scale(1.05);
}

.product-hero {
  background-color: #0a0a0a;
  padding: 60px 5%;
  text-align: left;
  color: white;
}

.product-hero h1,
.product-hero p {
  color: white;
}

.products-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 5%;
  background-color: #fff;
}

.product-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 30px 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.product-info .price {
  font-size: 18px;
  color: #0070ba;
  font-weight: bold;
  margin-bottom: 15px;
}

.paypal-button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.paypal-button:hover {
  background-color: #333;
}

/* Footer Styling */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

footer a {
  color: #6c63ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #5148d4;
}

footer div {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 15px 5%;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.active {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 10px 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    display: block;
  }

  nav ul li a {
    display: block;
    width: 90%;
    margin: 5px auto;
    padding: 12px 15px;
  }

  .hero {
    padding: 60px 5%;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .form-container {
    padding: 15px;
    margin: 30px 5%;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
  }

  .how-it-works-table {
    width: 95%;
    font-size: 14px;
  }

  .how-it-works-table th,
  .how-it-works-table td {
    padding: 8px;
  }

  .gallery-row img {
    max-width: 150px;
  }

  .products-section {
    padding: 40px 5%;
    gap: 20px;
  }

  .product-card {
    max-width: 100%;
  }

  .product-hero {
    padding: 40px 5%;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 16px;
    padding: 8px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .gallery-row img {
    max-width: 120px;
  }

  .form-container h2 {
    font-size: 20px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  nav ul {
    gap: 10px;
  }

  nav ul li a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .products-section {
    gap: 30px;
  }
}
