/* Font Imports */
/* ProximaNovaSoft Font Family */
@font-face {
  font-family: 'ProximaNovaSoft';
  src: url('./fonts/ProximaNovaSoft-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ProximaNovaSoft';
  src: url('./fonts/ProximaNovaSoft-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Produkt Font Family */
@font-face {
  font-family: 'Produkt';
  src: url('./fonts/Produkt-Regular.woff2') format('woff2'),
       url('./fonts/Produkt-Regular.woff') format('woff'),
       url('./fonts/Produkt-Regular.eot') format('embedded-opentype'),
       url('./fonts/Produkt-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Produkt';
  src: url('./fonts/Produkt-Bold.woff2') format('woff2'),
       url('./fonts/Produkt-Bold.woff') format('woff'),
       url('./fonts/Produkt-Bold.eot') format('embedded-opentype'),
       url('./fonts/Produkt-Bold.svg') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: 'ProximaNovaSoft', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Produkt', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 75rem; /* 1200px / 16px = 75rem */
  margin: 0 auto;
}

/* Responsive Layout Classes */
.content-layout {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
}

.content-image {
  width: 50%;
}

.content-text {
  width: 50%;
  text-align: right;
}

/* Mobile Responsive Breakpoint */
@media (max-width: 768px) {
  .content-layout {
    flex-direction: column;
    padding: 0 2rem;
    gap: 2rem;
  }
  
  .content-image {
    width: 100%;
    order: 2;
  }
  
  .content-text {
    width: 100%;
    text-align: center;
    order: 1;
  }
}
