@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
.bg-brand {
  background-color: #5856D6;
}

.dark-section {
  background-color: #131417;
}

.section-spacing {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-spacing {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Urbanist", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: inherit;
  font-optical-sizing: auto;
  font-weight: 400;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.btn {
  font-family: "Onest", sans-serif;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #5856D6;
  border-color: #5856D6;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #4c4ac3;
  transform: translateY(-1px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.border-16 {
  border-radius: 16px;
}

body, p, table, th {
  font-family: "Archivo", sans-serif;
}

.thead-dark {
  background-color: #212F3C;
  color: #EBEDEF;
}

img {
  border-radius: var(--bs-border-radius-lg);
}

html, body {
  height: 100%;
  font-weight: 300;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.container, #footer-container {
  flex: 1;
}

.logo-img {
  max-height: 60px; /* adjust as needed */
  width: auto;
}

footer {
  background-color: #131417;
  font-family: "Onest", sans-serif;
  color: #DADADA;
}
footer h5 {
  font-weight: 600;
  font-size: 1em;
  color: white;
}
footer p, footer a {
  text-decoration: none;
  font-size: 0.9em;
  color: #DADADA;
  line-height: 2.3em;
  transition: 0.3s;
}
footer p:hover, footer a:hover {
  color: white;
  text-decoration: underline;
  transition: 0.3s;
}
footer p {
  line-height: 1.2em;
}

.emoji-bullet-list {
  list-style: none;
  padding-left: 0;
}
.emoji-bullet-list li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
}
.emoji-bullet-list li:before {
  content: "🔸";
  position: absolute;
  left: 0;
  top: 0;
}

.emoji-check-list {
  list-style: none;
  padding-left: 0;
}
.emoji-check-list li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
}
.emoji-check-list li:before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

.navbar-container {
  z-index: 10; /* Ensures the content stays above the overlay */
}

.nav-item {
  font-family: "Onest", sans-serif;
  font-weight: 300;
}

.navbar-dark {
  background-color: #131417;
}

.navbar-brand {
  font-size: 1em;
  font-family: "Onest", sans-serif;
  font-weight: 600;
}

label {
  display: block;
  margin-top: 10px;
  font-family: "Onest", sans-serif;
}

input[type=text], textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#watches-table img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}