.site-header {
  position: relative;
}

.banner {
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 5vw;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(20, 0, 40, 0.75),
    rgba(20, 0, 40, 0.25)
  );
}

.banner-content {
  max-width: 560px;
}

.banner-text h1 {
  font-size: clamp(1rem, 3vw, 2rem);
  line-height: 1.15;
}

/* Make banner content full-width on mobile */
@media (max-width: 768px) {
  .banner-content {
    max-width: 100%;
  }
}

/* Reduce padding */
@media (max-width: 480px) {
  .banner-overlay {
    padding: 0.8rem 4vw;
  }

  .headline-desktop {
    display: none;
  }
  .headline-mobile {
    display: inline !important;
  }
}

/* Emergency fallback for tiny screens */
@media (max-width: 400px) {
  .banner-text h1 {
    font-size: 0.8rem;
    line-height: 1.1;
  }
}

.banner-text p {
  margin: 0;
  max-width: 32rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.headline-mobile {
  display: none;
}


.banner-actions {
  display: flex;  
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.banner-btn {
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

.banner-btn:hover {
  background: #fff;
  color: #2b0b4a;
}

.banner-benefits {
  margin-top: 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.6rem 1.2rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  opacity: 0.95;
}

.banner-benefits li {
  display: flex;
  align-items: flex-start;
}

.banner-benefits li::before {
  content: "\26A1"; /* lightning bolt */
  margin-right: 0.5rem;
  color: #ffcc66;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .banner-overlay {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 5vw;
  }

  .banner-actions {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.main-nav {
  background: #1b0b30;
  color: #fff;
    position: relative;
  z-index: 1000;
}


.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 5vw;
}

.nav-logo {
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
  transition: background 0.2s;
}

/* Hover effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.1rem;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover::after {
  background: #ffcc66;
}

/* Current page */
.nav-current,
.nav-current:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nav-current::after {
  background: #ffcc66;
}

/* Burger menu for small screens */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: #fff;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #1b0b30;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
  }

  .nav-menu.nav-open {
    max-height: 16rem; /* enough for many items */
  }

  .nav-toggle {
    display: flex;
  }
}

.donation-strip {
  background: #f7f2ff;
  border-bottom: 1px solid #e0d4ff;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 2s ease, opacity 2s ease;
}

.donation-strip.visible {
  max-height: 500px; /* enough for content */
  opacity: 1;
}

.donation-inner {
  padding: 1rem 5vw;
}

.donation-disclaimer {
  font-size: 0.85rem;
  color: #555;
}

.donation-links {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.donation-link {
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #2b0b4a;
  color: #fff;
  font-size: 0.85rem;
}

.site-footer {
  background: #12061f;
  color: #ddd;
  padding: 1.5rem 5vw 1rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin: 0.6rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: #ffcc66;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-note {
  color: #aaa;
  margin-top: 0.4rem;
  font-family: "Segoe UI Symbol", "Segoe UI Emoji", sans-serif;
}

/* Quick Start CTA */
.quick-start-cta {
  background: #f5f7fa;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.quick-start-inner {
  max-width: 900px;
  margin: 0 auto;
}

.quick-start-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2b0b4a;
}

.quick-start-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.quick-start-btn {
  background: #0078D4;
  color: #fff;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.quick-start-btn:hover {
  background: #005a9e;
}

/* Quickstart Page */
.quickstart-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.quickstep {
  margin-bottom: 60px;
}

.quickstep h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #2b0b4a;
}

.quickstep p {
  font-size: 18px;
  line-height: 1.6;
}

.qs-img {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  display: block;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.qs-code {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  overflow-x: auto;
}

.quickstart-finish {
  text-align: center;
  margin-top: 40px;
}

.qs-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  margin: 20px auto;
}

.qs-card-img {
  width: 100%;
  height: 180px;          /* consistent thumbnail height */
  object-fit: cover;      /* crops large Gemini images cleanly */
  display: block;
}

.qs-card h3 {
  font-size: 1.2rem;
  margin: 16px;
  color: #2b0b4a;
}

.qs-card p {
  margin: 0 16px 20px 16px;
  color: #444;
  line-height: 1.4;
}

.qs-card-btn {
  margin: 0 16px 20px 16px;
  display: inline-block;
  background: #2b0b4a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.qs-card-btn:hover {
  background: #3d0f6a;
}

.quickstart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px;
}

