/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: #222;
  color: white;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ff9800;
}

/* HERO SECTION */
.home-hero {
  background: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1600') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.explore-btn {
  background: #ff9800;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #e68900;
  transform: scale(1.05);
}

/* FEATURED PRODUCTS */
#featured {
  text-align: center;
  padding: 50px 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.featured-item {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.featured-item img {
  width: 100%;
  border-radius: 12px;
}

.featured-item:hover {
  transform: scale(1.05);
}

/* HIGHLIGHTS */
#highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: #fff8e1;
  text-align: center;
  padding: 40px 5%;
}

.highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* NEWSLETTER */
#newsletter {
  text-align: center;
  background: #222;
  color: white;
  padding: 40px 20px;
}

#newsletter input {
  padding: 10px;
  width: 250px;
  border-radius: 20px;
  border: none;
  outline: none;
}

#newsletter button {
  padding: 10px 20px;
  margin-left: 10px;
  background: #ff9800;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
}

#newsletter button:hover {
  background: #e68900;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}
/* SHOP PAGE HEADER */
.shop-header {
  background: url('https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1600') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.shop-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* PRODUCT GRID */
#shop-products {
  padding: 50px 5%;
  background: #f9f9f9;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 15px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.1rem;
  margin: 5px 0;
}

.product-card p {
  font-weight: bold;
  margin: 5px 0;
}

.add-to-cart {
  margin-top: auto;
  background: #ff9800;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #e68900;
}
.team {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-logo {
    flex-shrink: 0;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background-color: #ffc107;
    color: #343a40;
    font-size: 2em;
    font-weight: bold;
    border-radius: 50%;
    border: 4px solid #343a40;
}
/* ABOUT PAGE HEADER */
.about-header {
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.2rem;
  margin-top: 0;
}


