/* Global Styles & Variables */
:root {
  --font-family-base: "Museo Sans", sans-serif;
  --page-color: #1e1e1e;
  --color-text-light: #fff;

  /* Header */
  --header-bg-color: var(--page-color);
  --header-padding: 16px;
  --header-height-min: 68px;

  /* Footer */
  --footer-max-width: 1440px;
  --footer-bg-color: var(--page-color);
  --footer-padding: 50px 20px;
  --footer-gap-desktop: 80px;
  --footer-gap-mobile: 40px;
}

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

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

.brand-logo {
  width: 105px;
}

/* Main Content */

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: flex-start;
}

.title {
  padding: 16px 0 8px 0;
}

.subtitle {
  padding: 16px 0 8px 0;
  font-size: 18px;
}

.list {
  padding-top: 8px;
}

.text-content {
  padding: 16px 20px;
  max-width: 500px;
  color: var(--color-text-light);
  line-height: 1.3;
}

/* Hero Section */
.hero-section {
  position: relative;
}

.hero-title {
  font-size: 40px;
  padding-bottom: 16px;
}

.hero-content {
  padding: 48px 0;
  min-height: 500px;
  background-image: url("./images/image1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 45% top;
}

.hero-background-mobile {
  display: none;
}

.background-bottom {
  padding: 48px 0;
  min-height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 45% top;
  background-image: url("./images/image2.jpg");
}

/* Footer */
.footer {
  background-color: var(--footer-bg-color);
  color: var(--color-text-light);
  padding: var(--footer-padding);
  font-size: 13px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: var(--footer-max-width);
  margin: 0 auto;
  gap: var(--footer-gap-desktop);
}

.footer-column {
  flex: 1;
  min-width: 280px;
}

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

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-statement {
  padding-top: 16px;
}

.footer-responsible-statement {
  font-weight: 300;
  line-height: 20px;
}

.footer-link {
  color: var(--color-text-light, white);
}

/* Responsible logos */
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-logos img {
  height: 40px;
  object-fit: contain;
}

/* Responsive Layout */
@media (max-width: 959px) {
  .footer-container {
    flex-direction: column;
    gap: var(--footer-gap-mobile);
  }

  /* Hero section mobile layout */
  .hero-background-mobile {
    display: block;
    background-image: url("./images/image1.jpg");
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 70% top;
  }

  .hero-content {
    background-image: none;
    background-color: #000;
    min-height: auto;
  }

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