/* ===== RESET ===== */
body, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fefdfb;
  color: #2c2c2c;
}

/* ===== NAVIGATION ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: black;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: color 0.2s ease, border-bottom 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #b9925e;
  border-bottom: 2px solid #b9925e;
  padding-bottom: 4px;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #fffdfb;
}

.hero-content {
  max-width: 500px;
  margin-right: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #2c2c2c;
}

.hero p {
  font-size: 1.1rem;
  color: #6c6c6c;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background-color: #b9925e;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1rem;
  font-weight: 600;
}

.cta-btn:hover {
  background-color: #d1ab72;
}

.hero-img {
  width: 350px;
  border-radius: 12px;
  border: 2px solid #e4d5b7;
  box-shadow: 0 4px 10px rgba(200,161,101,0.1);
}

/* ===== FEATURED COLLECTIONS ===== */
.featured {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #fdfbf8;
}

.collection-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.collection-card {
  background: white;
  border: 1px solid #e4d5b7;
  border-radius: 8px;
  width: 250px;
  padding-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(200,161,101,0.05);
}

.collection-card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.collection-card h3 {
  color: #b9925e;
  margin-top: 0.5rem;
}

/* ===== BRAND INTRO ===== */
.brand-intro {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #fffefc;
}

.learn-more {
  color: #b9925e;
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #f8f4ef;
  color: #7a6b5b;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .collection-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-img {
    width: 90%;
  }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #fffdfb;
}

.about-content {
  max-width: 500px;
  margin-right: 2rem;
}

.about-content h1 {
  font-size: 2.5rem;
  color: #2c2c2c;
}

.about-content p {
  font-size: 1.1rem;
  color: #6c6c6c;
  line-height: 1.7;
  margin-top: 1rem;
}

.about-img {
  width: 350px;
  border-radius: 12px;
  border: 2px solid #e4d5b7;
  box-shadow: 0 4px 10px rgba(200,161,101,0.1);
}

/* Craftsmanship Section */
.craftsmanship {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #fdfbf8;
}

.craftsmanship h2 {
  color: #b9925e;
}

.craftsmanship p {
  max-width: 600px;
  margin: 1rem auto 2rem auto;
  color: #6c6c6c;
  line-height: 1.6;
}

.craftsmanship-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.craftsmanship-gallery img {
  width: 200px;
  border-radius: 10px;
  border: 1px solid #e4d5b7;
}

/* Values Section */
.values {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fffefc;
}

.values h2 {
  color: #b9925e;
  margin-bottom: 1rem;
}

.values ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.values li {
  margin-bottom: 1rem;
  color: #5a534a;
  font-size: 1.1rem;
}

.values strong {
  color: #b9925e;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .craftsmanship-gallery {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    width: 90%;
  }
}

/* ===== COLLECTIONS PAGE ===== */
.collections-page {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fffdfb;
}

.collections-page h1 {
  color: #2c2c2c;
  font-size: 2.2rem;
}

.collections-page .intro-text {
  color: #6c6c6c;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.5rem auto 2rem auto;
}

.collection-card p {
  color: #6c6c6c;
  font-size: 0.95rem;
  padding: 0 1rem;
}

