/* ============================================
   Skutins Navigation — Clean & Professional UI
   Author: Abraham TireniOluwa Olamide (RENI)
   ============================================ */

/* ---------- Font & Root Setup ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #0b0f1a;
  --card-bg: #111726;
  --text-light: #e9edf7;
  --text-muted: #9aa5b7;
  --primary: #3a7bd5;
  --accent: #8e2de2;
  --pink: #ff006a;
  --orange: #ff7300;
  --radius: 12px;
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Container ---------- */
.sk-nav-wrap {
  background-color: var(--bg-dark); 
  max-width: 1200px;
  margin: 1rem auto;
}

.sk-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  padding: 1.4rem;
  transition: var(--transition);
}

.sk-card:hover {
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.3);
}

/* ---------- Headings ---------- */
.sk-card h2,
.sk-card h3 {
  color: var(--text-light);
  font-weight: 600;
}

.sk-card h3 {
  font-size: 1.05rem;
}

/* ---------- Text ---------- */
.sk-small {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Select Area ---------- */
.sk-selects {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.sk-selects label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  display: inline-block;
}

.sk-select {
  width: 100%;
  background: #1a2135;
  color: var(--text-light);
  border: 1px solid #202840;
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.sk-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.3);
}

/* ---------- Button ---------- */
.sk-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.sk-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--pink));
  transform: translateY(-1px);
}

/* ---------- Preview Card ---------- */
#sk-preview-card {
  transition: var(--transition);
}

.sk-preview {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.sk-preview img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #1e263a;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

#sk-preview-name {
  font-weight: 600;
  font-size: 1rem;
}

#sk-preview-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- Route Steps / Checkpoints ---------- */
.sk-route-steps {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sk-edge {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  /* display: flex;
  align-items: flex-start; */
  gap: 1.2rem;
}

.sk-edge img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #1e263a;
}

.sk-edge strong {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
}

#sk-summary {
  margin-bottom: 1rem;
}

/* ---------- Map Placeholder ---------- */
#sk-map {
  background: linear-gradient(180deg, #0d1528, #0b0f1a);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  height: 280px;
}

/* ---------- Responsive ----------
@media (max-width: 768px) {
  .sk-preview img {
    width: 140px;
    height: 100px;
  }

  .sk-edge img {
    width: 120px;
    height: 90px;
  }
} */
