@import url("https://use.typekit.net/agw5emc.css");

:root {
  /* --- Colors (Updated) --- */
  --color-gold: #cb9a29;
  --color-navy: #003657;

  /* --- Fluid Typography (1440px Canvas) --- */
  /* Formula: clamp(mobile-size, fluid-scaler, desktop-max) */
  --fs-huge: clamp(2.5rem, 5.5vw + 1rem, 3.6rem);   /* 43.25pt */
  --fs-serif: clamp(1.4rem, 3vw + 0.5rem, 1.83rem); /* 22pt */
  --fs-para: clamp(1rem, 1.5vw + 0.5rem, 1.16rem);  /* 14pt */
  --fs-addr: clamp(0.85rem, 1vw, 0.83rem);          /* 10pt */
  --fs-btn: clamp(0.75rem, 0.8vw, 0.75rem);         /* 9pt */

  --divider-width: 100%;
}

.section-full {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.startseite-hero-section {
  background: #FFFFFF;
  height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* 1. Paragraph (14pt Montserrat) */
.txt-para {
  font-family: "montserrat", sans-serif;
  font-size: var(--fs-para);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: 0;
}

/* 2. Buttons (9pt Montserrat) */
.txt-btn {
  font-family: "montserrat", sans-serif;
  font-size: var(--fs-btn);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 3. Huge Text (43.25pt Montserrat 900) */
.txt-huge {
  font-family: "montserrat", sans-serif;
  font-size: var(--fs-huge);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  display: block;
}

/* Span classes for the Huge Text colors */
.txt-huge .gold { color: var(--color-gold); }
.txt-huge .navy { color: var(--color-navy); }

/* 4. Large Serif (22pt Sole Serif) */
.txt-serif-lg {
  font-family: "sole-serif-titling-variable", sans-serif;
  font-size: var(--fs-serif);
  font-variation-settings: "opsz" 0, "wght" 200;
  font-style: italic;
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: 0;
}

/* 5. Address (10pt Montserrat) */
.txt-address {
  font-family: "montserrat", sans-serif;
  font-size: var(--fs-addr);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-navy);
}

/* Helper for the Horizontal Lines */
.divider-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  margin: 2rem 0;
}

.logo {
    height: auto;
    max-width: 100%;
    object-fit: cover;
    width: 197px;
    margin-top: 1.2rem;
}

/* 1. The Main Wrapper (from your .section-inner) */
.uc-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Strictly Left-Aligned */
}

/* 2. Content Blocks */
.uc-content > div {
  width: 100%; /* Spans the full available width of the inner container */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Internal items stay left */
  text-align: left;        /* Text stays left */
}

/* 3. The Gold Dividers (Fixed at 165.166mm) */
.uc-content > div:nth-child(1),
.uc-content > div:nth-child(2) {
  position: relative;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}

.uc-content > div:nth-child(1)::after,
.uc-content > div:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0; /* Anchors the line to the left edge */
  width: var(--divider-width);
  height: 2px;
  background-color: var(--color-gold);
}

/* 4. Footer Adjustment */
.uc-footer {
  flex-direction: row !important;
  justify-content: space-between;
  align-items: flex-end;
}