/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

body.dark {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 1000;
  transition: transform 0.5s, background-color 0.3s;
}

nav.dark {
  background-color: #2a2a2a;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #c2185b;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s, transform 0.2s;
}

.nav-links a:hover {
  color: #c2185b;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

.dark .hamburger {
  color: #e0e0e0;
}

/*.theme-toggle {
  background: #c2185b;
  color: #fff;
  border: none;
  padding: 0.6rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
}*/

/* Section animations */
section {
  padding: 4rem 1rem;
  margin-top: 5rem;
  scroll-margin-top: 6rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #fce4ec, #fff);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #c2185b;
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 11rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero a {
  display: inline-block;
  background-color: #c2185b;
  color: #fff;
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
}

.hero a:hover {
  background-color: #9c003f;
  transform: scale(1.05);
}

/* Products Section */
.products {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.products p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
}

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

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-card p.description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.product-card p.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c2185b;
}

/* About Section */
.about {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.about h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-member {
  background: #fce4ec;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.9rem;
  color: #666;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #fce4ec, #fff);
  text-align: center;
  padding: 4rem 1rem;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-bottom: 2.5rem;
}

.contact-details h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.map-container {
  margin: 2.5rem auto;
  max-width: 900px;
}

.map-container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.map-placeholder {
  background: #f0f0f0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: #666;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem;
  margin-bottom: 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #f0f0f0;
  cursor: not-allowed;
}

.contact-form button {
  background: #c2185b;
  color: #fff;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
  display: block;
  margin: 0 auto;
}

.contact-form p.note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.75rem;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #c2185b;
  color: #fff;
}

footer p {
  font-size: 0.9rem;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container h1 {
    font-size: 1.6rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero a {
    padding: 0.8rem 2rem;
  }

  .products h2, .about h2, .contact h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .product-grid, .team-grid {
    grid-template-columns: 1fr;
  }

  .products h2, .about h2, .contact h2 {
    font-size: 1.8rem;
  }

  .product-card img {
    height: 180px;
  }
}