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

body {
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

/* UTIL */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.btn-primary {
  background: red;
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

/* HERO */
.hero {
  position: relative;
  background: url("Images/Banner Image.png") center/cover no-repeat;
  border-radius: 16px;
  margin: 2rem;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  display: block;
  margin-top: 0.5rem;
}

/* OFFER */
.offer {
  text-align: center;
}

.offer-big {
  font-size: 4rem;
  color: red;
}

.offer img {
  max-width: 100%;
  margin-top: 2rem;
}

/* PARTY */
.party {
  background: url("Images/Vectorrr.png") center/cover no-repeat;
  color: white;
  margin: 4rem 0;
}

.party-content {
  padding: 4rem 1rem;
  max-width: 600px;
}

/* EVENT */
.event {
  text-align: center;
  background: rgba(255, 0, 0, 0.05);
  border-radius: 16px;
}

.event span {
  color: red;
  font-weight: 600;
}

/* NEW BEST OFFER */
.offer-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.offer-image img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 10px solid red;
  padding: 10px;
}

.badge {
  color: red;
  font-weight: 600;
}

.year {
  color: red;
  font-size: 2.5rem;
}

/* HOLIDAYS SALE */
.holiday-sale {
  margin: 6rem 0;
}

/* HEADER */
.holiday-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.sale-title {
  font-size: 3.5rem;
  font-weight: 900;
}

.sale-title span {
  color: red;
}

.sale-desc {
  color: rgba(0, 0, 0, 0.6);
}

/* VISUAL WRAPPER */
.holiday-visual {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 6rem; /* space for red bar */
}

/* GIFT BOX */
.gift-box img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.gift-box {
  position: relative;
  z-index: 2;
}

/* WOMAN */
.woman-wrapper {
  position: relative;
  z-index: 3; /* higher than red bar */
  transform: translateY(-56.5px); /* lift above red ground */
}

.woman-img {
  width: 420px;
}

/* DISCOUNT BADGE */
.discount-badge {
  position: absolute;
  top: 30%;
  left: -90px;
  width: 180px;
}

/* RED BAR */
.red-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: red;
  z-index: 1;
}

/* PORTFOLIO */
.portfolio {
  margin: 6rem auto;
}

.portfolio-tag {
  color: red;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.portfolio-desc {
  max-width: 600px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 3rem;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 🔑 FIX */
  gap: 1.5rem;
}

/* IMAGE CARD */
.portfolio-grid img {
  width: 100%;
  border-radius: 16px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER POLISH */
.portfolio-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* NEWSLETTER */
.newsletter {
  background: rgba(255, 0, 0, 0.05);
  border-radius: 16px;
  text-align: center;
}

.subscribe-form {
  display: flex;
  max-width: 400px;
  margin: 2rem auto;
}

.subscribe-form input {
  flex: 1;
  padding: 12px;
  border-radius: 50px 0 0 50px;
  border: none;
}

.subscribe-form button {
  background: red;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 0 50px 50px 0;
}

/* FOOTER */
.footer {
  background: #070211;
  color: #fff;
  padding: 4rem 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.footer-contact img {
  width: 18px;
}

.footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 2.5rem 0;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social img {
  width: 40px;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.unsubscribe {
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    min-height: 420px;
    margin: 1rem;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .offer-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .discount {
    position: static;
    margin-top: 1rem;
  }
  .holiday-visual {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .discount-badge {
    position: static;
    margin-top: 1rem;
  }

  .woman-img {
    width: 100%;
    max-width: 320px;
  }

  .sale-title {
    font-size: 2.4rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

/* TABLET / MID-WIDTH FIX */
@media (max-width: 1200px) {
    .holiday-visual {
      align-items: center; /* stop bottom alignment */
      padding-bottom: 5rem;
    }
  
    .woman-wrapper {
      transform: translateY(-30px); /* less lift */
    }
  
    .discount-badge {
      right: -40px; /* tighter attachment */
      width: 120px;
    }
  }
  