/* ================= ROOT VARIABLES ================= */
:root {
  --primary-gold: #d4af37;
  --secondary-black: #0a0a0a;
  --accent-red: #b22222;
  --neutral-white: #ffffff;
  --light-gray: #f8f8f8;
}

/* ================= GLOBAL ================= */
body, html {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-gray);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* ================= HERO ================= */

 .hero {
  position: relative;
  height: 70vh;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}
.hero1 {
  position: relative;
  height: 30vh;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.5s ease forwards;
}

.hero h1 {
  color: var(--primary-gold);
  font-size: 2.4rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p.lead {
  color: #fff;
  font-size: 1.1rem;
} 

/* ================= BUTTON ================= */
.btn-custom-light {
  background: linear-gradient(90deg, #b8860b, #ffd700);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-custom-light:hover {
  background: linear-gradient(90deg, #ffd700, #b8860b);
  box-shadow: 0 0 12px gold;
  transform: scale(1.04);
}

/* ================= SECTION HEADINGS ================= */
.container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

h2 {
  color: var(--secondary-black);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f8e473);
  border-radius: 2px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.4s;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .card-img-top {
  transform: scale(1.05);
}

/* ================= TAGS ================= */
.tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 20px;
  color: #fff;
}

.tag-new { background: linear-gradient(90deg, #007bff, #5bc0de); }
.tag-best { background: linear-gradient(90deg, #b22222, ); }
.tag-collection { background: linear-gradient(90deg, #d4af37, #fceabb); color:#111; }

/* ================= CATEGORY SCROLL ================= */
.category-card {
  text-decoration: none;
  display: block;
}

.category-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.category-img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-img-box:hover img {
  transform: scale(1.05);
}

.category-title {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  background: #FFF8F2;
  padding: 8px 12px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.6rem; }
  .category-img { width: 90px; height: 90px; }
}


/* ===== ABOUT DANTALE SECTION ===== */
.about-dantale {
  background: #FFF8F2;
  border: 1px solid #D4AF37;
  border-radius: 20px;
  padding: 45px;
  margin-top: 60px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.about-dantale h2 {
  color: #D81B60;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.about-dantale h4 {
  color: #D4AF37;
  font-weight: 600;
  margin-top: 30px;
}

.about-dantale p,
.about-dantale li {
  color: #2B2B2B;
  line-height: 1.7;
}

.city-list span {
  display: inline-block;
  background: #fff;
  border: 1px solid #D4AF37;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 6px;
  font-weight: 600;
}

.launch-strip {
  background: #FFF8F0;
}

.launch-card {
  display: block;
  padding: 18px 12px;
  border-radius: 16px;
  background: #ffffff;
  text-decoration: none;
  color: #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.launch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.launch-card h6 {
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 4px;
}

.launch-card p {
  font-size: 13px;
  color: #777;
  margin-bottom: 0;
}

/* Badge */
.launch-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 30px;
  color: #fff;
}

/* Color Themes */
.launch-card.new .badge {
  background: linear-gradient(45deg, #ff4d6d, #ff8fa3);
}

.launch-card.trending .badge {
  background: linear-gradient(45deg, #ff9800, #ff5722);
}

.launch-card.gold .badge {
  background: linear-gradient(45deg, #d4af37, #f5c542);
}

.launch-card.diamond .badge {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
}
