* { box-sizing: border-box; font-family: 'Poppins', sans-serif; }

body {
  margin: 0;
  padding-top: 70px;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,.08);
  z-index: 1000;
}
.header-inner {
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 55px; }
.menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin-top: auto !important;
}
.menu li {
  cursor: pointer;
  position: relative;
}
.menu li::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7a2e2e;
  transition: .4s;
}
.menu li:hover::after { width: 100%; }

/* HERO */
.hero {
  height: calc(100vh - 70px);
  position: relative;
}
.hero-bg {
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* SECTIONS */
.section { padding: 100px 0; }
.section.light { background: #f6f6f6; }
.section.grey { background: #ededed; }
.section.dark { background: #111; color: #fff; }

/* HEADING */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  opacity: 0;
}
.section-title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  overflow: hidden;
}
.split-text span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
}
.lux-divider {
  margin-top: 16px;
}
.lux-line {
  width: 90px;
  height: 1px;
  background: #c96;
  margin: 6px auto;
  transform: scaleX(0);
}

/* CAROUSELS */
.section-carousel .carousel-img {
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
}
.section-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FIX SINGLE LINE */
.carousel-item {
  display: block !important;
}
.carousel-item .row {
  flex-wrap: wrap !important;
}

/* RANGE */
.range-card {
  position: relative;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
}
.range-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.range-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
  transform: translateY(40%);
  transition: .5s;
}
.range-card:hover .range-overlay {
  transform: translateY(0);
}

/* FOOTER */
.footer {
  background: #000;
  color: #ccc;
  padding: 40px 0;
  text-align: center;
}

/* GSAP */
.gsap-section {
  opacity: 0;
  transform: translateY(60px);
}



/* HEADER FIX */
.header-inner {
  height: 70px;
  display: flex;
  align-items: center;        /* ✅ vertical center FIX */
  justify-content: space-between;
  padding: 0 40px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #ccc;
  padding: 70px 0 30px;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 60px;
}

.footer-desc {
  max-width: 600px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  cursor: pointer;
  font-size: 14px;
}

.footer-social i {
  font-size: 18px;
  margin: 0 10px;
  cursor: pointer;
  transition: .3s;
}

.footer-social i:hover {
  color: #c96;
  transform: translateY(-4px);
}

.footer-bottom {
  margin-top: 25px;
  font-size: 13px;
  opacity: .6;
}
