/* css/style.css */
:root {
    --primary-green: #458A45;
    --primary-grey: #454545;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --linkedin-blue: #0077b5;
}

body {
    font-family: 'Bahnschrift', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--primary-grey);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    flex: 1;
}

/* Header */
header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 20px;
}

.logo {
    max-width: 250px;
    height: auto;
}

.lang-switch a {
    text-decoration: none;
    color: var(--primary-grey);
    font-weight: bold;
    margin-left: 15px;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.lang-switch a:hover, .lang-switch a.active {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Content */
h1 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.3rem;
    color: var(--primary-grey);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-green);
    padding-left: 10px;
}

p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Certifications Section */
.cert-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.cert-badges img {
    max-width: 200px;
    height: auto;
    transition: transform 0.2s;
}

.cert-badges img:hover {
    transform: scale(1.05);
}

.cert-list {
    list-style-type: none;
    padding-left: 0;
    margin-left: 20px;
    color: var(--primary-grey);
}

.cert-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    background-image: url('../images/solvarch-logo-tick-xs.png');
    background-repeat: no-repeat;
    background-position: left center; 
    background-size: 12px 12px;
}

/* Action Buttons */
.actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    color: white;
    transition: background-color 0.3s;
}

.btn-contact {
    background-color: var(--primary-green);
}

.btn-contact:hover {
    background-color: #366e36;
}

.btn-linkedin {
    background-color: var(--linkedin-blue);
}

.btn-linkedin:hover {
    background-color: #005582;
}

/* Footer */
footer {
    background-color: var(--primary-grey);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* GDPR Footer Notice */
.privacy-notice {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-notice p {
    text-align: center !important;
}

.privacy-notice a {
    margin: 0;
}

.privacy-notice strong {
    color: #fff;
    opacity: 1;
}

@media print {
    .solvarch-email a {
        text-decoration: none;
        color: #000 !important;
        font-weight: bold;
    }
}