/* ============================================================
   SCENIC ALBANIA – Shared Stylesheet
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green-deep:    #1E3A0F;
  --green-mid:     #2D5A1B;
  --green-light:   #4A7C25;
  --green-pale:    #8FB560;
  --earth-tan:     #C9A97A;
  --earth-stone:   #8B7355;
  --earth-cream:   #F5F0E0;
  --earth-dark:    #2A2018;
  --albanian-red:  #E41E20;
  --text-dark:     #1C1C1C;
  --text-mid:      #555;
  --text-light:    #F5F0E0;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.10);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.22);
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--earth-cream);
  line-height: 1.7;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(20, 40, 10, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--albanian-red);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon { font-size: 26px; color: var(--albanian-red); }
.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--earth-cream);
  letter-spacing: 2px;
}
.nav-brand span { color: var(--albanian-red); }
.nav-links {
  display: flex; gap: 1.6rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--earth-cream);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--albanian-red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--earth-tan); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--earth-tan); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 55vh; min-height: 420px;
  display: flex; align-items: flex-end;
  padding: 0 6% 60px;
  overflow: hidden;
  margin-top: 72px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,25,5,0.80) 0%,
    rgba(15,35,8,0.35) 60%,
    rgba(10,20,5,0.20) 100%
  );
}
.page-hero-content { position: relative; z-index: 2; max-width: 750px; }
.page-hero-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--earth-tan);
  border: 1px solid rgba(201,169,122,0.4);
  padding: 4px 14px; border-radius: 2px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(245,240,224,0.88);
  font-weight: 300;
  max-width: 560px;
}

/* ===== FLAG STRIPE ===== */
.flag-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--albanian-red) 50%, var(--green-deep) 100%);
}

/* ===== SECTION SHARED ===== */
.section { padding: 80px 6%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--albanian-red);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 0;
}
.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--albanian-red), var(--green-light));
  margin: 16px 0 28px;
  border-radius: 2px;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { overflow: hidden; }
.card-img img { transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--green-deep); color: #fff;
  padding: 3px 10px; border-radius: 2px;
  margin-bottom: 10px;
}
.card-tag.red { background: var(--albanian-red); }
.card-tag.tan { background: var(--earth-stone); }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.card-body p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ===== TRAIL META BADGES ===== */
.trail-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 12px 0;
}
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.badge-easy    { background: #d8f0d8; color: #1a5c1a; }
.badge-moderate{ background: #fff3cd; color: #7a5500; }
.badge-hard    { background: #fde0d8; color: #8b2000; }
.badge-info    { background: #e8f0fe; color: #1a3a7a; }
.badge-season  { background: rgba(143,181,96,0.18); color: var(--green-mid); }
.badge-warning { background: #fef3cd; color: #7a5500; border: 1px solid #f0c040; }
.badge i { font-size: 0.7rem; }

/* ===== DARK SECTION ===== */
.section-dark {
  background: var(--green-deep);
  color: var(--earth-cream);
}
.section-dark .section-title { color: var(--earth-cream); }
.section-dark .section-label { color: var(--green-pale); }
.section-dark .section-desc { color: rgba(245,240,224,0.82); }
.section-dark .divider { background: linear-gradient(90deg, var(--green-pale), var(--earth-tan)); }

.dark-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(4px);
  transition: background var(--transition), transform var(--transition);
}
.dark-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.dark-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--earth-tan);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.dark-card p { font-size: 0.92rem; color: rgba(245,240,224,0.82); line-height: 1.75; }

/* ===== INFO BOX ===== */
.info-box {
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 16px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.info-box.warning { background: #fff8e1; border-left: 4px solid #f0b429; }
.info-box.tip     { background: #f0faf0; border-left: 4px solid var(--green-light); }
.info-box.alert   { background: #fff0f0; border-left: 4px solid var(--albanian-red); }
.info-box.neutral { background: rgba(201,169,122,0.12); border-left: 4px solid var(--earth-tan); }
.info-box-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.info-box.warning .info-box-icon { color: #c88a00; }
.info-box.tip     .info-box-icon { color: var(--green-light); }
.info-box.alert   .info-box-icon { color: var(--albanian-red); }
.info-box.neutral .info-box-icon { color: var(--earth-stone); }
.info-box-text { font-size: 0.92rem; line-height: 1.7; color: var(--text-dark); }
.info-box-text strong { display: block; margin-bottom: 3px; }

/* ===== CHECKLIST ===== */
.checklist { margin: 14px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.checklist li:last-child { border-bottom: none; }
.checklist li i { color: var(--green-light); margin-top: 3px; flex-shrink: 0; }
.checklist-dark li { color: rgba(245,240,224,0.85); border-color: rgba(255,255,255,0.08); }
.checklist-dark li i { color: var(--green-pale); }

/* ===== CTA BUTTON ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-red    { background: var(--albanian-red); color: #fff; }
.btn-red:hover { background: #c01010; }
.btn-green  { background: var(--green-light); color: #fff; }
.btn-green:hover { background: var(--green-mid); }
.btn-outline {
  background: transparent; color: var(--earth-cream);
  border: 2px solid rgba(245,240,224,0.4);
}
.btn-outline:hover { border-color: var(--earth-tan); color: var(--earth-tan); }

/* ===== FOOTER ===== */
footer {
  background: #0d1a06;
  color: rgba(245,240,224,0.55);
  text-align: center;
  padding: 54px 5% 30px;
}
.footer-eagle { font-size: 2.8rem; margin-bottom: 10px; opacity: 0.4; }
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--earth-cream);
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.footer-brand span { color: var(--albanian-red); }
.footer-tagline { font-size: 0.85rem; margin-bottom: 28px; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 22px; margin-bottom: 26px;
}
.footer-links a {
  font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(245,240,224,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--earth-tan); }
.footer-copy {
  font-size: 0.76rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  color: rgba(245,240,224,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .card-grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 5%; }
  .page-hero { min-height: 360px; }
}
@media (max-width: 600px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}
