/* Base theme */
:root {
  --bg: #0f1220;
  --panel: #13182a;
  --muted: #aab2cc;
  --accent: #57b3ff;
  --accent-2: #7affc9;
}

html,
body {
  background: var(--bg);
  color: #eaf0ff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";
}

/* Links */
a {
  color: var(--accent);
  transition: color 0.15s ease;
}

a:hover {
  color: #8fd0ff;
  text-decoration: none;
}

/* Navbar */
.navbar {
  background: rgba(16, 19, 35, 0.9) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    filter 0.15s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.btn-outline-light {
  border-color: #ffffff33;
  color: #f8f9ff;
}

.btn-outline-light:hover {
  background: #ffffff11;
  border-color: #ffffff55;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #222b4b 0, transparent 55%),
    radial-gradient(circle at bottom right, #143246 0, transparent 55%),
    linear-gradient(180deg, #12172b 0%, #0f1220 100%);
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url("images/SethMHoward-HeaderIMG.png") center/contain
    no-repeat;
  opacity: 0.08;
  filter: blur(2px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.badge-pill {
  letter-spacing: 0.2px;
}

/* Typography helpers */
.lead {
  color: var(--muted);
}

.section-title {
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Cards */
.card {
  background: linear-gradient(180deg, #161b31 0, #0f1220 100%);
  border: 1px solid #1f2644;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border-color: #3b4781;
}

.card-title {
  font-weight: 700;
}

/* Images / avatars */
.avatar-140 {
  width: 140px;
  height: 140px;
  border-radius: 1.25rem;
  object-fit: cover;
}

/* Small icons next to text */
.feature-icon {
  width: 18px;
  height: 18px;
  opacity: 0.85;
  margin-right: 0.35rem;
}

/* Dividers / muted text */
.divider {
  height: 1px;
  background: #2a3357;
}

.muted {
  color: var(--muted);
}

/* Footer */
.footer {
  border-top: 1px solid #1f2644;
  color: #aeb6d6;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
}

/* App screenshots carousel */
.app-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 1rem 0;
  overflow: hidden;      /* no scrollbars */
  max-width: 100%;
}



.app-carousel {
  max-width: 100%;
  overflow: hidden;      /* ensures no scrollbars on ANY axis */
}

.app-carousel .shot {
  max-width: 160px;      /* hard cap */
  width: 28vw;           /* scalable but never huge */
}

.app-carousel .shot.active {
  transform: scale(1.08); /* slightly smaller enlargement */
}

.app-carousel::-webkit-scrollbar {
  height: 6px;
}

.app-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.app-carousel::-webkit-scrollbar-thumb {
  background: #262e53;
  border-radius: 3px;
}

/* Individual shots */
.app-carousel .shot {
  width: 30%;
  max-width: 200px;
  border-radius: 1.25rem;
  flex: 0 0 auto;
  filter: blur(2px) brightness(0.9);
  opacity: 0.6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: filter 0.25s ease, opacity 0.25s ease,
              box-shadow 0.25s ease, transform 0.25s ease;
  transform: none;       /* no scaling = no jiggle */
}

/* Active + hover states (for JS or manual "active" classes) */
.app-carousel .shot.active {
  filter: none;
  opacity: 1;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.app-carousel .shot:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px); /* tiny lift, not a resize */
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero h1.display-4 {
    font-size: 2.25rem;
  }

  .hero .lead {
    font-size: 1rem;
  }
}

/* Mobile screenshot sizing */
@media (max-width: 575.98px) {
  .app-carousel .shot {
    width: 40%;
    max-width: 140px;
  }
  .app-carousel {
    padding: 0.5rem 0;
    gap: 10px;
  }
}

