:root {
    --westfalen-red-dark: #7a0f12;
    --westfalen-red: #b51f24;
    --westfalen-red-light: #c6282c;
    --text-light: #ffffff;
    --text-muted: #f0dada;
    --footer-bg: #2e2b29;
    --footer-text: #cccccc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "WestfalenNewsSans";
    color: var(--text-light);
    background: #fff;
}

a {
    text-decoration: none;
}

/*a {*/
/*	text-decoration: none;*/
/*}*/

/*a:hover,*/
/*a:focus,*/
/*a:active,*/
/*a:visited {*/
/*	text-decoration: none;*/
/*}*/

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid #e5e5e5;
}

header .logo {
    font-weight: bold;
    color: #c4001a;
    display: flex;
    align-items: center;
    gap: 10px;
}

header a {
    color: black;
    font-size: 16px;
    font-family: WestfalenNewsSans;
    font-weight: 600;
    line-height: 22.4px;
    word-wrap: break-word;
    display: inline-block;
    position: relative;
}

header a::after {
    content: ""; /* pseudo-element */
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* start with 0 width */
    height: 2px; /* thickness of underline */
    background-color: var(--westfalen-red-light); /* underline color */
    transition: width 0.3s ease; /* animate width */
}

header a:hover::after {
    width: 100%; /* expand underline to full width */
}

/* Main Hero */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 708px;
}

.hero-left {
    background:
        url("../images/HeroImage.png") no-repeat left,
        linear-gradient(
            135deg,
            var(--westfalen-red) 0%,
            var(--westfalen-red-dark) 100%
        );
    background-size: cover;
    padding: 75px;
    font-size: 24px;
}

.hero-left h1 {
    font-size: 60px;
    font-family: WestfalenNewsSans;
    font-weight: 600;
    line-height: 66px;
    word-wrap: break-word;
}

.hero-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-left li {
    margin-bottom: 10px;
    padding-left: 40px;
    position: relative;
    color: var(--text-muted);
}

.hero-left li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.hero-right {
    background: var(--westfalen-red-dark);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-right p {
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 24px;
    font-family: WestfalenNewsSans;
}

.cta {
    margin-bottom: 28px;
    color: white;
    font-weight: 300;
    line-height: 33.6px;
    word-wrap: break-word;
}

.cta .link {
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.btn {
    margin-top: 30px;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease;
    font-family: WestfalenNewsSans;
    font-weight: 600;
    line-height: 25.2px;
    word-wrap: break-word;
}

.btn:hover {
    background: #fff;
    color: var(--westfalen-red-dark);
}

/* Footer */
footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    font-size: 13px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.ecovadis-label {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-right {
        padding: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
