/* === Fonts === */
@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Jost-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('../fonts/Jost/Jost-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #000;
  color: #f7941d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #ffb347;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid #1a1a1a;
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.site-nav a.active {
  border-bottom-color: #f7941d;
}

.site-nav a:hover {
  border-bottom-color: #ffb347;
}

/* === Sections (shared) === */
.section {
  display: none;
  flex: 1;
}

.section.active {
  display: flex;
}

/* === Main / Hero === */
.section-main {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  text-align: center;
  gap: 1.5rem;
}

.section-main .hero-logo-link {
  width: 72%;
  max-width: 400px;
  display: block;
}

.section-main .hero-logo {
  width: 100%;
  height: auto;
}

.section-main .hero-text {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 2.0rem;
  background: linear-gradient(90deg, #f7941d, #e0562b, #a8326e, #5b2d8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Contact === */
.section-contact {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  text-align: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-bg-words {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 97%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #111;
  line-height: 5.0;
  pointer-events: none;
  z-index: 0;
}

.section-contact > *:not(.contact-bg-words) {
  position: relative;
  z-index: 1;
}

.section-contact h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.contact-form-link {
  font-size: 1.15rem;
  font-weight: 600;
  border: 1px solid #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.contact-form-link:hover {
  background: #e0562b;
  color: #fff;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-block .label {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f7941d;
}

.contact-block span,
.contact-block a {
  font-size: 1.4rem;
  color: #fff;
}

/* Social media icons */
.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: #f7941d;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #ffb347;
}

.social-icon {
  width: 32px;
  height: 32px;
}

/* === Footer === */
.site-footer {
  background: #000;
  text-align: center;
  padding: 1.5rem 1rem;
  color: #333;
  font-size: 0.85rem;
  border-top: 1px solid #1a1a1a;
}

/* === Responsive === */
@media (max-width: 600px) {
  .site-header {
    padding: 0.5rem 1rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .section-main .hero-text {
    font-size: 1.75rem;
  }

}
