:root {
  --bg: #272727;
  --fg: #FBFFDB;
  --brand: #FBFFDB;
  --muted: #b6b6b6;
  --bright: #FFFFFF;
  --maxw: 900px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'bariolregular', Arial, sans-serif;
  line-height: 1.5;
}

hr {
    height: 1px;
    border: none;
    background: var(--muted);
    color: var(--muted);
    margin: 32px 0; /* adjust spacing as needed */
}

a, a:visited {
  color: var(--bright);
  text-decoration: underline;
  transition: color 0.2s;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--bg);
  border-bottom: 1px solid var(--muted);
  padding: 0 0 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand img {
  height: 48px;
  width: auto;
}

.social {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(1) invert(0);
  transition: filter 0.2s;
}

.social a:hover .social-icon,
.social a:focus .social-icon {
  filter: brightness(0) saturate(100%) invert(90%) sepia(10%) saturate(500%) hue-rotate(10deg) brightness(102%) contrast(101%);
}

.hero {
  padding: 48px 0 0 0;
  background: var(--bg);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-image-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.hero-image-wrap a:hover .hero-image {
  transform: scale(1.03);
}

.hero-info {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-info > * {
  max-width: 70%;
}

.hero-info h1 {
  font-size: clamp(32px, 6vw, 56px);
  margin: 0;
  font-family: 'bariolregular', Arial, sans-serif;
}

.tagline {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--brand);
  color: #272727 !important;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  font-family: inherit;
  font-size: 1.1em;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
}

.btn:hover,
.btn:focus {
  background: white;
  color: #272727;
}

.about {
  padding: 48px 0;
  background: var(--bg);
}

.about h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 16px;
  font-family: 'bariolregular', Arial, sans-serif;
}

.about p {
  font-size: 1.2em;
  color: var(--fg);
  max-width: 70%;
}

footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--muted);
  background: var(--bg);
  color: var(--muted);
  font-size: 1em;
}

.footbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.foot-social {
  display: flex;
  gap: 12px;
}

.foot-social a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-social a:hover,
.foot-social a:focus {
  color: white;
}