website/styles.css
2025-09-29 08:24:59 +00:00

704 lines
13 KiB
CSS

/* Reset et base */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
background-color: #0a0a0a;
color: #ffffff;
line-height: 1.6;
overflow-x: hidden;
}
/* Variables CSS */
:root {
--primary-orange: #FF6B35;
--secondary-orange: #FF8E53;
--accent-orange: #FFA500;
--gold: #FFD700;
--dark-bg: #0a0a0a;
--darker-bg: #050505;
--text-light: #ffffff;
--text-gray: #b0b0b0;
--border-color: #333333;
--glow-intensity: 3px;
}
/* Pattern de fond */
.background-pattern {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.03) 0%, transparent 50%),
radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
z-index: -1;
}
/* Header et Navigation */
.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(10, 10, 10, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-color);
z-index: 1000;
transition: all 0.3s ease;
}
.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.nav-logo {
display: flex;
align-items: center;
}
.logo-container {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.logo-img {
width: 100%;
height: 100%;
object-fit: contain;
animation: logoGlow 3s ease-in-out infinite alternate;
filter: drop-shadow(0 0 10px var(--primary-orange));
}
@keyframes logoGlow {
0% { filter: drop-shadow(0 0 5px var(--primary-orange)); }
100% { filter: drop-shadow(0 0 15px var(--primary-orange)) drop-shadow(0 0 25px var(--accent-orange)); }
}
.nav-menu {
display: flex;
gap: 2rem;
}
.nav-link {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}
.nav-link:hover {
color: var(--primary-orange);
text-shadow: 0 0 10px var(--primary-orange);
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--primary-orange);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
position: relative;
}
.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1200px;
width: 100%;
}
.hero-logo {
display: flex;
justify-content: center;
align-items: center;
}
.hero-logo-img {
width: 400px;
height: 400px;
object-fit: contain;
animation: heroLogoFloat 6s ease-in-out infinite;
filter: drop-shadow(0 0 20px var(--primary-orange));
}
@keyframes heroLogoFloat {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-text {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.hero-title {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.brand-name {
font-size: 4rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange), var(--gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
animation: brandGlow 2s ease-in-out infinite alternate;
}
@keyframes brandGlow {
0% { text-shadow: 0 0 30px rgba(255, 107, 53, 0.5); }
100% { text-shadow: 0 0 50px rgba(255, 107, 53, 0.8), 0 0 70px rgba(255, 165, 0, 0.3); }
}
.brand-subtitle {
font-size: 2rem;
font-weight: 400;
color: var(--text-light);
opacity: 0.9;
}
.brand-tagline {
font-size: 1.5rem;
font-weight: 300;
color: var(--text-gray);
font-style: italic;
}
.hero-description {
font-size: 1.2rem;
color: var(--text-gray);
line-height: 1.8;
max-width: 500px;
}
.hero-buttons {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.btn {
padding: 1rem 2rem;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
color: white;
box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.btn-secondary {
background: transparent;
color: var(--text-light);
border: 2px solid var(--primary-orange);
}
.btn-secondary:hover {
background: var(--primary-orange);
color: white;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}
/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
/* Sections */
.section-title {
font-size: 3rem;
font-weight: 700;
text-align: center;
margin-bottom: 3rem;
background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Services Section */
.services {
padding: 6rem 0;
background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.service-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 2rem;
text-align: center;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}
.service-card:hover {
transform: translateY(-10px);
border-color: var(--primary-orange);
box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}
.service-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.service-svg {
width: 100%;
height: 100%;
animation: serviceIconPulse 3s ease-in-out infinite;
}
@keyframes serviceIconPulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.service-card h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: var(--text-light);
}
.service-card p {
color: var(--text-gray);
line-height: 1.6;
}
/* About Section */
.about {
padding: 6rem 0;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.about-text h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 2rem;
background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.about-text p {
font-size: 1.1rem;
color: var(--text-gray);
line-height: 1.8;
margin-bottom: 1.5rem;
}
.about-visual {
display: flex;
justify-content: center;
align-items: center;
}
.logo-showcase {
width: 300px;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
}
.showcase-logo-img {
width: 100%;
height: 100%;
object-fit: contain;
animation: showcaseRotate 20s linear infinite;
filter: drop-shadow(0 0 15px var(--primary-orange));
}
@keyframes showcaseRotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Contact Section */
.contact {
padding: 6rem 0;
background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}
.contact-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}
.contact-info h3 {
font-size: 2rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: var(--text-light);
}
.contact-info p {
font-size: 1.1rem;
color: var(--text-gray);
line-height: 1.8;
}
.contact-form {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(10px);
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--text-light);
font-size: 1rem;
transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-orange);
box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--text-gray);
}
/* Footer */
.footer {
background: var(--darker-bg);
border-top: 1px solid var(--border-color);
padding: 3rem 0 1rem;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.footer-logo {
display: flex;
align-items: center;
gap: 1rem;
}
.footer-logo-container {
width: 40px;
height: 40px;
}
.footer-logo-img {
width: 100%;
height: 100%;
object-fit: contain;
animation: footerLogoGlow 4s ease-in-out infinite alternate;
filter: drop-shadow(0 0 8px var(--primary-orange));
}
@keyframes footerLogoGlow {
0% { filter: drop-shadow(0 0 3px var(--primary-orange)); }
100% { filter: drop-shadow(0 0 8px var(--primary-orange)) drop-shadow(0 0 15px var(--accent-orange)); }
}
.footer-text {
display: flex;
flex-direction: column;
}
.footer-text .brand-name {
font-size: 1.2rem;
font-weight: 700;
color: var(--primary-orange);
}
.footer-text .brand-subtitle {
font-size: 0.9rem;
color: var(--text-gray);
}
.footer-links {
display: flex;
gap: 2rem;
}
.footer-links a {
color: var(--text-gray);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: var(--primary-orange);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--border-color);
color: var(--text-gray);
}
/* Responsive Design */
@media (max-width: 768px) {
.nav {
padding: 1rem;
flex-direction: column;
gap: 1rem;
}
.nav-menu {
gap: 1rem;
}
.hero-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.hero-logo-img {
width: 250px;
height: 250px;
}
.brand-name {
font-size: 2.5rem;
}
.brand-subtitle {
font-size: 1.5rem;
}
.brand-tagline {
font-size: 1.2rem;
}
.hero-buttons {
justify-content: center;
flex-wrap: wrap;
}
.about-content {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.footer-content {
flex-direction: column;
gap: 2rem;
text-align: center;
}
.footer-links {
flex-wrap: wrap;
justify-content: center;
}
.services-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 2rem;
}
}
@media (max-width: 480px) {
.container {
padding: 0 1rem;
}
.hero {
padding: 1rem;
}
.hero-logo-img {
width: 200px;
height: 200px;
}
.brand-name {
font-size: 2rem;
}
.btn {
padding: 0.8rem 1.5rem;
font-size: 0.9rem;
}
.service-card,
.contact-form {
padding: 1.5rem;
}
}
/* Animations d'apparition */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.8s ease-out forwards;
}
/* Scrollbar personnalisée */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
background: var(--primary-orange);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--secondary-orange);
}
/* Effets de particules (optionnel) */
.particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}
.particle {
position: absolute;
width: 2px;
height: 2px;
background: var(--primary-orange);
border-radius: 50%;
opacity: 0.3;
animation: particleFloat 10s linear infinite;
}
@keyframes particleFloat {
0% {
transform: translateY(100vh) rotate(0deg);
opacity: 0;
}
10% {
opacity: 0.3;
}
90% {
opacity: 0.3;
}
100% {
transform: translateY(-100px) rotate(360deg);
opacity: 0;
}
}