body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fdf8f3;
  color: #3e2f1c;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 0.1rem;
  background-color: #e8d8c3;
}

.navbar h1 {
  text-align:center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.navbar p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #3e2f1c;
  font-weight: 500;
}

.hero {
  background-image: url('images/CaliforniaLoveNepal.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: hard-light;
  padding: 2rem 2rem;
  text-align: center;
  color: #204887;
}

.hero-content {
  margin-top: 0px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #a67c52;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta-button-new {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d2691e; /* chai-inspired color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}


.featured {
  padding: 2rem 1rem;
  text-align: center;
}

.featured-new {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-row {
  display: flex;
  align-items: center; /* Vertically center the cards */
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured title{
    font-family: cursive;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.product-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.product-card-new img {
  height: 500px;         /* Set desired uniform height */
  width: 100%;           /* Make it responsive within the card */
  object-fit: fill;     /* Crop to fill the area without distortion */
  border-radius: 8px;    /* Optional: rounded corners for style */
}

.product-info {
  margin-top: 1rem;
}

.buy-button {
  display: inline-block;
  margin-top: 0.5rem;
  background-color: #3e2f1c;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
}