body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.hero h1,
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* TOP BAR */
.top-bar {
  background: #8b1d1d;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

/* LOGO */
.logo {
  height: 40px;
}

/* HERO */
.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 700px;
  margin-bottom: 20px;
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

/* COLLECTION */
.collection-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 15px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

.why-list li {
  font-size: 18px;
  margin-bottom: 14px;
}

.why-list li span {
  color: #8b1d1d;
  font-weight: bold;
  margin-right: 10px;
}


footer {
  background: linear-gradient(135deg, #7a1616, #a72828);
  color: #fff;
  padding: 50px 0 30px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 140px;
  margin-bottom: 14px;
}

.footer-tagline {
  max-width: 320px;
  line-height: 1.6;
  margin: 0 auto;
}


footer h6 {
  font-weight: 600;
  margin-bottom: 16px;
}

footer p,
footer a {
  margin-bottom: 8px;
  color: #fff;
  text-decoration: none;
}

