
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Special Elite", cursive;
  background: #d4a574;
  color: #2d1810;
  overflow-x: hidden;
  line-height: 1.6;
}
.desert-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #87ceeb 0%, #f4e4c1 50%, #d4a574 100%);
}

.tumbleweed-wrapper {
  position: absolute;
  left: -150px;
  width: fit-content;
  will-change: left;
  animation: floatAcross 25s linear infinite;
}

/* --- Elemen Animasi PUTAR --- */
.tumbleweed {
  width: 55px;
  height: 55px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
  /* Animasi Putar saja */
  animation: slowRotate 10s linear infinite;
}

/* Keyframes Terpisah */
@keyframes floatAcross {
  0% { left: -150px; }
  100% { left: 115%; }
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
  .tumbleweed {
    width: 45px; 
    height: 45px;
    opacity: 0.5;
  }
} /* ← tutup @media */

/* --- Tumbleweed Characters --- */
.md      { background-image: url('FOTO LOMBA/monk MD.png'); width: 110px; height: 110px; }
.ml      { background-image: url('FOTO LOMBA/monk ML.png'); width: 100px; height: 100px; }
.band    { background-image: url('FOTO LOMBA/monk band.png'); width: 110px; height: 110px; }
.basket  { background-image: url('FOTO LOMBA/monk basket.png'); width: 150px; height: 150px; }
.cc      { background-image: url('FOTO LOMBA/monk cerdas cermat.png'); width: 100px; height: 100px; }
.futsal  { background-image: url('FOTO LOMBA/monk futsal.png'); width: 100px; height: 100px; }
.solvoc  { background-image: url('FOTO LOMBA/monk solo vocal.png'); width: 130px; height: 130px; }
.stortel { background-image: url('FOTO LOMBA/monk story telling.png'); width: 110px; height: 110px; }

/* --- Vertical Positions --- */
.v-md      { top: 5%;  animation-delay: -5s;  animation-duration: 45s; }
.v-ml      { top: 30%; animation-delay: -25s; animation-duration: 35s; }
.v-band    { top: 15%; animation-delay: -45s;  animation-duration: 55s; }
.v-basket  { top: 75%; animation-delay: -15s; animation-duration: 40s; }
.v-cc      { top: 45%; animation-delay: -60s; animation-duration: 60s; }
.v-futsal  { top: 60%; animation-delay: -10s; animation-duration: 38s; }
.v-solvoc  { top: 88%; animation-delay: -35s; animation-duration: 50s; }
.v-stortel { top: 20%; animation-delay: -55s; animation-duration: 42s; }

@keyframes floatAcross {
  0% {
    left: -10%;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
  100% {
    left: 110%;
    transform: translateY(0) rotate(360deg);
  }
}

/* --- Header & Nav --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(180deg, #5d4e37 0%, #3d2f1f 100%);
  border-bottom: 4px solid #8b6f47;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.logo {
  font-family: "Rye", cursive;
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: #f4e4c1;
  text-shadow: 3px 3px 0 #2d1810;
  transition: transform 0.3s ease;
}

.judul {
  color: #f4e4c1;
  margin-left: 0.5rem;
}

.imagelogo {
  border-radius: 50%;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #f4e4c1;
  text-decoration: none;
  font-family: "Special Elite", cursive;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

nav a:hover {
  color: #d4a574;
}

/* --- Dropdown --- */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: none;
  border: none;
  color: #f4e4c1;
  font-family: "Special Elite", cursive;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.2s;
}

.dropbtn:hover {
  color: #d4a574;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #3d2f1f;
  min-width: 200px;
  border: 3px solid #8b6f47;
  top: 100%;
  left: 0;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 0.6rem 1rem;
  color: #f4e4c1;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background: #5d4e37;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: #f4e4c1;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 5% 60px;
  text-align: center;
}

