/* =====================================================
   STEAPX – ULTRA LUXURY / EDITORIAL / CONSISTENT
===================================================== */

/* -----------------------
   RESET & BASE
------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

img {
  max-width: 100%;
  display: block;
}

/* -----------------------
   ANNOUNCEMENT BAR
------------------------ */
.announcement {
  background: #000;
  color: #fff;
  height: 38px;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  line-height: 38px;
  font-size: 11.5px;
  font-weight: 300;
  padding-left: 100%;
  animation: marquee 14s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* -----------------------
   HEADER & NAV
------------------------ */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 36px;
  background: #eeeeee;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo {
  height: 68px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav li,
nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #111;
  text-decoration: none;
}

nav a:hover {
  opacity: 0.65;
}

.active {
  font-weight: 500;
}

.disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* -----------------------
   GLOBAL TYPOGRAPHY
------------------------ */
h1 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 6px;
}

h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}

p,
li {
  font-size: 13.5px;
  font-weight: 400;
  color: #333;
}

/* -----------------------
   HERO (HOME)
------------------------ */
.hero {
  padding-top: 20px;
  padding-right: 46px;
  padding-bottom: 40px;
  padding-left: 30px;
}

.hero-home {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

/* 🔥 HERO TEXT – MOVED RIGHT */
.hero-text {
  margin-left: 18px;
}

/* HERO LOGO – BIGGER + MOVED LEFT */
.hero-logo {
  height: 190px;
  margin-bottom: 4px;
  margin-left: -26px;
}

.hero-home h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.hero-home p {
  max-width: 420px;
  margin-bottom: 8px;
}

/* -----------------------
   COMING SOON – SMART HIGHLIGHT
------------------------ */
.coming-soon {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #111;
  opacity: 0.85;
  position: relative;
  cursor: default;
}

/* underline */
.coming-soon::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #111;
  opacity: 0.25;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* interactive hover */
.coming-soon:hover::after {
  opacity: 0.7;
  transform: scaleX(0.6);
}

/* HERO IMAGE – FINAL ALIGNED POSITION */
.hero-img {
  width: 42%;
  margin-top: -20px;
}

/* -----------------------
   PURPOSE (HOME)
------------------------ */
.purpose {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 36px;
}

.purpose-text {
  width: 55%;
}

.purpose img {
  width: 45%;
  max-width: 320px;
}

/* -----------------------
   BRAND LINE
------------------------ */
.strength {
  text-align: center;
  padding: 22px 10px;
}

/* -----------------------
   SHOWCASE
------------------------ */
.showcase {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 24px 24px 30px;
}

.showcase img {
  width: 220px;
  transition: transform 0.25s ease;
}

.showcase img:hover {
  transform: translateY(-4px);
}

/* -----------------------
   PAGE WRAPPER (ABOUT / CONTACT)
------------------------ */
.page-wrapper {
  width: 100%;
}

.page-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 24px 50px;
}

/* -----------------------
   ABOUT BLOCKS
------------------------ */
.block {
  margin-bottom: 20px;
}

.block p {
  max-width: 720px;
  margin-bottom: 6px;
}

.list {
  list-style: none;
  margin-top: 6px;
}

.list li {
  margin-bottom: 4px;
}

/* Founder */
.founder {
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.signature {
  margin-top: 10px;
  font-style: italic;
}

/* -----------------------
   FOOTER
------------------------ */
.footer {
  padding: 10px;
  font-size: 11.5px;
  color: #666;
  text-align: center;
}

/* -----------------------
   ANIMATIONS
------------------------ */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.slide-up {
  animation: slideUp 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -----------------------
   MOBILE
------------------------ */
@media (max-width: 900px) {

  .hero-home,
  .purpose,
  .showcase {
    flex-direction: column;
  }

  .hero-text {
    margin-left: 0;
  }

  .hero-logo {
    margin-left: 0;
    height: 150px;
  }

  .hero-img,
  .purpose img,
  .purpose-text {
    width: 100%;
    margin-top: 0;
  }

  .showcase img {
    width: 280px;
  }
}
