/* ==== ParaDost Components ==== */

/* Logo */
.logo{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: var(--shadow);
}
.logo img{ width: 100%; height: 100%; display: block; }

/* Hero header */
.hero{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.title h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}
.title p{
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 2.4vw, 18px);
}

/* Top navigation */
.top-nav{
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
  padding-right: 24px;
}
.top-nav a{
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.top-nav a:hover{ opacity: .7; }

/* Disclaimer banner */
.banner-warning{
  background: #7d2155;
  color: #fff;
  padding: 12px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid #381767;
}
.banner-warning a{
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.banner-warning a:hover{ opacity: .85; }

/* Action buttons */
.page-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 8px;
}
.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,.08);
  transition: .2s transform ease, .2s opacity ease, .2s box-shadow ease;
  color: #fff;
  text-decoration: none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 18px rgba(125,33,85,.4); }
.btn.secondary{ background: transparent; border-color: rgba(255,255,255,.18); }

/* Cards */
.card{
  background: linear-gradient(180deg, #241046 0%, #1f0e3c 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 220px;
}
.card h3{ margin: 0 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }

/* Bands */
.band{
  margin-top: 28px;
  border-left: 6px solid var(--accent);
  background: #1a0b32;
  padding: 16px;
  border-radius: 12px;
}

/* Lists & tags */
.list{ margin: 0; padding-left: 18px; color: var(--muted); }
.tag{
  font-size: 12px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14); color: #f7eaff;
  background: linear-gradient(180deg, rgba(125,33,85,.6), rgba(56,23,103,.6));
  display: inline-block; margin-right: 8px;
}

/* WHY DOST section */
.why-dost{
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  line-height: 1.7;
}
.why-dost h2{
  font-size: clamp(32px, 5vw, 52px);
  color: var(--accent);
  margin-bottom: 24px;
}
.why-dost p{
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 18px 0;
  color: #f2e9ff;
}
.why-dost em{
  font-style: normal;
  color: #d18be0;
  font-weight: 600;
}
.why-dost .closing-line{
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 600;
  margin-top: 32px;
  color: #fff;
}

/* Footer */
.site-footer{
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.footer-nav{
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-nav a{
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s ease;
}
.footer-nav a:hover{ opacity: .7; }

/* Responsive tweaks */
@media (max-width: 760px){
  .hero{ flex-wrap: wrap; gap: 12px; }
  .title{ flex: 1 1 100%; min-width: 0; }
  .top-nav{
    order: 3;
    width: 100%;
    padding-right: 0;
    margin-left: 0;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }
  .top-nav a{ font-size: 15px; padding: 6px 0; }
}

