/* ============================================================
   index.css — Albania Unlock Homepage
   Only loads on front-page. Prefix: hp-
   Color palette: crimson + cream + gold (Albanian flag)
   ============================================================ */


/* ── Homepage color tokens ─────────────────────────────────── */
:root {
  --hp-dark:       #1A0808;
  --hp-dark2:      #2D0F0F;
  --hp-crimson:    #6B1A1A;
  --hp-crimson-mid:#C41E3A;
  --hp-gold:       #C8960C;
  --hp-gold-light: #E0B030;
  --hp-cream:      #F5F0EC;
  --hp-cream2:     #EDE7E1;
  --hp-text:       #1A1210;
  --hp-muted:      #6B5A52;
  --hp-border:     #E2D8D0;
  --hp-white:      #FFFFFF;
  --hp-green:      #2E7D32;
}

body { background-color: var(--hp-cream); }

/* ── Header: transparent → crimson when scrolled ──────────── */
header#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent !important;
  box-shadow: none !important;
  transition: background 0.35s, box-shadow 0.35s;
  z-index: 200;
}
header#site-header.scrolled {
  background: var(--crimson) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35) !important;
}
.header-inner { padding: 22px 48px; }
header#site-header.scrolled .header-inner { padding: 14px 48px; }


/* ════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      to right,
      rgba(26,8,8,0.88) 0%,
      rgba(26,8,8,0.60) 50%,
      rgba(26,8,8,0.20) 100%
    ),
    var(--crimson) center / cover no-repeat;
  background-attachment: fixed;
}

.hp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Hero Left ──────────────────────────────────────────────── */
.hp-hero-content {
  background: rgba(16,4,4,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,150,12,0.16);
  border: 1px solid rgba(200,150,12,0.45);
  color: var(--hp-gold-light);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hp-hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
}

.hp-hero-content h1 em {
  font-style: italic;
  color: var(--hp-gold-light);
}

.hp-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hp-hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.hp-hero-stat { display: flex; flex-direction: column; }

.hp-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--hp-gold-light);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hp-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hp-btn-primary {
  background: var(--hp-crimson-mid);
  color: #fff;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hp-btn-primary:hover { background: #A01530; transform: translateY(-1px); }

.hp-btn-ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hp-btn-ghost:hover { background: rgba(255,255,255,0.13); }

/* ── Hero Right: email capture ──────────────────────────────── */
.hp-hero-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hp-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.hp-box-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
  line-height: 1.55;
}

.hp-email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-email-form input[type="email"] {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 11px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.hp-email-form input[type="email"]::placeholder { color: rgba(255,255,255,0.28); }
.hp-email-form input[type="email"]:focus { border-color: rgba(200,150,12,0.5); }

.hp-email-form button {
  background: var(--hp-gold);
  color: var(--hp-dark);
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.hp-email-form button:hover { background: var(--hp-gold-light); }
.hp-email-form button:disabled { opacity: 0.6; cursor: default; }

.hp-box-features {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
}

.hp-box-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.50);
}

.hp-box-features li::before {
  content: '✓';
  color: #5cb85c;
  font-weight: 700;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════
   2. REGIONS
   ════════════════════════════════════════════════════════════ */
.hp-regions {
  background: var(--hp-cream2);
  padding: 72px 0;
}

.hp-regions-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hp-regions-inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--hp-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hp-regions-sub {
  font-size: 15px;
  color: var(--hp-muted);
  margin-bottom: 36px;
}

.hp-regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hp-region-card {
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  aspect-ratio: 3 / 4;
  background: var(--hp-crimson);
}
.hp-region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.hp-region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s;
}
.hp-region-card:hover img { transform: scale(1.04); }

.hp-region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,8,8,0.88) 0%,
    rgba(26,8,8,0.4) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
}

.hp-region-tag {
  display: inline-block;
  background: rgba(200,150,12,0.22);
  border: 1px solid rgba(200,150,12,0.5);
  color: var(--hp-gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
  align-self: flex-start;
}

.hp-region-overlay h3 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hp-region-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}


/* ════════════════════════════════════════════════════════════
   3. FEATURED ARTICLES
   ════════════════════════════════════════════════════════════ */
.hp-featured {
  background: var(--hp-cream);
  padding: 72px 0;
}

.hp-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hp-featured-inner > h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--hp-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hp-featured-sub {
  font-size: 15px;
  color: var(--hp-muted);
  margin-bottom: 36px;
}

.hp-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.hp-article-card {
  background: var(--hp-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hp-border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hp-article-card:hover {
  box-shadow: 0 8px 28px rgba(107,26,26,0.12);
  transform: translateY(-2px);
}

.hp-article-img {
  height: 200px;
  overflow: hidden;
  background: var(--hp-crimson);
  flex-shrink: 0;
}

.hp-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s;
}
.hp-article-card:hover .hp-article-img img { transform: scale(1.04); }

.hp-article-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-article-cats span {
  display: inline-block;
  background: rgba(107,26,26,0.10);
  color: var(--hp-crimson);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.hp-article-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hp-text);
  margin-bottom: 10px;
  flex: 1;
}

.hp-article-body p {
  font-size: 13px;
  color: var(--hp-muted);
  line-height: 1.6;
}

.hp-featured-cta {
  text-align: center;
  margin-top: 8px;
}

.hp-btn-outline {
  display: inline-block;
  border: 2px solid var(--hp-crimson);
  color: var(--hp-crimson);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.18s;
}
.hp-btn-outline:hover {
  background: var(--hp-crimson);
  color: #fff;
}


/* ════════════════════════════════════════════════════════════
   4. ABOUT MARCUS
   ════════════════════════════════════════════════════════════ */
.hp-about {
  background: var(--hp-crimson);
  padding: 80px 0;
  overflow: hidden;
}

.hp-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.hp-about-photo {
  position: relative;
  flex-shrink: 0;
}

.hp-about-photo::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
  background: rgba(200,150,12,0.25);
  border-radius: 16px;
}

.hp-about-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  display: block;
}

.hp-about-text { color: rgba(255,255,255,0.9); }

.hp-about-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hp-gold-light);
  margin-bottom: 16px;
}

.hp-about-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hp-about-text p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  margin-bottom: 16px;
  max-width: 560px;
}

.hp-about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--hp-gold-light);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.15s;
}
.hp-about-link:hover { gap: 10px; }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr 320px; gap: 40px; }
  .hp-articles-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-articles-grid .hp-article-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hp-regions-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-about-photo { max-width: 320px; margin: 0 auto; }
  .hp-about-photo img { height: 360px; }
  .hp-about-photo::before { display: none; }
}

@media (max-width: 768px) {
  .hp-hero-inner {
    grid-template-columns: 1fr;
    padding: 110px 24px 60px;
    gap: 36px;
  }
  .hp-hero-content h1 { font-size: 32px; }
  .hp-hero-stats { gap: 20px; }
  .hp-hero-sub { font-size: 15px; }
  .hp-articles-grid { grid-template-columns: 1fr; }
  .hp-articles-grid .hp-article-card:last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .header-inner { padding: 16px 20px !important; }
  .hp-hero-content h1 { font-size: 28px; }
  .hp-hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hp-hero-stats { flex-wrap: wrap; gap: 16px; }
  .hp-hero-actions { flex-direction: column; }
  .hp-btn-primary, .hp-btn-ghost { text-align: center; justify-content: center; }
  .hp-regions-grid { grid-template-columns: 1fr; gap: 12px; }
  .hp-region-card { aspect-ratio: 16 / 9; }
}
