
@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ClashDisplay';
  src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-background: #f8f8f8;
  --color-text: #171717;
  --color-text-inverted: #ebebeb;
  --color-accent: #235347;  /*344532*/
  --color-accent-hover: #183830;  /*344532*/
  --color-accent-extra: #902923;
  --color-accent-extra-hover: #611a16;
  --color-accent-extra2: #FCA311;
  --color-accent-extra2-hover: #cb8719;
  font-family: 'Inter Variable', sans-serif;
  font-weight: 600;
}

html {
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  line-height: 1.5;
  position: relative;
}


h1 {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 6rem;
  font-weight: 900;
}
h2, h3, h4, h5, h6 {
  font-family: 'ClashDisplay', sans-serif;
  font-size: 3rem;
  line-height: 2.6rem;
  font-weight: 900;
}

/* Custom SVG cursor applied site-wide. The SVG is inlined as a data URI.
   We add a text/auto fallback and explicit overrides for form controls. */
html, body, * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23000" stroke-width="1.5" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z"/></svg>') 12 12, auto;
}

/* Keep the text cursor for editable controls so typing UX isn't broken */
input, textarea, select, [contenteditable] {
  cursor: text;
}

/* Pointer cursor for buttons and links to keep affordance */
button, a, .btn-primary, .btn-outline, .btn-outline-dark, img {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23000" stroke-width="1.5" stroke-linejoin="round" d="M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z"/></svg>') 12 12, auto;
}

a {
  color: var(--color-accent-extra2);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-text-inverted);
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  ul {
    padding-inline-start: 0px;
  }

.container {
  color: var(--color-text);
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  animation: fadeIn 0.8s cubic-bezier(0.4,0,0.2,1) both;
}

.highlight {
  background-color: var(--color-accent);
  padding: 4px 8px;
  border-radius: 0.3em;
  color: var(--color-text-inverted);
  text-shadow: var(--color-text) 1px 1px 0px;
}

.btn-primary {
  background-color: var(--color-accent-extra);
  color:  var(--color-text-inverted);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-primary:hover {
  background-color: var(--color-accent-extra-hover);
}

.btn-outline {
  text-align: center;
  display: inline-block;
  border: 2px solid var(--color-text-inverted);
  color: var(--color-text-inverted);
  background: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--color-accent-extra2-hover);
  color: var(--color-text-inverted);
  text-decoration: underline;
}

.btn-outline-dark {
  text-align: center;
  display: inline-block;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover {
  background: var(--color-background);
  color: var(--color-accent);
}

.branding {
  font-size: 6vw;
  font-weight: 700;
  color: #c1c1c1;
  position: fixed;
  z-index: -1;
  bottom: 1px;
  left: 5px;

}
.branding h2 {
  margin: 0;
  padding: 0;
  font-size: 10vw;
  font-weight: inherit;
  color: inherit;
}

.callout-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--color-background);
  z-index: 1;
}

.callout {
  background-color: hsla(0, 0%, 98%, 0.5);
  backdrop-filter: blur(15px);
  border-left: 4px solid var(--color-accent);
  border-right: 4px solid var(--color-accent);
  box-shadow: 0 2px 16px rgba(52, 69, 50, 0.2);
  padding: 1rem 1.5rem;
  margin: 2rem;
  font-style: italic;
  color: #555;
  max-width: 750px;
  align-self: center;
  border-radius: 12px;
}

.youtube-video {
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  border: 4px solid var(--color-accent);
  width: 100%;
  height: 100%;
}

.youtube-facade {
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  border: 4px solid var(--color-accent);
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.youtube-facade:hover {
  transform: scale(1.02);
}

.youtube-facade::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.youtube-facade svg {
  position: relative;
  z-index: 2;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  padding: 16px;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.youtube-facade svg:hover {
  transform: scale(1.1);
}

.youtube-video-container {
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .container p {
    font-size: 1.2rem;
    font-weight: 300;
  }

  ul {
    padding-inline-start: 10px;
  }
}
