/* === Base Styles === */
body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: #101a20;
}

p,
li {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === Navbar === */

header .logo img {
  height: 50px; /* adjust this */
  width: auto; /* maintain aspect ratio */
  transition: height 0.3s ease;
}

body.scrolled header .logo img {
  height: 35px; /* smaller when scrolled */
}

.navbar {
  background-color: #000b18 !important;
}

.navbar .nav-link {
  color: #e7f2f7 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.router-link-active {
  color: #fff !important;
}

.navbar-toggler {
  border: none;
  background-color: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28231,242,247,0.9%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Always show burger icon */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }
  .navbar-expand-lg .navbar-collapse {
    display: none !important;
  }
}

/* === Buttons === */
.btn-primary {
  background-color: #101a20;
  border-color: #101a20;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.btn-outline-primary {
  color: #101a20;
  border-color: #101a20;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #101a20;
  color: #fff;
}

/* === Sections === */
.container {
  max-width: 800px;
}

section {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

section:nth-child(even) {
  background-color: #e7f2f7;
}

/* === Footer (Optional if added later) === */
footer {
  background-color: #101a20;
  color: #e7f2f7;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* === Animations === */
.router-view {
  transition: opacity 0.3s ease;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  background-color: #101a20;
  background-image: linear-gradient(
    45deg,
    rgba(0, 155, 217, 0.05) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 155, 217, 0.05) 50%,
    rgba(0, 155, 217, 0.05) 75%,
    transparent 75%,
    transparent
  );
  background-size: 20px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 1rem;
  transition: background-color 0.6s ease, color 0.6s ease, height 0.6s ease;
  margin-top: -10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
}

/* When user scrolls down */
body.scrolled .hero {
  height: 50vh;
  background-color: #fff;
  color: #333;
}

body.scrolled header {
  background-color: #fff;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

body.scrolled header nav a {
  color: #333;
}

body.scrolled header .logo {
  color: #333;
}

html {
  scroll-behavior: smooth;
}

.hero,
header {
  transition: all 0.6s ease;
}

/** Section styling **/

#pricing li {
  margin-bottom: 15px;
}
