/* =====================================================
   archjobs.co – Homepage Styles
   Kombiniert Stile aus style_index.css & style_ausschreiben.css
   ===================================================== */

/* ---------- 1) Base Styles & Variablen ---------- */
:root {
    --primary-color: #0021A7;
    --bg-color: #f0f0f0;
    --card-bg: #ffffff;
    --text-color: #333;
    --light-text-color: #666666;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

section {
    margin-bottom: 40px;
    padding: 40px 30px;
    text-align: center;
}


/* ---------- 2) Header & Footer (aus style_index.css) ---------- */
header {
    background-color: var(--card-bg);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo-link {
    display: inline-block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
}

.site-title {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer {
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
}

.footer nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer nav a {
    color: var(--text-color);
    font-weight: 500;
}
.footer nav a:hover {
    text-decoration: underline;
}


/* ---------- 3) Hero Sektion ---------- */
.hero-section {
    padding-top: 60px;
    padding-bottom: 50px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--light-text-color);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* ---------- 4) City Selection & Buttons (aus style_ausschreiben.css) ---------- */
.city-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.city-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    min-width: 120px;
    box-sizing: border-box;
}

.city-btn:hover {
    background-color: #001a85;
    transform: translateY(-2px);
    text-decoration: none;
}


/* ---------- 5) Approach Sektion (Kartenstil) ---------- */
.approach-section {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.approach-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 2.5rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
}

.approach-card {
    padding: 20px;
}

.prop-icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.approach-card p {
    font-size: 1rem;
    color: var(--light-text-color);
    margin: 0;
    line-height: 1.6;
}


/* ---------- 6) Final CTA Sektion ---------- */
.final-cta-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1rem;
    color: var(--light-text-color);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}


/* ---------- 7) Responsive Design ---------- */
@media only screen and (min-width: 769px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    section {
        margin-bottom: 60px;
        padding: 60px 50px;
    }
}

@media only screen and (max-width: 768px) {
    main {
        padding: 10px;
    }
    
    section {
        padding: 30px 20px;
    }

    .hero-section {
        padding-top: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .site-title {
        font-size: 1rem;
    }

    .logo {
        height: 35px;
    }

    .city-btn {
        width: 100%;
        max-width: 280px;
    }
}