/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Hero Section */
.hero {
  background: url('https://i.ibb.co/zHm7q32n/product1-jpg.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #ff6600;
  color: white;
}
.btn-secondary {
  background: white;
  color: #ff6600;
}

/* Products */
.products {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}
.products h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.product-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.product-card {
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.product-card h3 {
  margin: 15px 0 5px;
  color: #ff6600;
}

/* About */
.about {
  background: #ffe6cc;
  padding: 70px 20px;
  text-align: center;
}
.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-content {
  max-width: 700px;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

/* Modal (Popup) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: popup 0.3s ease-in-out;
  position: relative;
}
@keyframes popup {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}
.form-group {
  margin: 15px 0;
}
input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #ff6600;
  color: white;
  margin-top: 50px;
}
footer .social-links {
  margin: 10px 0;
}
footer .social-links a {
  color: white;
  font-weight: bold;
  margin: 0 8px;
  text-decoration: none;
}
footer .social-links a:hover {
  color: #ffe0b3;
}