.wooden-sign {
  background: #5d4e37;
  border: 4px solid #2d1810;
  padding: 0.8rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.announcement {
  color: #f4e4c1;
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  letter-spacing: 2px;
}

.hero-rope-top,
.hero-rope-bottom {
  width: 80%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #8b6f47 0px,
    #8b6f47 10px,
    #5d4e37 10px,
    #5d4e37 20px
  );
  border-radius: 4px;
  margin: 1rem 0;
}

.countdown-box {
  background: #2d1810;
  border: 4px solid #8b6f47;
  padding: 1rem 2rem;
  margin: 1rem 0;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
  text-align: center;
}

.countdown-label {
  color: #d4a574;
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.countdown-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-num {
  font-family: "Rye", cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #f4e4c1;
  line-height: 1;
}

.countdown-sep {
  font-family: "Rye", cursive;
  font-size: 2rem;
  color: #8b6f47;
  margin-bottom: 1rem;
}

.countdown-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #8b6f47;
  margin-top: 0.2rem;
}

.western-title {
  font-family: "Rye", cursive;
  font-size: clamp(3rem, 15vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #2d1810;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle-banner {
  background: #2d1810;
  padding: 0.5rem 2rem;
  margin: 1rem 0;
}

.subtitle-banner h2 {
  color: #f4e4c1;
  font-size: clamp(1rem, 3vw, 1.5rem);
  letter-spacing: 4px;
}

.hero-description {
  color: #2d1810;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin: 0.3rem 0;
}

/* --- Sections --- */
.wood-section {
  padding: 5rem 5%;
  background: rgba(139, 111, 71, 0.15);
}

.saloon-section {
  padding: 5rem 5%;
  background: rgba(93, 78, 55, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Rye", cursive;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #2d1810;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  margin: 1rem 0;
}

.rope-divider-top,
.rope-divider-bottom {
  width: 60%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #8b6f47 0px,
    #8b6f47 10px,
    #5d4e37 10px,
    #5d4e37 20px
  );
  border-radius: 3px;
  margin: 0 auto;
}

/* --- Premium Section Header --- */
.section-header-premium {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  background: linear-gradient(145deg, #3d2f1f 0%, #2d1810 50%, #1a0f09 100%);
  border: 4px solid #8b6f47;
  border-radius: 6px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(212, 165, 116, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Corner nails */
.section-header-premium::before,
.section-header-premium::after {
  content: '⊕';
  position: absolute;
  font-size: 0.7rem;
  color: #8b6f47;
  opacity: 0.6;
}
.section-header-premium::before {
  top: 10px;
  left: 14px;
}
.section-header-premium::after {
  top: 10px;
  right: 14px;
}

/* Star ornament row */
.shp-ornament-top,
.shp-ornament-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.shp-ornament-top {
  margin-bottom: 1rem;
}

.shp-ornament-bottom {
  margin-top: 0.8rem;
}

.shp-star {
  color: #d4a574;
  font-size: 0.7rem;
  text-shadow: 0 0 6px rgba(212, 165, 116, 0.4);
  animation: starTwinkle 2.5s ease-in-out infinite;
}

.shp-star:nth-child(1) { animation-delay: 0s; }
.shp-star:nth-child(2) { animation-delay: 0.3s; }
.shp-star:nth-child(3) { animation-delay: 0.6s; }
.shp-star:nth-child(5) { animation-delay: 0.4s; }
.shp-star:nth-child(6) { animation-delay: 0.7s; }
.shp-star:nth-child(7) { animation-delay: 1s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.shp-line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b6f47, #d4a574, #8b6f47, transparent);
  border-radius: 1px;
}

.shp-diamond {
  color: #d4a574;
  font-size: 0.6rem;
  text-shadow: 0 0 8px rgba(212, 165, 116, 0.5);
}

/* Central badge icon */
.shp-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.shp-badge-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Title */
.shp-title {
  font-family: 'Rye', cursive;
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: transparent;
  background: linear-gradient(180deg, #f4e4c1 0%, #d4a574 50%, #8b6f47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  letter-spacing: 4px;
  margin: 0.3rem 0;
  position: relative;
}

/* Subtitle */
.shp-subtitle {
  font-family: 'Special Elite', cursive;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: #a08060;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Hover shimmer effect */
.section-header-premium:hover {
  border-color: #d4a574;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(212, 165, 116, 0.1),
    inset 0 1px 0 rgba(212, 165, 116, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.section-header-premium:hover .shp-badge-icon {
  animation: badgeFloat 1.5s ease-in-out infinite;
}

.wanted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.wanted-poster {
  background: #f4e4c1;
  border: 5px solid #2d1810;
  padding: 2rem;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(45, 24, 16, 0.3);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
}

.wanted-poster::before {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  z-index: 2;
}

.wanted-poster:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 12px 12px 0 rgba(45, 24, 16, 0.4);
}

/* --- Poster Cover Image dengan Hover --- */
.poster-cover {
  width: 100%;
  margin: 0 0 1rem 0;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.5s ease;
  z-index: 1;
}

/* Overlay default */
.poster-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 24, 16, 0.35);
  transition: background 0.4s ease;
}

/* Hover: gambar zoom in, overlay lebih terang */
.wanted-poster:hover .poster-cover {
  transform: scale(1.08);
}

.wanted-poster:hover .poster-cover::after {
  background: rgba(45, 24, 16, 0.1);
}

/* Poster tanpa gambar — tampilkan icon lebih besar */
.poster-cover-placeholder {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.poster-header {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #5d4e37;
  margin-bottom: 0.5rem;
}

.poster-icon {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.poster-title {
  font-family: "Rye", cursive;
  font-size: 1.4rem;
  color: #2d1810;
  margin: 0.5rem 0;
}

.poster-line { 
  width: 80%;
  height: 3px;
  background: #2d1810;
  margin: 0.8rem auto;
}

.poster-description {
  font-size: 0.9rem;
  color: #3d2f1f;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.poster-badge {
  background: #2d1810;
  color: #f4e4c1;
  border: none;
  padding: 0.7rem 2rem;
  font-family: "Special Elite", cursive;
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.poster-badge:hover {
  background: #5d4e37;
  transform: scale(1.05);
}

/* --- Trail Timeline --- */
.trail-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

/* Central vertical line */
.trail-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(139, 111, 71, 0.25);
  transform: translateX(-50%);
  border-radius: 2px;
  overflow: hidden;
}

.trail-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #d4a574, #8b6f47, #f4e4c1, #d4a574);
  background-size: 100% 300%;
  border-radius: 2px;
  transition: height 0.3s ease-out;
  animation: trailShimmer 3s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.5);
}

@keyframes trailShimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
}

/* Each event row */
.trail-event {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.trail-event.trail-visible {
  opacity: 1;
  transform: translateX(0) !important;
}

.trail-left {
  flex-direction: row;
  transform: translateX(-60px);
}

.trail-right {
  flex-direction: row;
  transform: translateX(60px);
}

/* Card */
.trail-card {
  position: relative;
  width: 42%;
  min-width: 240px;
}

.trail-card-glow {
  position: absolute;
  inset: -3px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d4a574, #8b6f47, #f4e4c1, #d4a574);
  background-size: 300% 300%;
  animation: glowRotate 4s ease-in-out infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trail-card:hover .trail-card-glow {
  opacity: 1;
}

@keyframes glowRotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.trail-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #3d2f1f 0%, #2d1810 60%, #1a0f09 100%);
  border: 3px solid #8b6f47;
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(212, 165, 116, 0.15);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  overflow: hidden;
}

.trail-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 228, 193, 0.06), transparent);
  transition: left 0.6s ease;
}

.trail-card:hover .trail-card-inner::before {
  left: 120%;
}

.trail-card:hover .trail-card-inner {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 165, 116, 0.15),
    inset 0 1px 0 rgba(212, 165, 116, 0.25);
  border-color: #d4a574;
}

/* Badge (emoji icon) */
.trail-badge {
  font-size: 2.5rem;
  margin-bottom: 0.6rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition: transform 0.4s ease;
}

.trail-card:hover .trail-badge {
  transform: scale(1.2) rotate(-8deg);
}

/* Card header */
.trail-card-header {
  margin-bottom: 0.6rem;
}

.trail-step {
  display: inline-block;
  font-family: 'Special Elite', cursive;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: #d4a574;
  background: rgba(212, 165, 116, 0.12);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  margin-bottom: 0.4rem;
}

.trail-date {
  font-family: 'Rye', cursive;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: #f4e4c1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  margin-top: 0.3rem;
}

/* Divider line */
.trail-card-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b6f47, #d4a574, #8b6f47, transparent);
  margin: 0.8rem 0;
  border-radius: 1px;
}

