You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
288 lines
4.7 KiB
288 lines
4.7 KiB
/* Section Introduction spécifique à l'accueil */
|
|
.intro {
|
|
padding: 50px 20px;
|
|
background-color: #121212;
|
|
color: #e9ecef;
|
|
}
|
|
|
|
.intro h2 {
|
|
margin-bottom: 15px;
|
|
margin-top: -100px;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.intro p {
|
|
font-size: 18px;
|
|
margin-top: 0;
|
|
margin-bottom: 15px;
|
|
color: #e9ecef;
|
|
}
|
|
|
|
p {
|
|
color: #e9ecef;
|
|
}
|
|
|
|
.btn {
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
background-color: var(--accent-color);
|
|
color: #f8f9fa;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: var(--accent-color);
|
|
}
|
|
|
|
/* Responsive pour les tablettes */
|
|
@media (max-width: 768px) {
|
|
.intro {
|
|
padding: 40px 15px;
|
|
}
|
|
|
|
.intro h2 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.intro p {
|
|
font-size: 16px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.btn {
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
|
|
/* Responsive pour les smartphones */
|
|
@media (max-width: 480px) {
|
|
.intro {
|
|
padding: 30px 10px;
|
|
}
|
|
|
|
.intro h2 {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.intro p {
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.btn {
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 80px 20px;
|
|
background: linear-gradient(to right, #121212, #1a1a1a);
|
|
min-height: 80vh;
|
|
}
|
|
|
|
.hero-content {
|
|
flex: 1;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.hero-image {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.profile-image {
|
|
width: 300px;
|
|
height: 300px;
|
|
border-radius: 50%;
|
|
border: 5px solid var(--accent-color);
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.hero-buttons .btn {
|
|
min-width: 180px;
|
|
padding: 12px 24px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.hero-buttons .btn:hover {
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
/* Services Section */
|
|
.services {
|
|
text-align: center;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 30px;
|
|
padding: 40px 20px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.service-card {
|
|
background: #1a1a1a;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
transition: transform 0.3s ease;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.service-card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.service-card h3 {
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.service-card p {
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Featured Projects */
|
|
.project-carousel {
|
|
overflow-x: hidden;
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.project-slide {
|
|
position: relative;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-info {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 20px;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
color: #fff;
|
|
}
|
|
|
|
/* Stats Grid */
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 30px;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.stat-card {
|
|
text-align: center;
|
|
padding: 30px;
|
|
background: #1a1a1a;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 3em;
|
|
color: var(--accent-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Testimonials */
|
|
.testimonials-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.testimonial-card {
|
|
background: #1a1a1a;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
border-left: 4px solid var(--accent-color);
|
|
}
|
|
|
|
/* Quick Contact */
|
|
.quick-contact {
|
|
text-align: center;
|
|
padding: 80px 20px;
|
|
background: linear-gradient(to right, #121212, #1a1a1a);
|
|
}
|
|
|
|
.contact-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.contact-buttons .btn {
|
|
min-width: 200px;
|
|
padding: 12px 24px;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.contact-buttons .btn:hover {
|
|
transform: translateY(-3px);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes float {
|
|
0% { transform: translateY(0px); }
|
|
50% { transform: translateY(-20px); }
|
|
100% { transform: translateY(0px); }
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 992px) {
|
|
.services-grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.services-grid {
|
|
grid-template-columns: 1fr;
|
|
max-width: 400px;
|
|
}
|
|
}
|
|
|
|
/* Responsive Design pour les petits écrans */
|
|
@media (max-width: 480px) {
|
|
.contact-buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.contact-buttons .btn {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.hero-buttons {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 15px;
|
|
}
|
|
|
|
.hero-buttons .btn {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
}
|