/* Ensure all container elements also align text to the left */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
nav,
header,
footer {
  text-align: left;
}
h1 {
  font-family: "Neue Haas Grotesk", sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #111827;
}

@media (min-width: 640px) {
  font-size: 3.75rem;
  line-height: 1;
}

.eyebrow {
  font-family: "Lato", sans-serif;
}
.subheadline {
  font-family: "Neue Haas Grotesk Display", sans-serif;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 2rem;
}

code {
  background: white;
}

/* Dark mode support for code elements */
.dark code {
  background: #374151;
  color: #f9fafb;
}

.navbar-item {
  font-family: "Lato", sans-serif;
  text-decoration: none;
  display: inline-flex;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.25rem;
  align-items: center;
  border-bottom-width: 2px;
  border-color: transparent;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #6b7280;
}

.navbar-item:hover {
  font-weight: bold;
  color: #007bff; /* Modern hover color */
  text-decoration: none; /* Removing underline for a modern look */
  border-color: #d1d5db;
  color: #374151;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px; /* Added padding for modern spacing */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.navbar-icon img {
  height: 40px; /* Adjust based on your icon */
  margin-right: 20px; /* Space between icon and navbar items */
}

.hamburger-menu {
  display: none;
  cursor: pointer; /* Indicates clickable item */
  flex-direction: column;
  gap: 5px; /* Modern spacing */
}

.hamburger-menu span {
  display: block;
  width: 30px; /* Slightly wider for a modern look */
  height: 3px;
  background-color: #333;
  border-radius: 2px; /* Rounded edges for a modern look */
}

@media (max-width: 768px) {
  .navbar-items {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  details {
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
    padding: 10px;
  }

  summary {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
  }

  summary::-webkit-details-marker {
    display: none; /* Removes the default arrow icon in some browsers */
  }

  details[open] summary {
    background-color: #2b362a;
    border-radius: 5px;
    padding: 10px;
  }
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: left;
}

form {
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 22px;
  background-color: #ffffff;
  color: #333333;
  margin-top: 0.5rem;
}

/* Dark mode support for form inputs */
.dark input[type="text"],
.dark input[type="email"],
.dark input[type="password"] {
  background-color: #374151;
  color: #f9fafb;
  border-color: #4b5563;
}

.dark input[type="text"]:focus,
.dark input[type="email"]:focus,
.dark input[type="password"]:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

input[type="checkbox"] {
  margin-right: 5px;
  margin-top: 0.5rem;
}

button[type="submit"] {
  margin-top: 0.5rem;
  padding: 20px;
  background-color: #ff6347;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #cb4f3a;
}

.form-title {
  text-align: left;
}

.checkbox-container {
  display: flex;
  align-items: center;
}

.some-page-wrapper {
  display: flex;
  margin: 15px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

@media (max-width: 768px) {
  .sections-container {
    flex-direction: column; /* Stacks the sections vertically on small screens */
  }
}

.hero {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  padding-top: 3.5rem;
  display: flex;
  justify-content: center;
}
/* hero main container */
.hero-inner {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  max-width: 42rem;

  @media (min-width: 640px) {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  @media (min-width: 1024px) {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}

.hero_inner {
}

.narrow-container {
  max-width: 600px;
}
