/* =========================================
   LAYOUT CONTAINERS
   লেআউট কন্টেইনার
   ========================================= */
.shell {
  max-width: 1440px;
  margin: auto;
  padding: 0 42px;
}

/* =========================================
   HERO SECTION (Top Banner)
   হিরো সেকশন বা হোমপেজের উপরের ব্যানার
   ========================================= */
.hero {
  min-height: 375px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  border-bottom: 1px solid #352d20;
}

/* Hero Title / হিরো সেকশনের টাইটেল */
.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.99;
  margin: 0 0 17px;
  letter-spacing: -2px;
}

/* Hero Title Highlight (Gold) / টাইটেলের গোল্ড কালার টেক্সট */
.hero h1 span {
  color: var(--gold);
}

/* Hero Paragraph Text / হিরো সেকশনের টেক্সট বা সাবটাইটেল */
.hero p {
  color: #c1bdb5;
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 23px;
}

/* Primary Button / প্রাইমারি বাটন স্টাইল */
.primary {
  background: linear-gradient(135deg, #efb544, #bb7920);
  border: 0;
  border-radius: 8px;
  padding: 14px 25px;
  font-weight: 750;
  color: #181008;
}

/* Hero Visual & Mascot Container
   হিরো সেকশনের ছবি বা মাসকট কন্টেইনার */
.hero-visual {
  height: 355px;
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.hero-visual-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-mascot-container {
  position: relative;
  display: inline-block;
}

/* Mascot Image / মাসকটের ছবি */
.hero-mascot-img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Lantern Logo on Mascot / মাসকটের লণ্ঠন লোগো */
.hero-lantern-logo {
  position: absolute;
  top: 56.6%;
  left: 70%;
  width: 12%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

/* Background Glow Effect / ছবির পেছনের গ্লো ইফেক্ট */
.hero-visual:before {
  content: "";
  position: absolute;
  width: 380px;
  height: 280px;
  border-radius: 50%;
  background: #a66f20;
  filter: blur(80px);
  opacity: 0.35;
}

/* General Image Styling in Hero
   হিরো সেকশনের সাধারণ ছবির স্টাইলিং */
.hero-visual img {
  height: 330px;
  max-width: 100%;
  object-fit: cover;
  position: relative;
  border-radius: 28px;
  filter: drop-shadow(0 30px 28px #0009);
}
