:root {
  --color-accent: #FF5C8D;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #555555;
  --color-background: #FFFFFF;
  --color-background-offset: #F7F7F7;
  --color-border: #EAEAEA;
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-headings: 'Manrope', sans-serif;
  --border-radius: 8px;
  --container-width: 1120px;
  --spacing-unit: 8px;
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition-fast: all 0.2s ease-in-out;
}

/* Inter font */
:root {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: 'Inter var', sans-serif;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-family-primary);
  color: var(--color-text-secondary);
  background-color: var(--color-background);
  line-height: 1.7;
}

h1,
h2 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

h3,
h4 {
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

section {
  padding: calc(var(--spacing-unit) * 6) 0;
}

.section-offset {
  background-color: var(--color-background-offset);
}

.section-header {
  max-width: 800px;
  margin: 0 auto calc(var(--spacing-unit) * 4) auto;
  text-align: center;
}

.section-header h2 {
  font-weight: 600;
  font-size: 38px;
  margin-bottom: var(--spacing-unit);
}

.section-header p {
  font-weight: 300;
  font-size: 28px;
  color: var(--color-text-secondary);
}

section[id] {
  scroll-margin-top: 90px;
}

/* *************************************** */
.join-btn {
  background: #FFB300;
  color: #0F1113;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
  border-radius: var(--border-radius);
  font-weight: 600;
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  font-size: 16px;
  font-family: var(--font-family-primary);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.join-btn:hover {
  /* opacity: 0.85;  */
  background: #ffc44d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(253, 181, 50, 0.4);
}

.join-btn:active {
  transform: translateY(0);
}


/* @import url("css/responsive.css"); */