/*
 * Brand Override CSS
 * This file overrides the default theme styles
 * Add your custom brand colors and styles here
 */

@font-face {
    font-family: 'SuisseIntl';
    src: url('../../fonts/SuisseIntl-SemiBold.otf') format('opentype'),
         url('../../fonts/SuisseIntl-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Typography */
    --font-family-primary: 'SuisseIntl', sans-serif;

    /* Kuehne+Nagel brand colors */
    --kn-dark-blue:  #003369;
    --kn-white:      #ffffff;
    --kn-light-blue: #0099DA;
    --kn-light-green: #08C792;
    --kn-coral-red:  #ED2939;

    /* Override default brand colors */
    --brand-primary: var(--kn-white);
    --brand-secondary: var(--kn-dark-blue);
    --brand-accent: var(--kn-light-blue);

    /* Override other colors if needed */
    --color-navy: var(--kn-dark-blue);
    
    /* Override button radius - makes all buttons rounded */
    --button-radius: 5px;
    --border-radius-sm: 5px;
    --border-radius-md: 5px;

    --button-color: var(--brand-secondary);
    --button-hover-color: var(--brand-secondary);
    --button-text-color: var(--color-white);
    --button-radius: var(--border-radius-sm);
}

/* Footer columns layout */
.site-footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.site-footer .footer-column-headline {
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--kn-white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .footer-column-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.7;
}

.site-footer .footer-contact-hotline {
    margin: 0;
}

.site-footer .footer-contact-hotline a {
    color: var(--kn-light-blue);
    text-decoration: none;
}

.site-footer .footer-contact-hotline a:hover {
    text-decoration: underline;
}

.site-footer .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-nav-list li {
    margin-bottom: 0.4rem;
}

.site-footer .footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
}

.site-footer .footer-nav-list a:hover {
    color: var(--kn-light-blue);
}

.site-footer .footer-icons-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1rem 0 0.5rem;
}

.site-footer .footer-icon-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .site-footer .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
}

/* Additional brand-specific styles */
.brand-override #masthead {
    background: var(--brand-primary);
}

.brand-override .secondary-header {
    background-color: var(--brand-secondary);
}