Alliance du Rayonnement Territorial
Pourquoi l’A.R.T ?
Lutte contre la désertification
Soutien aux collectivités
Installation d'artisans et professionnels
Nos services
- Mise en relation
- Accompagnement personnalisé
- Renforcement de l’offre de soins
- Formations & financements
/* Reset de base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
line-height: 1.6;
color: #333;
background-color: #fdfdfd;
}
/* Header */
header {
background-color: white;
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #f0f0f0;
}
.logo img {
height: 60px;
}
nav ul {
list-style: none;
display: flex;
gap: 25px;
}
nav a {
text-decoration: none;
color: #e95e0a;
font-weight: bold;
}
/* Hero section */
.hero {
background: url('background-image.jpg') center/cover no-repeat;
color: white;
padding: 100px 20px;
text-align: center;
background-color: #e95e0a; /* fallback */
}
.hero h1 {
font-size: 2.5em;
margin-bottom: 20px;
}
.cta {
background: white;
color: #e95e0a;
padding: 12px 24px;
font-weight: bold;
text-decoration: none;
border-radius: 6px;
transition: background 0.3s;
}
.cta:hover {
background: #f2f2f2;
}
/* Intro grid */
.intro {
padding: 60px 20px;
text-align: center;
}
.intro h2 {
margin-bottom: 30px;
color: #e95e0a;
}
.grid {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.card {
background: #fff4eb;
padding: 20px;
width: 250px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
/* Services */
#services {
background: #f9f9f9;
padding: 60px 20px;
text-align: center;
}
#services h2 {
color: #e95e0a;
margin-bottom: 30px;
}
.services {
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.services li {
background: #fff;
padding: 20px 30px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
/* Appel à l'action */
.cta-block {
background: #e95e0a;
color: white;
text-align: center;
padding: 60px 20px;
}
.cta-block h2 {
margin-bottom: 20px;
}
.btn {
display: inline-block;
margin: 10px;
padding: 12px 24px;
background: white;
color: #e95e0a;
text-decoration: none;
font-weight: bold;
border-radius: 6px;
}
.btn:hover {
background: #f1f1f1;
}
/* Footer */
footer {
background: #333;
color: white;
text-align: center;
padding: 30px 20px;
font-size: 0.9em;
}
footer a {
color: #ffa15c;
text-decoration: underline;
}