@font-face {
    font-family: 'Zalando Sans';
    src: url('../fonts/ZalandoSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Zalando SemiExpanded';
    src: url('../fonts/ZalandoSemiExpanded-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

:root {
    --brand-primary: #FF6A00;
    --brand-primary-hover: #e65f00;
    --brand-secondary: #1e1e1e; /* Anthracite */
    --brand-text: #333333;
    --brand-light: #ffffff;
    --brand-font: 'Zalando Sans', sans-serif;
    --brand-headline-font: 'Zalando SemiExpanded', sans-serif;
}

body {
    font-family: var(--brand-font);
    color: var(--brand-text);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--brand-headline-font);
    font-weight: 700;
    color: var(--brand-secondary);
}

.brand-headline,
.brand-headline-italic {
    font-family: var(--brand-headline-font);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-headline-italic,
.brand-font-italic {
    font-style: normal;
}

/* Logo */
.brand-logo {
    font-family: var(--brand-headline-font);
    font-weight: 700;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--brand-primary) !important;
    letter-spacing: -0.03em;
    width: 200px;
}

.brand-icon {
    color: var(--brand-primary);
}

/* Buttons */
.uk-button-primary {
    background-color: var(--brand-primary);
    color: white;
    font-weight: 600;
    text-transform: none;
    transition: background-color 0.2s ease;
}

.uk-button-primary:hover,
.uk-button-primary:focus {
    background-color: var(--brand-primary-hover);
}

.uk-button-default {
    border-color: #e5e5e5;
    color: var(--brand-secondary);
    font-weight: 600;
    text-transform: none;
}

/* Utility */
.uk-border-rounded {
    border-radius: 8px !important;
}

.uk-box-shadow-medium {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.uk-box-shadow-large {
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.hero-image-placeholder {
    position: relative;
    overflow: hidden;
}

/* Calculator */
.calculator-card {
    border: 1px solid #e5e5e5;
    position: relative;
    z-index: 10;
    background: white;
}

.result-box {
    background-color: #f8f8f8;
    border: 1px solid #eeeeee;
}

/* Icons circles */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

/* Services */
.uk-card-hover:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Sections */
.uk-section-secondary {
    background-color: var(--brand-secondary);
}

.uk-background-primary {
    background-color: var(--brand-primary);
}

/* Form inputs focus state */
.uk-input:focus, 
.uk-select:focus, 
.uk-textarea:focus {
    border-color: var(--brand-primary);
}
