@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}
p, ul, ol, dl, dt, dd {
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
}

h1 {
    font-size: 48px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 20px;
}
p {
    font-size: 17px;
    color: var(--black-headline);
}

:root {
    --blue-accent: #3F5E91;
    --grey-section: #868684;
    --grey-background: #F1F0EF;
    --white-background: #F9F9F8;
    --black-headline: #151413;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}

.highlight {
    color: var(--blue-accent);
    font-style: italic;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(14px);
}

.navbar-logo {
    position: sticky;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-background);
    background-color: var(--black-headline);
    text-decoration: none;
}

.navbar-links {
    background-color: rgba(26, 26, 26, 0.9);
    display: flex;
    gap: 0;
}

.navbar-links a {
    display: inline-block;
    padding: 10px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.navbar-links a.active {
    background-color: var(--blue-accent);
    color: var(--white-background);
}

.navbar-links a:not(.active) {
    background-color: var(--black-headline);
    color: var(--white-background);
    border: 0.5px solid var(--grey-section);
}

.navbar-links a:not(.active):hover {
    background-color: var(--grey-section);
}

/* ── SECTION NAV ── */
.section-nav {
    padding: 0 44px;
    display: flex;
    align-items: center;
    gap: 0;
}

.section-nav a {
    display: inline-block;
    padding: 14px 0;
    margin-right: 36px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white-background);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s;
}

.section-nav a:hover {
    color: var(--blue-accent);
}

.section-nav .sep {
    color: var(--grey-section);
    margin-right: 36px;
}


/* ── HEADER ── */
header {
    position: sticky;
    z-index: 1;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 80px;
    color: var(--white-background);
    background-image: linear-gradient(
            rgba(26, 26, 26, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 60%
    ),
    url("img/germany_header.png");
}

.header-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--white-background);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-eyebrow span.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--white-background);
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 36px;
}

header h1 .highlight {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--blue-accent);
    font-size: clamp(60px, 7.5vw, 105px);
    text-transform: none;
    letter-spacing: 0.01em;
}

header p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.75;
    color: var(--grey-background);
    max-width: 550px;
}

/* ── ABOUT SECTION ── */
.about-germany {
    position: relative;
    z-index: 2;
    padding: 100px 80px;
    background-color: var(--grey-background);
    overflow: hidden;
}

.about-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-section);
    margin-bottom: 24px;
}

.about-germany > h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.about-germany .content {
    display: grid;
    grid-template-columns: 1fr 1px;
    gap: 0 48px;
    align-items: start;
    max-width: 50%;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    font-weight: 300;
    line-height: 1.85;
    color: var(--black-headline);
}

.about-text p strong {
    font-weight: 500;
    color: var(--black-headline);
}

.about-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 45%;
    margin: 0;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* =========================
   DESIGN PRINCIPLES
   ========================= */

.design-principles {
    padding: 100px 80px;
}

.design-principles-header {
    margin-bottom: 70px;
}

.design-principles-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-section);
    margin-bottom: 24px;
}

.design-principles-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.design-principles .principles-wrapper {
    display: flex;
    gap: 30px;
}

.design-principles .principle-card {
    flex: 1;
    background: #f8f8f8;
    border: 1px solid #d5d5d5;
    border-radius: 20px;
    padding: 30px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.design-principles .principle-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.design-principles .principle-card-top h3 {
    font-size: 34px;
}

.design-principles .principle-number {
    font-size: 72px;
    color: var(--blue-accent);
    font-family: "Bebas Neue", sans-serif;
}

.design-principles .principle-card p {
    font-weight: 300;
    line-height: 1.85;
    color: var(--black-headline);
}

/* =========================
   COLOR & TYPOGRAPHY
   ========================= */

.color-palette {
    padding: 100px 80px;
    background-color: var(--grey-background);
}

.color-palette-header {
    margin-bottom: 50px;
}

.color-palette-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-section);
    margin-bottom: 24px;
}

.color-palette-header h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.color-palette .palette {
    display: flex;
    overflow: hidden;
    height: 120px;
    border: 1px solid #cfcfcf;
    border-radius: 20px;
}

.color-palette .color {
    flex: 1;
}

