/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: linear-gradient(135deg, #3B82F6, #6366F1);
  color: #333;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #091c4b;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F9FAFB;
}

nav .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav .nav-links li a {
  text-decoration: none;
  color: #F9FAFB;
  font-weight: 500;
  transition: 0.3s;
}

nav .nav-links li a:hover {
  color: #FBBF24;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url(./images/banner.jpg) center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
}

.hero .btn {
  padding: 15px 30px;
  background: #F59E0B;
  color: #0d0c0c;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #ff2a44;
  color: white;
}

/* Products Section */
.products {
  padding: 80px 50px;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-card p {
  font-weight: 600;
  color: #ff4c60;
  margin-bottom: 15px;
}

.product-card button {
  padding: 10px 20px;
  background: #F59E0B;
  border: none;
  color: #070707;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background: #ff2a44;
  color: white;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  padding: 40px 50px;
  text-align: center;
}

footer .socials a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

footer .socials a:hover {
  color: #1877F2;
}



/* Responsive */
@media(max-width: 768px) {
  nav .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 200px;
    transition: 0.3s;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  nav .nav-links.active {
    right: 20px;
  }

  .hamburger {
    display: flex;
  }
}
