/* -------- Global Styles -------- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #333;
}

.main-header h1,
h2 {
  font-family: 'Playfair Display', serif;
}

/* -------- Header -------- */
.main-header {
  background: linear-gradient(135deg, #1b045a, #2a0a7a);
  padding: 28px 20px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.main-header img {
  height: 64px;
  /* margin-bottom: 10px; */
}

.main-header h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 500;
}

.main-header .tagline {
  margin-top: 6px;
  font-size: 14px;
  color: #e0d9ff;
  letter-spacing: 0.5px;
}

/* -------- Sections -------- */
section {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  color: #03004f;
  border-bottom: 2px solid #eee;
  padding-bottom: 8px;
}

/* -------- About Us -------- */
.about-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.about-image {
  width: 350px;
  border-radius: 8px;
}

.about-text {
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;

}

/* -------- Lists -------- */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* -------- Footer -------- */
footer {
  background: #f1f1f1;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #666;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    width: 100%;
    max-width: 360px;
  }
}

/* -------- Thumbnail Products -------- */
.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.thumb-item {
  text-align: center;
  cursor: pointer;
}

.thumb-item img {
  width: 100%;
  max-width: 160px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.thumb-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.thumb-item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #2a0a7a;
}

.hero-slider {
  width: 100%;
  padding: 40px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 1200px;
  height: 480px;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* LEFT TEXT AREA */
.hero-content {
  flex: 1;
  background: linear-gradient(135deg, #3a1d12, #6b2f1a);
  color: #f5e6d8;
  display: flex;
  align-items: center;
  padding: 60px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
}

.hero-content h1 span {
  font-weight: 700;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1.3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 768px) {
  .hero-card {
    flex-direction: column;
    height: auto;
  }

  .hero-content {
    padding: 40px 30px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-image {
    height: 300px;
  }
}