.color-palette .gold { background: #c7a64d; }
.color-palette .yellow { background: #f5c400; }
.color-palette .orange { background: #e26a00; }
.color-palette .red { background: #d60017; }
.color-palette .blue { background: #3e5f9d; }
.color-palette .gray { background: #8f8f89; }
.color-palette .black { background: #111111; }
.color-palette .white { background: #ffffff; }

.color-palette .typography-wrapper {
    display: flex;
    gap: 80px;
    margin-top: 90px;
}

.color-palette .typography-left {
    flex: 1.2;
}

.color-palette .typography-left h3 {
    margin-bottom: 40px;
}

.color-palette .typography-left p {
    font-weight: 300;
    line-height: 1.85;
    color: var(--black-headline);
}

.color-palette .typography-right {
    flex: 0.8;
    padding-left: 50px;
    border-left: 1px solid #bdbdbd;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.color-palette .label {
    display: block;
    margin-bottom: 20px;
    color: #5877b5;
    font-size: 20px;
    font-family: "DM Sans", sans-serif;
}

.color-palette .labelbebas {
    display: block;
    margin-bottom: 20px;
    color: #5877b5;
    font-size: 22px;
    font-family: "Bebas Neue", sans-serif;
}

.color-palette .typography-font-block {
    padding-bottom: 30px;
    border-bottom: 1px solid #d0d0d0;
    font-weight: 300;
    line-height: 1.85;
    color: var(--black-headline);
}

.color-palette .typography-font-block:last-child {
    border-bottom: none;
}

.color-palette .typography-font-block h4 {
    font-size: 42px;
}

.color-palette .labelfrances {
    display: block;
    margin-bottom: 20px;
    color: #5877b5;
    font-size: 24px;
    font-style: italic;
    font-family: "Fraunces", serif;
}

.color-palette .accent small {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
}

/* =========================
   DO'S AND DON'TS
   ========================= */

.does-donts {
    padding: 100px 80px;
    background-color: var(--white-background);
}

.does-donts-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-section);
    margin-bottom: 24px;
}

.does-donts h2 {
    margin-bottom: 60px;
}

.does-donts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dos-card,
.donts-card {
    background: #f0efed;
    border-radius: 20px;
    padding: 20px 30px;
}

.dos-title {
    color: #6aa84f;
    font-size: 28px;
    margin-bottom: 30px;
}

.donts-title {
    color: #d6463f;
    font-size: 28px;
    margin-bottom: 30px;
}

.dos-list,
.donts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dos-list li,
.donts-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 19px;
    line-height: 1.7;
    padding: 12px 0;
}

.dos-list .arrow {
    color: #6aa84f;
    font-weight: bold;
}

.donts-list .arrow {
    color: #d6463f;
    font-weight: bold;
}

/* =========================
   PRODUCT PRESENTATION RULES
   ========================= */

.product-presentation-rules {
    padding: 100px 80px;
    background-color: var(--white-background);
}

.product-presentation-rules-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-section);
    margin-bottom: 24px;
}

.product-presentation-rules h2 {
    margin-bottom: 40px;
}

.product-presentation-rules-intro {
    max-width: 900px;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.rules-label {
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.rules-wrapper {
    display: flex;
    gap: 30px;
}

.rule-card {
    flex: 1;
    background-color: var(--grey-background);
    border: 1px solid #d5d5d5;
    border-radius: 20px;
    padding: 30px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rule-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.rule-card-top h3 {
    font-size: 34px;
}

.rule-number {
    font-size: 72px;
    color: var(--blue-accent);
    font-family: "Bebas Neue", sans-serif;
}

.rule-card p {
    font-size: 20px;
    line-height: 1.8;
}

/* =========================
   PRODUCT PRESENTATION
   ========================= */

.product-presentation {
    padding: 80px 8vw;
    background-color: var(--white-background);
}

.product-presentation h2 {
    margin-bottom: 50px;
    text-transform: uppercase;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--grey-background);
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 40px 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: visible;
}

.reverse {
    flex-direction: row-reverse;
}

.card-text {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.card-text h3 {
    margin-bottom: 25px;
    text-transform: uppercase;
}

.card-text p {
    line-height: 1.7;
    color: #333;
}

.card-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.card-image img {
    position: absolute;
    height: auto;
    transition: transform 0.3s ease;
}

.knife {
    width: 180%;
    max-width: 720px;
    right: -210px;
}

.clock {
    width: 100%;
    max-width: 380px;
    left: -80px;
}

.bottle {
    width: 150%;
    max-width: 800px;
    right: -200px;
    bottom: -90px;
}

/* =========================
   DESIGNING FOR GERMANY
   ========================= */

.designing-germany {
    margin: 50px 50px;
    padding: 50px;
}

.section-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--grey-section);
    margin-bottom: 24px;
}

.designing-germany h2 {
    margin-bottom: 60px;
}

.design-text p {
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 18px;
}

blockquote {
    margin-top: 200px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

blockquote::before,
blockquote::after {
    content: '"';
    color: #5f7fcf;
    font-size: 55px;
    font-weight: bold;
}

/* =========================
   FOOTER
   ========================= */

footer {
    background-color: var(--black-headline);
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 20px 60px;
}

footer a {
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    color: var(--white-background);
    font-size: 12px;
}

footer a:hover {
    opacity: 0.7;
}