/* Event title */
.trail-title {
  font-family: 'Rye', cursive;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: #d4a574;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Description */
.trail-desc {
  font-family: 'Special Elite', cursive;
  font-size: 0.85rem;
  color: #a08060;
  line-height: 1.6;
}

/* Marker on the trail line */
.trail-marker {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin: 0 1.5rem;
}

.trail-marker-dot {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #f4e4c1 0%, #d4a574 60%, #8b6f47 100%);
  border-radius: 50%;
  border: 3px solid #2d1810;
  box-shadow: 0 0 12px rgba(212, 165, 116, 0.6);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trail-event:hover .trail-marker-dot {
  transform: scale(1.3);
  box-shadow: 0 0 24px rgba(212, 165, 116, 0.9);
}

.trail-marker-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 50%;
  animation: markerPulse 2.5s ease-out infinite;
}

@keyframes markerPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* --- About Us --- */
.about-container {
  max-width: 800px;
  margin: 0 auto;
}

.wooden-board {
  background: #f4e4c1;
  border: 5px solid #2d1810;
  padding: 2.5rem;
  box-shadow: 8px 8px 0 rgba(45, 24, 16, 0.3);
}

.about-intro h3 {
  font-family: "Rye", cursive;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2d1810;
}

.about-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3d2f1f;
}

