@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@500&family=JetBrains+Mono:wght@400;500;600;700&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: "Geologica", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-family: "Geologica", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: inherit;
  font-optical-sizing: auto;
  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);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.0625rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}

.section-eyebrow {
  display: block;
  font-family: "Onest", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5856D6;
  margin-bottom: 0.6rem;
}

.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);
}

.btn-outline-primary {
  border-color: #5856D6;
  color: #5856D6;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #5856D6;
  border-color: #5856D6;
  color: #ffffff;
}

.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;
}

.company-logo {
  transition: opacity 0.2s ease;
}

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,
#navbar-container {
  position: relative;
  z-index: 1050;
}

.nav-item {
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-size: 0.85em;
}

.navbar-dark {
  background-color: transparent;
}
.navbar-dark .container {
  max-width: 1000px;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  max-width: 1000px;
}

.navbar-brand {
  font-size: 1em;
  font-family: "JetBrains Mono", monospace;
  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;
  object-fit: cover;
  border-radius: 4px;
}

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

/* Full-bleed utility for edge-to-edge showcase sections */
.full-bleed-section {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.full-bleed-section img,
.full-bleed-section video {
  width: 100%;
  display: block;
}

/* Side project cards (Beyond the portfolio) */
.side-project-link {
  text-decoration: none;
  color: inherit;
}
.side-project-link:hover .project-arrow {
  background-color: #5856D6;
  margin-right: 0;
  transition: 0.3s;
}
.side-project-link:hover .project-arrow svg {
  transform: translateX(0px);
  fill: #1A1B1F;
}
.project-arrow {
  display: inline-block;
  background-color: #eeeef0;
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}
.project-arrow svg {
  fill: #1a1a1f;
  transition: transform 0.5s ease;
}

/* Accordion chevrons */
.accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a1a1aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a1a1aa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
