/* Global Styles & Variables */
:root {
  --primary-font-family: "Betsson Sans", sans-serif;
  --secondary-font-family: "DM Sans", sans-serif;
  --color-text-light: #fff;

  /* Header */
  --header-bg-color: #ff6600;
  --header-padding: 16px;

  /* Footer */
  --footer-max-width: 1440px;
  --footer-bg-color: #161616;
  --footer-padding-desktop: 56px 32px;
  --footer-padding-mobile: 32px;
  --footer-gap-desktop: 64px;
  --footer-gap-mobile: 40px;

  --on-surface-h1: #ff6600;
}

* {
  box-sizing: border-box;
  font-family: var(--secondary-font-family);
  margin: 0;
}

h1,
h2 {
  font-family: var(--primary-font-family);
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: var(--color-text-light);
  text-decoration: underline;
}

.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header/Navbar */
.navbar {
  display: flex;
  justify-content: start;
  background: var(--header-bg-color);
  padding: var(--header-padding);
  width: 100%;
  height: 64px;
}

.brand-logo {
  height: 24px;
}

.text-content {
  padding: 16px 20px;
  max-width: 380px;
  line-height: 1.3;
}

/* Hero Section */
.hero-section {
  min-height: 580px;

  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 48px 20px;

  text-align: center;
}

.hero-title {
  font-size: 40px;
  padding-bottom: 16px;
  color: var(--on-surface-h1);
}

/* Footer */
.footer {
  background-color: var(--footer-bg-color);
  color: var(--color-text-light);
  padding: var(--footer-padding-desktop);
  font-size: 13px;
  margin-top: auto;
}
.footer-container {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  max-width: var(--footer-max-width);
  margin: 0 auto;
  gap: var(--footer-gap-desktop);
}

.footer-column {
  min-width: 0;
}

.footer-column-title {
  font-size: 1.2rem;
  padding: 20px 0 12px 0;
}

.footer-column p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

/* Responsible logos */
.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo--bga {
  height: 32px;
}

.footer-logo--19plus {
  width: 48px;
  height: 48px;
}

.footer-logo--igo {
  height: 36px;
}

.footer-copyright {
  padding: 4px 0 12px 0;
}

/* Responsive Layout */
@media (max-width: 959px) {
  .footer {
    padding: var(--footer-padding-mobile);
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--footer-gap-mobile);
  }

  .hero-section .text-content {
    max-width: none;
    padding: 20px;
  }
}