.stats-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-badge {
  text-align: center;
  background: #2d1810;
  color: #f4e4c1;
  padding: 1.5rem 2rem;
  min-width: 150px;
  transition: transform 0.3s ease;
}

.stat-badge:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: "Rye", cursive;
  font-size: 2rem;
  color: #d4a574;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-top: 0.3rem;
}

/* --- Footer --- */
footer {
  background: linear-gradient(180deg, #3d2f1f 0%, #2d1810 100%);
  padding: 3rem 5%;
  border-top: 4px solid #8b6f47;
}

.footer-saloon {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.saloon-sign h3 {
  font-family: "Rye", cursive;
  color: #f4e4c1;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-rope {
  width: 80%;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #8b6f47 0px,
    #8b6f47 10px,
    #5d4e37 10px,
    #5d4e37 20px
  );
  border-radius: 3px;
  margin: 1rem auto;
}

.saloon-sign p {
  color: #d4a574;
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.contact-info {
  font-size: 0.85rem;
  color: #a08060;
}

.footer-stars {
  color: #d4a574;
  font-size: 1.5rem;
  margin: 1rem 0;
  letter-spacing: 8px;
}

.copyright {
  font-size: 0.8rem;
  color: #8b6f47;
  margin-top: 1rem;
}

/* --- Mobile Responsive --- */
@media (max-width: 668px) {
  .mobile-menu-btn {
    display: flex;
  }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: #3d2f1f;
    flex-direction: column;
    padding: 3rem 1rem;
    transition: left 0.4s ease;
    border-right: 5px solid #2d1810;
    overflow-y: auto;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  .dropdown,
  .dropdown .dropbtn {
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 100%;
  }

  /* Trail Timeline Mobile */
  .trail-timeline {
    padding: 1rem 0 2rem;
  }

  .trail-line {
    left: 20px;
  }

  .trail-event {
    flex-direction: row !important;
    justify-content: flex-start;
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .trail-event.trail-left {
    transform: translateX(-40px);
  }
  .trail-event.trail-right {
    transform: translateX(40px);
  }

  .trail-marker {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .trail-card {
    width: calc(100% - 60px);
    min-width: unset;
    margin-left: 55px;
  }

  .trail-card-inner {
    padding: 1.2rem 1rem;
  }

  .trail-badge {
    font-size: 2rem;
  }

  .trail-marker-dot {
    width: 14px;
    height: 14px;
  }

  .trail-marker-ring {
    width: 28px;
    height: 28px;
  }

  .stats-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .wanted-grid {
    grid-template-columns: 1fr;
  }

  .line1 {
    font-size: 3rem;
  }

  .line2 {
    font-size: 3rem;
  }

  /* Premium header mobile */
  .section-header-premium {
    padding: 1.8rem 1.2rem 1.5rem;
    max-width: 95%;
    margin-bottom: 2.5rem;
  }

  .shp-badge-icon {
    font-size: 2.2rem;
  }

  .shp-title {
    letter-spacing: 2px;
  }

  .shp-line {
    width: 35px;
  }
}

@media (max-width: 480px) {

  .section-header-premium {
    padding: 1.5rem 1rem 1.2rem;
    border-width: 3px;
  }

  .shp-badge-icon {
    font-size: 1.8rem;
  }

  .shp-star {
    font-size: 0.55rem;
  }

  .shp-ornament-top,
  .shp-ornament-bottom {
    gap: 0.3rem;
  }

  .shp-line {
    width: 25px;
  }

  .shp-subtitle {
    letter-spacing: 1px;
    font-size: 0.65rem;
  }
 
  .countdown-box {
    padding: 1rem 0.5rem;
    overflow: hidden;
  }
 
  .countdown-display {
    gap: 0.2rem;
    width: 100%;
  }
 
  .countdown-unit {
    min-width: 0;
    flex: 1;
  }
 
  .countdown-num {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
 
  .countdown-sep {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
 
  .countdown-tag {
    font-size: 0.55rem;
    letter-spacing: 0;
  }
 
  .wooden-board {
    padding: 1.2rem;
    overflow: hidden;
  }
 
  .about-container {
    padding: 0 0.5rem;
  }
 
  .wood-section,
  .saloon-section {
    padding: 3rem 4%;
  }
 
  .stat-badge {
    min-width: 120px;
    padding: 1rem;
  }
 
  .stat-number {
    font-size: 1.5rem;
  }

  .section-title {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  padding: 0 1rem;
  }
 
  .contact-info {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 0 1rem;
  }
 
  .footer-saloon p {
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  }

  .section-title {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  line-height: 1.3;
  }

  .contact-info {
  font-size: 0.8rem;
  }
 
  .saloon-sign h3 {
  font-size: 1.2rem;
  }
 
  .saloon-sign p {
  font-size: 0.85rem;
  }

  .announcement {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  line-height: 1.4;
  }
 
  .wooden-sign {
  max-width: 90vw;
  overflow: hidden;
  }
 
  .announcement {
    font-size: clamp(0.6rem, 3vw, 0.85rem);
    letter-spacing: 1px;
    padding: 0 0.5rem;
    white-space: normal;
    word-break: break-word;
  }

  .wooden-sign {
    max-width: 90vw;
    overflow: hidden;
  }
  
  .footer-content h3 {
    font-size: clamp(1rem, 4vw, 1.4rem) !important;
    white-space: normal;
    word-break: break-word;
    line-height: 1.3;
  }
  .section-title {
    font-size: clamp(1rem, 4.5vw, 1.6rem) !important;
    letter-spacing: 1px;
    padding: 0 0.5rem;
    line-height: 1.3;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
  }
}

  .footer-saloon {
    padding: 0 1rem;
  }
 
  .saloon-sign p,
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    white-space: normal;
    word-break: break-all;
    text-align: center;
  }
}

