
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

body {
   background-color: #f5f5f5;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:20px 50px;
  background-color: #222;
  color: #fff;
  position: sticky;
  top:0;
  z-index:1000;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.dark-theme {
  background-color: #111;
  color: #fff;
}

.dark-theme .navbar {
  background-color: #000;
}

.dark-theme .product-card {
  background-color: #222;
  color: #fff;
}

.dark-theme .about {
  background-color: #181818;
  color: #fff;
}

.dark-theme .contact {
  background-color: #121212;
  color: #fff;
}

.dark-theme input,
.dark-theme textarea {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}

/* Inside your dark-theme */
.dark-theme .about-text h2,
.dark-theme .about-text p {
  color: #fff;
}

.dark-theme .product-card h3,
.dark-theme .product-card p {
  color: #fff;
}

.dark-theme .contact h2,
.dark-theme .contact p {
  color: #fff;
}




.nav-links li a:hover {
  color: #ff914d;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  background: linear-gradient(to right, #ff914d, #ff4d6d);
  color: #fff;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #fff;
  color: #ff4d6d;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #222;
  color: #fff;
}

.hero-image img {
  width: 350px;
  max-width: 100%;
  border: none;
}

model-viewer {
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 0 auto;
}


/* Shop Section */
.shop {
  padding: 60px 80px;
  background-color: #333232;
  text-align: center;
}

.shop h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 300;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
}

.product-card p {
  font-size: 1.1rem;
  color: #ff4d6d;
  margin-bottom: 12px;
}

.about {
  padding: 60px 80px;
  background-color: #fdfdfd;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image img {
  width: 450px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact {
  padding: 60px 80px;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  resize: none;
}

.contact-form button {
  width: fit-content;
  align-self: center;
}

/* Testimonials */
.testimonials {
  padding: 60px 80px;
  background-color: #f9f9f9;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-style: italic;
}

.testimonial p {
  margin-bottom: 10px;
}

.testimonial span {
  display: block;
  font-weight: bold;
  color: #ff4d6d;
}

/* Dark Theme for Testimonials */
.dark-theme .testimonials {
  background-color: #1a1a1a;
}

.dark-theme .testimonial {
  background-color: #222;
  color: #fff;
}

.dark-theme .testimonials h2 {
  color: #fff;
}

.dark-theme .testimonial span {
  color: #ffb347;
}

/* Modal Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.modal-content h3 {
  margin-bottom: 15px;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Dark Theme for Modal */
.dark-theme .modal-content {
  background-color: #222;
  color: #fff;
}

.dark-theme .modal-content .close {
  color: #fff;
}


html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
  }

  .nav-links li a {
    font-size: 1rem;
  }
}
