/* 1. Imports and Base Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* 2. Hero Section Container */
.hero-section {
  width: 100%;
  min-height: 500px;
  background: url("../../../img/navimg.jpg") center center no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 0 60px;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 40px;
}

/* RESPONSIVE HERO SECTION */
@media (max-width: 1024px) {
  .hero-section {
    padding: 0 40px;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 30px;
    min-height: 350px;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 0 16px;
    min-height: 280px;
    padding-top: 40px;
  }
}

/* 3. Text Container */
.hero-text {
  max-width: 650px;
  width: 100%;
  color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-right: -100px;
}

@media (max-width: 768px) {
  .hero-text {
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text {
    max-width: 100%;
  }
}

/* 4. Shop Name (Main Heading) */
.shop-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 74px;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .shop-name {
    font-size: 56px;
    letter-spacing: 8px;
  }
}

@media (max-width: 768px) {
  .shop-name {
    font-size: 42px;
    letter-spacing: 6px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .shop-name {
    font-size: 32px;
    letter-spacing: 4px;
    margin-top: 10px;
  }
}

/* 5. Tagline */
.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 40px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .brand-tagline {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .brand-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
}

/* 6. Description & Promo */
.hero-description {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 1px;
  margin-top: -20px;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-description {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 0;
  }
}

.hero-details {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-details {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-details {
    font-size: 13px;
    margin-bottom: 15px;
  }
}

/* 7. Offer Badge */
.hero-offer {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-block;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .hero-offer {
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 20px;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-offer {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 16px;
  }
}

/* ── HERO ANIMATIONS ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text .shop-name {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.1s;
}

.hero-text .brand-tagline {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.35s;
}

.hero-text .hero-description {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.55s;
}

.hero-text .hero-details {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.75s;
}

.hero-text .hero-offer {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
  animation-delay: 0.95s;
}