html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* border: 2px dashed red; */
}

#header section {
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  flex: 1 1 200px;
  min-width: 30px;
  gap: 0.5rem;
}

#header section img {
  width: 30%;
  max-width: 40px; /* limit parent width */
  height: auto;
}

#nav-bar ul {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-evenly;
  padding-inline-start: 0; /* removes left padding */
}
#nav-bar ul li a.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

#nav-bar ul li a.nav-link:hover {
  color: rgb(228, 113, 6); /* matches your buttons */
}

main {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 800px;
  margin: 1rem auto;
  margin-top: 6rem;
  padding-bottom: 3rem;
  gap: 3rem;
}

#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

#hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#hero p {
  margin-bottom: 1.5rem;
  color: #555;
}

#form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 500px;
  width: 100%;
}

#email {
  flex: 1;
  padding: 0.75rem;
  border-radius: 5px;
  border: 2px solid #ccc;
  font-size: 1rem;
}

#submit {
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 5px;
  background: rgb(228, 113, 6);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  /* transition: background 0.2s ease; */
}

#submit:hover {
  background: rgb(245, 124, 3);
}

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

.icon {
  flex: 0 0 4rem;
}

.icon img {
  height: auto;
  width: 100%;
  display: block;
}

.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#pricing {
  display: flex;
  justify-content: space-evenly;
}

#pricing {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 3rem auto;
  max-width: 900px;
  width: 95%;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 2rem 1rem;
  min-width: 200px;
  flex: 1 1 250px;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

#nav-bar {
  display: flex;
  flex: 1 1 200px;
  z-index: 101;
  /* border: 2px dashed purple; */
}
#header {
  padding: 0.2rem;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-left: 3rem;
}
@media (max-width: 600px) {
  #header {
    padding-left: 0;
  }
  main {
    margin-top: 10rem;
  }

  #header section {
    justify-content: center;
    align-items: center;
  }
}
