/* ==========================================
   BROSUR.CSS - Share Layout (Landscape 1280×720)
   ========================================== */

.brosur-container {
    position: fixed;
    top: -9999px;
    left: -9999px;
    width: 1280px;
    height: 720px;
    padding: 50px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    
    /* BACKGROUND dengan texture */
    background-color: #030208;
    background-image: 
        radial-gradient(rgba(168, 85, 247, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 50% 30%, #1e113c 0%, #0f172a 50%, #030208 100%);
    background-size: 6px 6px, 100% 100%;
    
    display: grid;
    grid-template-columns: 30% 60%;
    grid-template-rows: auto 1fr auto;
    gap: 20px;
}

/* ===== HEADER ===== */
.brosur-header {
    grid-column: 1 / 3;
     width: 80%;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 20px 0;
     border-bottom: 1px solid var(--border-line);
     position: relative;
}

.brosur-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
  line-height: 1.1;
  text-align: flex-end;
}

/* Aksen Neon di Header */
.brosur-header::before, .brosur-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 20px;
  height: 3px;
  background: var(--color-primary);
  box-shadow: 0 0 10px #a855f7;
}
.brosur-header::before { left: 0; }
.brosur-header::after { right: 0; }

/* ===== BRAND AREA ===== */
.brosur-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

/* LOGO LEBIH BESAR */
.brosur-logo {
    width: 160px;
    height: auto;
    filter: box-shadow(0 0 12px #a855f7);
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.brand-main {
    font-size: 0.85rem;
    color: #a855f7;
}

.brand-sub {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* ===== PROFIL AREA ===== */
.brosur-profil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-content: flex-start;
}

/* Kartu profil */
.brosur-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
}

.brosur-card h2 {
    color: #a855f7;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 10px;
    border-left: 3px solid #a855f7;
    padding-left: 10px;
}

.brosur-card-body {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #cbd5e1;
}

/* Bullet points */
.brosur-card-body ul {
    margin: 5px 0;
    padding-left: 18px;
    list-style: none;
}

.brosur-card-body li {
    margin-bottom: 3px;
    position: relative;
    padding-left: 12px;
}

.brosur-card-body li::before {
    content: "•";
    color: #a855f7;
    position: absolute;
    left: 0;
}

.brosur-card-body p {
    margin: 5px 0;
}

/* Kartu kosong (transparan) */
.brosur-card-empty {
    background: transparent;
    border: none;
    backdrop-filter: none;
}

/* ===== FOOTER ===== */
.brosur-footer {
    grid-column: 1 / 3;
      width: 75%;
      margin: 0 auto;
      white-space: normal;
      align-items: center;     
      text-align: center;
      color: #94a3b8;
      font-size: 0.9rem; 
      line-height: 1.4;
      overflow: visible;        
      position: relative;
}

.brosur-link {
    font-size: 0.9rem;
    color: #a855f7;
    text-decoration: none;
    font-weight: bold;
    display: block;
}
