@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary: #007BFF;
    --primary-dark: #0056b3;
    --light: #f8f9fa;
    --dark: #343a40;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f6f8;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a { text-decoration: none; color: var(--primary); font-weight: 700; }
nav a { text-decoration: none; color: var(--dark); margin-left: 20px; font-weight: 500; }
nav a.btn { background: var(--primary); color: white; padding: 8px 15px; border-radius: 4px; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 123, 255, 0.9), rgba(0, 123, 255, 0.7)), url('https://source.unsplash.com/1600x900/?village,lyon');
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h2 { font-size: 2.5rem; margin-bottom: 10px; }
.hero .btn-hero {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

/* Containers */
.container { max-width: 1000px; margin: 2rem auto; padding: 0 20px; flex: 1; }

/* Cards (Jobs) */
.job-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}
.job-meta { color: #6c757d; font-size: 0.9rem; margin-bottom: 10px; }

/* Forms */
form { background: white; padding: 30px; border-radius: 8px; max-width: 500px; margin: 0 auto; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
input, select, textarea { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box;}
button { background: var(--primary); color: white; border: none; padding: 12px; width: 100%; border-radius: 4px; cursor: pointer; font-size: 1rem; }
button:hover { background: var(--primary-dark); }

footer { background: var(--dark); color: white; text-align: center; padding: 20px; margin-top: auto; }