/* Alumniyat AI Poem Lab theme overrides
   Keep minimal + rely on existing site.css variables.
*/

:root{
  --primary: #7a1f2b;      /* Alumniyat maroon */
  --accent:  #c79a2b;      /* Alumniyat gold */
  --bg-main: #f7f5f2;
  --bg-card: #ffffff;
  --text-main: #1f2937;
  --text-muted:#6b7280;
  --border: #e5e7eb;
}

html, body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-main);
}

h1,h2,h3,h4,.display-6{
  font-family: Georgia, "Times New Roman", Times, serif;
  letter-spacing: .2px;
}

.navbar{
  background: var(--primary) !important;
}

.navbar .navbar-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 700;
}

.navbar .navbar-brand img{
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar-dark .navbar-nav .nav-link{
  color: rgba(255,255,255,.88) !important;
}

.navbar-dark .navbar-nav .nav-link:hover{
  color: #fff !important;
}

.btn-primary{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #111827 !important;
  font-weight: 700;
}
.btn-primary:hover{
  filter: brightness(.95);
}

.badge.bg-primary{
  background: var(--primary) !important;
}

a{ color: var(--primary); }
a:hover{ color: #5e1620; }

.card{
  border-color: var(--border);
}

.hero-overlay{
  background: linear-gradient(90deg, rgba(122,31,43,.88), rgba(0,0,0,.25));
}

.footer{
  background: #111827;
  color: #e5e7eb;
}
.footer a{ color:#fff; opacity:.9; }
.footer a:hover{ opacity:1; text-decoration: underline; }

/* Home hero action buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}

.hero-actions .btn {
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* Mobile: all hero buttons full width */
@media (max-width: 768px) {
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
  }

  .hero-actions .btn {
    display: flex !important;
    width: 100% !important;
    margin: 0 !important;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 16px;
    line-height: 1.2;
    white-space: normal;
    justify-content: center;
  }
}
