Files
o-k-i.net/src/assets/css/styles.css
T

1191 lines
26 KiB
CSS
Raw Normal View History

2025-11-05 17:32:17 +04:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
2025-11-05 22:34:50 +04:00
/* Couleurs du logo OKI - Enrichies */
--or-oki: #FDB813; /* Or plus vibrant et chaud */
--noir-oki: #0D0D0D; /* Noir profond avec nuance chaude */
--vert-oki: #00D66C; /* Vert émeraude plus saturé */
--rouge-oki: #FF1654; /* Rouge corail plus vif */
--blanc-creme: #FFF8E7; /* Blanc crème plus chaud */
/* Palette Afrofuturiste Caribéenne */
--turquoise-caraibes: #00CED1; /* Bleu turquoise des Caraïbes */
--jaune-soleil: #FFD700; /* Jaune soleil éclatant */
--orange-flamme: #FF6B35; /* Orange chaleureux */
--violet-nuit: #6B2D5C; /* Violet nuit tropicale */
--bleu-ocean: #0077BE; /* Bleu océan profond */
2025-11-05 17:32:17 +04:00
/* Couleurs dérivées pour le design */
2025-11-05 22:34:50 +04:00
--noir-profond: #1A0F1A; /* Noir avec nuance violette */
--gris-sombre: #2D1B2E; /* Gris avec nuance chaude */
--or-clair: #FFE066; /* Or lumineux */
--vert-clair: #66FFAA; /* Vert lime vibrant */
--rouge-clair: #FF6B9D; /* Rose corail */
2025-11-05 17:32:17 +04:00
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
2025-11-05 22:34:50 +04:00
background:
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><circle cx="50" cy="50" r="30" fill="none" stroke="%23FDB813" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%2300D66C" stroke-width="1.5"/><circle cx="50" cy="50" r="10" fill="none" stroke="%23FF1654" stroke-width="1"/></svg>'),
linear-gradient(135deg, var(--noir-oki) 0%, var(--gris-sombre) 100%);
background-size: 200px 200px, 100%;
2025-11-05 17:32:17 +04:00
color: var(--blanc-creme);
min-height: 100vh;
overflow-x: hidden;
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 1rem 2rem;
background: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
transition: all 0.3s ease;
border-bottom: 2px solid var(--or-oki);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.8rem;
font-weight: 900;
2025-11-05 22:34:50 +04:00
background: linear-gradient(135deg, var(--or-oki), var(--jaune-soleil), var(--or-clair));
background-size: 200% 100%;
2025-11-05 17:32:17 +04:00
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
2025-11-05 22:34:50 +04:00
background-clip: text;
2025-11-05 17:32:17 +04:00
text-decoration: none;
2025-11-05 22:34:50 +04:00
animation: shimmer 4s ease-in-out infinite;
2025-11-05 17:32:17 +04:00
}
.logo-image {
filter: drop-shadow(0 0 8px rgba(232, 166, 37, 0.6))
drop-shadow(0 0 15px rgba(232, 166, 37, 0.4))
drop-shadow(0 0 25px rgba(232, 166, 37, 0.2));
transition: filter 0.3s ease;
}
.logo-with-glow:hover .logo-image {
filter: drop-shadow(0 0 12px rgba(232, 166, 37, 0.8))
drop-shadow(0 0 20px rgba(232, 166, 37, 0.6))
drop-shadow(0 0 35px rgba(232, 166, 37, 0.4));
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
color: var(--blanc-creme);
text-decoration: none;
transition: color 0.3s;
font-weight: 500;
}
.nav-links a:hover {
color: var(--or-oki);
}
.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}
.menu-toggle span {
width: 25px;
height: 3px;
background: var(--or-oki);
margin: 3px 0;
transition: 0.3s;
}
/* Hero Section */
.hero {
padding: 8rem 2rem 4rem;
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
2025-11-05 22:34:50 +04:00
background:
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300" preserveAspectRatio="none"><path d="M0,100 Q300,150 600,100 T1200,100 L1200,0 L0,0 Z" fill="%236B2D5C" opacity="0.1"/><path d="M0,180 Q300,130 600,180 T1200,180 L1200,0 L0,0 Z" fill="%2300CED1" opacity="0.08"/></svg>') bottom center / 100% 200px no-repeat,
linear-gradient(180deg, transparent 0%, rgba(107, 45, 92, 0.15) 100%);
2025-11-05 17:32:17 +04:00
}
.hero-content {
max-width: 1200px;
margin: 0 auto;
z-index: 2;
position: relative;
}
.hero h1 {
font-size: clamp(2rem, 6vw, 4rem);
font-weight: 900;
margin-bottom: 0.5rem;
line-height: 1.1;
animation: fadeInUp 0.8s ease;
}
.hero-subtitle {
font-size: clamp(1.5rem, 4vw, 2.5rem);
margin-bottom: 1rem;
color: var(--or-oki);
animation: fadeInUp 0.8s ease 0.1s both;
}
.accent-text {
2025-11-05 22:34:50 +04:00
background: linear-gradient(135deg, var(--or-oki), var(--orange-flamme), var(--rouge-oki));
background-size: 200% 100%;
2025-11-05 17:32:17 +04:00
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
2025-11-05 22:34:50 +04:00
background-clip: text;
animation: shimmer 5s ease-in-out infinite;
2025-11-05 17:32:17 +04:00
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
max-width: 700px;
animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-tags {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 2rem;
animation: fadeInUp 0.8s ease 0.3s both;
}
.tag {
padding: 0.5rem 1rem;
2025-11-05 22:34:50 +04:00
background: rgba(253, 184, 19, 0.25);
border-radius: 25px 15px 25px 15px; /* Forme organique asymétrique */
2025-11-05 17:32:17 +04:00
font-size: 0.9rem;
2025-11-05 22:34:50 +04:00
border: 2px solid var(--or-oki);
box-shadow: 0 4px 15px rgba(253, 184, 19, 0.2);
2025-11-05 17:32:17 +04:00
}
.cta-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
animation: fadeInUp 0.8s ease 0.4s both;
}
.btn {
padding: 1rem 2rem;
border: none;
2025-11-05 22:34:50 +04:00
border-radius: 30px 50px 30px 50px; /* Forme organique de galet */
2025-11-05 17:32:17 +04:00
font-size: 1.1rem;
2025-11-05 22:34:50 +04:00
font-weight: 700;
2025-11-05 17:32:17 +04:00
cursor: pointer;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
2025-11-05 17:32:17 +04:00
text-decoration: none;
display: inline-block;
2025-11-05 22:34:50 +04:00
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
2025-11-05 17:32:17 +04:00
}
.btn-primary {
2025-11-05 22:34:50 +04:00
background: linear-gradient(135deg, var(--or-oki), var(--jaune-soleil), var(--or-clair));
background-size: 200% 100%;
2025-11-05 17:32:17 +04:00
color: var(--noir-oki);
2025-11-05 22:34:50 +04:00
position: relative;
overflow: hidden;
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.5s ease;
}
.btn-primary:hover::before {
left: 100%;
2025-11-05 17:32:17 +04:00
}
.btn-primary:hover {
2025-11-05 22:34:50 +04:00
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 40px rgba(253, 184, 19, 0.5);
background-position: 100% 0;
2025-11-05 17:32:17 +04:00
}
.btn-secondary {
background: transparent;
color: var(--or-oki);
border: 2px solid var(--or-oki);
}
.btn-secondary:hover {
background: var(--or-oki);
color: var(--noir-oki);
}
/* Network Animation */
.network-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.1;
pointer-events: none;
}
.node {
position: absolute;
width: 4px;
height: 4px;
background: var(--or-oki);
border-radius: 50%;
animation: pulse 3s infinite;
}
/* Fediverse Services Section */
.fediverse {
padding: 4rem 2rem;
2025-11-05 22:34:50 +04:00
background:
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80" width="80" height="80"><path d="M0,40 L40,0 L80,40 L40,80 Z" fill="none" stroke="%2300D66C" stroke-width="1" opacity="0.05"/><circle cx="40" cy="40" r="15" fill="none" stroke="%23FDB813" stroke-width="0.5" opacity="0.05"/></svg>') 0 0 / 150px 150px,
var(--noir-profond);
2025-11-05 17:32:17 +04:00
}
.section-container {
max-width: 1200px;
margin: 0 auto;
}
.fediverse h2 {
font-size: 3rem;
margin-bottom: 1rem;
text-align: center;
}
.section-subtitle {
text-align: center;
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 3rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.service-card {
2025-11-05 22:34:50 +04:00
background: rgba(0, 214, 108, 0.15);
border: 3px solid var(--vert-oki);
border-radius: 35px 15px 35px 15px; /* Forme organique asymétrique */
2025-11-05 17:32:17 +04:00
padding: 2rem;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
2025-11-05 17:32:17 +04:00
position: relative;
overflow: hidden;
2025-11-05 22:34:50 +04:00
box-shadow: 0 10px 30px rgba(0, 214, 108, 0.2);
2025-11-05 17:32:17 +04:00
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
2025-11-05 22:34:50 +04:00
height: 5px;
background: linear-gradient(90deg, var(--vert-oki), var(--turquoise-caraibes), var(--or-oki));
background-size: 200% 100%;
animation: shimmer 3s ease-in-out infinite;
2025-11-05 17:32:17 +04:00
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 168, 84, 0.3);
background: rgba(0, 168, 84, 0.15);
}
.service-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
2025-11-05 22:34:50 +04:00
display: inline-block;
animation: floatOrganic 4s ease-in-out infinite;
2025-11-05 17:32:17 +04:00
}
.service-card h3 {
color: var(--or-oki);
margin-bottom: 0.5rem;
font-size: 1.8rem;
}
.service-platform {
color: var(--vert-oki);
font-size: 0.9rem;
margin-bottom: 1rem;
font-weight: 600;
}
.service-description {
margin-bottom: 1.5rem;
line-height: 1.6;
}
.service-link {
color: var(--or-oki);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}
.service-link:hover {
gap: 1rem;
color: var(--or-clair);
}
/* Web Projects Section */
.projects {
padding: 4rem 2rem;
2025-11-05 22:34:50 +04:00
background:
url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100"><rect x="10" y="10" width="30" height="30" fill="none" stroke="%23FF1654" stroke-width="1" opacity="0.04" transform="rotate(45 25 25)"/><rect x="60" y="10" width="30" height="30" fill="none" stroke="%23FDB813" stroke-width="1" opacity="0.04" transform="rotate(45 75 25)"/><rect x="10" y="60" width="30" height="30" fill="none" stroke="%2300CED1" stroke-width="1" opacity="0.04" transform="rotate(45 25 75)"/><rect x="60" y="60" width="30" height="30" fill="none" stroke="%2300D66C" stroke-width="1" opacity="0.04" transform="rotate(45 75 75)"/></svg>') 0 0 / 180px 180px,
linear-gradient(135deg, var(--noir-profond) 0%, var(--gris-sombre) 100%);
2025-11-05 17:32:17 +04:00
}
.projects h2 {
font-size: 3rem;
margin-bottom: 3rem;
text-align: center;
}
.project-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.project-card {
2025-11-05 22:34:50 +04:00
background: rgba(107, 45, 92, 0.2);
border-radius: 25px 40px 25px 40px; /* Forme organique */
padding: 2rem;
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
border: 3px solid transparent;
2025-11-05 17:32:17 +04:00
text-align: center;
display: block;
cursor: pointer;
2025-11-05 22:34:50 +04:00
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
2025-11-05 17:32:17 +04:00
}
.project-card:hover {
transform: translateY(-5px);
border-color: var(--or-oki);
box-shadow: 0 20px 40px rgba(232, 166, 37, 0.2);
}
.project-card h3 {
color: var(--or-oki);
margin-bottom: 0.5rem;
font-size: 1.5rem;
}
.project-domain {
color: var(--rouge-oki);
font-size: 0.9rem;
margin-bottom: 1rem;
font-family: monospace;
}
.project-icon {
font-size: 3rem;
margin-bottom: 1rem;
2025-11-05 22:34:50 +04:00
display: inline-block;
animation: breathe 3s ease-in-out infinite;
2025-11-05 17:32:17 +04:00
}
/* Mission Section */
.mission {
padding: 4rem 2rem;
background: var(--noir-profond);
text-align: center;
}
.mission h2 {
font-size: 3rem;
margin-bottom: 2rem;
}
.mission-text {
font-size: 1.3rem;
max-width: 800px;
margin: 0 auto 3rem;
line-height: 1.8;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-top: 3rem;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.value-card {
2025-11-05 22:34:50 +04:00
background: rgba(253, 184, 19, 0.1);
2025-11-05 17:32:17 +04:00
padding: 2rem;
2025-11-05 22:34:50 +04:00
border-radius: 30px 20px 30px 20px; /* Forme organique */
2025-11-05 17:32:17 +04:00
text-align: center;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
border: 3px solid rgba(253, 184, 19, 0.4);
box-shadow: 0 6px 20px rgba(253, 184, 19, 0.15);
2025-11-05 17:32:17 +04:00
}
.value-card:hover {
2025-11-05 22:34:50 +04:00
transform: translateY(-8px) rotate(2deg); /* Animation organique */
background: rgba(253, 184, 19, 0.2);
2025-11-05 17:32:17 +04:00
border-color: var(--or-oki);
2025-11-05 22:34:50 +04:00
box-shadow: 0 12px 35px rgba(253, 184, 19, 0.3);
2025-11-05 17:32:17 +04:00
}
.value-icon {
font-size: 3rem;
margin-bottom: 1rem;
2025-11-05 22:34:50 +04:00
display: inline-block;
animation: floatOrganic 5s ease-in-out infinite;
2025-11-05 17:32:17 +04:00
}
.value-card h3 {
color: var(--or-oki);
margin-bottom: 0.5rem;
font-size: 1.3rem;
}
/* Hosting Services Section */
.hosting {
padding: 4rem 2rem;
background: linear-gradient(135deg, var(--gris-sombre) 0%, var(--noir-profond) 100%);
}
.hosting-banner {
2025-11-05 22:34:50 +04:00
background: rgba(253, 184, 19, 0.15);
border: 3px solid var(--or-oki);
border-radius: 40px 20px 40px 20px; /* Forme organique */
padding: 2.5rem;
2025-11-05 17:32:17 +04:00
max-width: 900px;
margin: 0 auto 3rem;
text-align: center;
2025-11-05 22:34:50 +04:00
box-shadow: 0 10px 30px rgba(253, 184, 19, 0.2);
2025-11-05 17:32:17 +04:00
}
.hosting-banner h3 {
color: var(--or-oki);
font-size: 1.8rem;
margin-bottom: 1rem;
}
.hosting-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
margin: 2rem 0;
}
.hosting-feature {
display: flex;
align-items: center;
gap: 0.5rem;
}
.hosting-feature span {
color: var(--vert-oki);
font-size: 1.2rem;
}
/* Partners Section */
.partners {
padding: 4rem 2rem;
background: linear-gradient(135deg, var(--gris-sombre) 0%, var(--noir-profond) 100%);
}
.partners h2 {
font-size: 3rem;
margin-bottom: 1rem;
}
.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.partner-card {
2025-11-05 22:34:50 +04:00
background: rgba(107, 45, 92, 0.15);
border: 3px solid transparent;
border-radius: 35px 20px 35px 20px; /* Forme organique */
padding: 2.5rem;
2025-11-05 17:32:17 +04:00
text-align: center;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
2025-11-05 17:32:17 +04:00
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
align-items: center;
2025-11-05 22:34:50 +04:00
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
2025-11-05 17:32:17 +04:00
}
.partner-card:hover {
2025-11-05 22:34:50 +04:00
transform: translateY(-8px) rotate(-2deg); /* Animation organique */
border-color: var(--turquoise-caraibes);
box-shadow: 0 20px 45px rgba(0, 206, 209, 0.3);
2025-11-05 17:32:17 +04:00
}
.partner-logo-container {
width: 150px;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 50%;
padding: 1rem;
}
.partner-logo {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.partner-card h3 {
color: var(--or-oki);
margin-bottom: 1rem;
font-size: 1.5rem;
}
.partner-description {
line-height: 1.6;
margin-bottom: 1.5rem;
flex-grow: 1;
}
.partner-link {
color: var(--or-oki);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}
.partner-card:hover .partner-link {
gap: 1rem;
}
/* Support Section */
.support {
padding: 4rem 2rem;
background: var(--noir-profond);
text-align: center;
}
.support h2 {
font-size: 3rem;
margin-bottom: 2rem;
}
.support-options {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
margin-top: 2rem;
}
/* Contact Section */
.contact {
padding: 3rem 2rem;
background: rgba(0, 0, 0, 0.5);
}
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.contact-card {
text-align: center;
}
.contact-card h3 {
color: var(--or-oki);
margin-bottom: 1rem;
}
.contact-links {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.contact-links a {
color: var(--blanc-creme);
text-decoration: none;
transition: color 0.3s;
}
.contact-links a:hover {
color: var(--or-oki);
}
/* Footer */
footer {
padding: 2rem;
background: var(--noir-oki);
text-align: center;
border-top: 2px solid var(--or-oki);
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
}
/* Donation Styles */
.donation-amount {
display: flex;
align-items: center;
justify-content: center;
2025-11-05 22:34:50 +04:00
padding: 1.2rem;
background: rgba(253, 184, 19, 0.25);
border: 3px solid var(--or-oki);
2025-11-05 17:32:17 +04:00
color: var(--blanc-creme);
text-decoration: none;
2025-11-05 22:34:50 +04:00
border-radius: 25px 15px 25px 15px; /* Forme organique */
font-weight: 700;
2025-11-05 17:32:17 +04:00
font-size: 1.1rem;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
2025-11-05 17:32:17 +04:00
cursor: pointer;
2025-11-05 22:34:50 +04:00
box-shadow: 0 6px 20px rgba(253, 184, 19, 0.2);
2025-11-05 17:32:17 +04:00
}
.donation-amount:hover {
background: var(--or-oki);
color: var(--noir-oki);
2025-11-05 22:34:50 +04:00
transform: translateY(-5px) scale(1.05);
box-shadow: 0 10px 30px rgba(253, 184, 19, 0.5);
2025-11-05 17:32:17 +04:00
}
.donation-amount.monthly {
2025-11-05 22:34:50 +04:00
background: rgba(0, 214, 108, 0.25);
2025-11-05 17:32:17 +04:00
border-color: var(--vert-oki);
}
.donation-amount.monthly:hover {
background: var(--vert-oki);
color: var(--blanc-creme);
2025-11-05 22:34:50 +04:00
box-shadow: 0 10px 30px rgba(0, 214, 108, 0.5);
2025-11-05 17:32:17 +04:00
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
input[type="number"]:focus {
outline: none;
border-color: var(--or-oki);
background: rgba(255, 255, 255, 0.15);
}
/* Custom Donation Form */
.custom-donation-form {
display: flex;
gap: 0.5rem;
justify-content: center;
align-items: center;
max-width: 350px;
margin: 0 auto;
padding: 0 1rem;
}
.custom-amount-input {
padding: 0.8rem;
2025-11-05 22:34:50 +04:00
border: 3px solid var(--or-oki);
2025-11-05 17:32:17 +04:00
background: rgba(255, 255, 255, 0.1);
color: var(--blanc-creme);
2025-11-05 22:34:50 +04:00
border-radius: 20px 10px 20px 10px; /* Forme organique */
2025-11-05 17:32:17 +04:00
flex: 1;
min-width: 0;
font-size: 1rem;
}
.custom-amount-input-monthly {
border-color: var(--vert-oki);
}
.currency-symbol {
color: var(--blanc-creme);
font-size: 1rem;
white-space: nowrap;
flex-shrink: 0;
}
.custom-donation-btn {
padding: 0.8rem 1.2rem;
border: none;
2025-11-05 22:34:50 +04:00
border-radius: 20px 10px 20px 10px; /* Forme organique */
font-weight: 700;
2025-11-05 17:32:17 +04:00
cursor: pointer;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
2025-11-05 17:32:17 +04:00
white-space: nowrap;
flex-shrink: 0;
}
.custom-donation-btn-primary {
background: var(--or-oki);
color: var(--noir-oki);
}
.custom-donation-btn-secondary {
background: var(--vert-oki);
color: var(--blanc-creme);
}
2025-11-05 17:56:25 +04:00
/* Scroll Animations */
.fade-in-element {
opacity: 0;
transform: translateY(30px);
}
.fade-in-element.animate-in {
animation: fadeInUp 0.8s ease forwards;
}
2025-11-05 22:34:50 +04:00
/* Animations Organiques Afrofuturistes */
2025-11-05 17:32:17 +04:00
@keyframes fadeInUp {
from {
opacity: 0;
2025-11-05 22:34:50 +04:00
transform: translateY(40px) scale(0.95) rotate(-2deg);
2025-11-05 17:32:17 +04:00
}
to {
opacity: 1;
2025-11-05 22:34:50 +04:00
transform: translateY(0) scale(1) rotate(0deg);
2025-11-05 17:32:17 +04:00
}
}
@keyframes pulse {
0%, 100% {
2025-11-05 22:34:50 +04:00
opacity: 0.4;
2025-11-05 17:32:17 +04:00
transform: scale(1);
2025-11-05 22:34:50 +04:00
filter: hue-rotate(0deg);
}
33% {
opacity: 0.7;
transform: scale(1.3);
filter: hue-rotate(30deg);
}
66% {
opacity: 1;
transform: scale(1.6);
filter: hue-rotate(60deg);
}
}
@keyframes floatOrganic {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
25% {
transform: translateY(-15px) rotate(2deg);
2025-11-05 17:32:17 +04:00
}
50% {
2025-11-05 22:34:50 +04:00
transform: translateY(-25px) rotate(0deg);
}
75% {
transform: translateY(-15px) rotate(-2deg);
}
}
@keyframes shimmer {
0% {
background-position: -200% center;
}
100% {
background-position: 200% center;
}
}
@keyframes breathe {
0%, 100% {
transform: scale(1);
2025-11-05 17:32:17 +04:00
opacity: 1;
2025-11-05 22:34:50 +04:00
}
50% {
transform: scale(1.05);
opacity: 0.9;
2025-11-05 17:32:17 +04:00
}
}
/* Responsive */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.menu-toggle {
display: flex;
}
.hero h1 {
font-size: 2rem;
}
.hero-subtitle {
font-size: 1.5rem;
}
.hero p {
font-size: 1.1rem;
}
.cta-buttons {
flex-direction: column;
}
.btn {
width: 100%;
text-align: center;
}
.services-grid,
.project-cards {
grid-template-columns: 1fr;
}
/* Custom Donation Form Mobile */
.custom-donation-form {
gap: 0.4rem;
padding: 0 0.5rem;
max-width: 100%;
}
.custom-amount-input {
padding: 0.6rem 0.5rem;
font-size: 0.9rem;
min-width: 70px;
}
.currency-symbol {
font-size: 0.9rem;
}
.custom-donation-btn {
padding: 0.6rem 0.8rem;
font-size: 0.9rem;
}
}
@media (max-width: 380px) {
/* Very small screens */
.custom-donation-form {
gap: 0.3rem;
}
.custom-amount-input {
padding: 0.5rem;
font-size: 0.85rem;
}
.custom-donation-btn {
padding: 0.5rem 0.6rem;
font-size: 0.85rem;
}
}
2025-11-05 22:22:31 +04:00
/* Publics Section */
.publics {
padding: 4rem 2rem;
background: linear-gradient(135deg, var(--gris-sombre) 0%, var(--noir-profond) 100%);
}
.publics h2 {
font-size: 3rem;
margin-bottom: 1rem;
text-align: center;
}
.publics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.public-card {
2025-11-05 22:34:50 +04:00
background: rgba(107, 45, 92, 0.2);
border: 3px solid transparent;
border-radius: 40px 20px 40px 20px; /* Forme organique */
padding: 2.5rem;
2025-11-05 22:22:31 +04:00
text-align: center;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
2025-11-05 22:22:31 +04:00
display: flex;
flex-direction: column;
2025-11-05 22:34:50 +04:00
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
2025-11-05 22:22:31 +04:00
}
.public-card:hover {
2025-11-05 22:34:50 +04:00
transform: translateY(-10px) scale(1.02);
border-color: var(--turquoise-caraibes);
box-shadow: 0 25px 50px rgba(0, 206, 209, 0.4);
2025-11-05 22:22:31 +04:00
}
.public-icon {
font-size: 3.5rem;
margin-bottom: 1rem;
2025-11-05 22:34:50 +04:00
display: inline-block;
animation: breathe 4s ease-in-out infinite;
2025-11-05 22:22:31 +04:00
}
.public-card h3 {
color: var(--or-oki);
margin-bottom: 1rem;
font-size: 1.8rem;
}
.public-description {
margin-bottom: 2rem;
line-height: 1.6;
flex-grow: 1;
}
.public-benefits {
2025-11-05 22:34:50 +04:00
background: rgba(253, 184, 19, 0.15);
border-radius: 25px 15px 25px 15px; /* Forme organique */
2025-11-05 22:22:31 +04:00
padding: 1.5rem;
margin-bottom: 2rem;
text-align: left;
2025-11-05 22:34:50 +04:00
border: 2px solid rgba(253, 184, 19, 0.3);
2025-11-05 22:22:31 +04:00
}
.public-benefits h4 {
color: var(--or-oki);
margin-bottom: 1rem;
font-size: 1.1rem;
}
.public-benefits ul {
list-style: none;
padding: 0;
}
.public-benefits li {
margin-bottom: 0.5rem;
padding-left: 0.5rem;
}
.public-cta {
margin-top: auto;
}
.publics-footer {
text-align: center;
margin-top: 4rem;
2025-11-05 22:34:50 +04:00
padding: 2.5rem;
background: rgba(253, 184, 19, 0.15);
border-radius: 35px 20px 35px 20px; /* Forme organique */
border: 2px solid rgba(253, 184, 19, 0.3);
2025-11-05 22:22:31 +04:00
}
/* FAQ Section */
.faq {
padding: 4rem 2rem;
background: linear-gradient(135deg, var(--noir-profond) 0%, var(--gris-sombre) 100%);
}
.faq h2 {
font-size: 3rem;
margin-bottom: 1rem;
text-align: center;
}
.faq-container {
max-width: 800px;
margin: 3rem auto;
}
.faq-item {
2025-11-05 22:34:50 +04:00
background: rgba(255, 255, 255, 0.08);
border: 3px solid rgba(253, 184, 19, 0.3);
border-radius: 25px 15px 25px 15px; /* Forme organique */
margin-bottom: 1.5rem;
2025-11-05 22:22:31 +04:00
overflow: hidden;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
2025-11-05 22:22:31 +04:00
}
.faq-item:hover {
border-color: var(--or-oki);
2025-11-05 22:34:50 +04:00
transform: translateX(5px);
box-shadow: 0 8px 25px rgba(253, 184, 19, 0.3);
2025-11-05 22:22:31 +04:00
}
.faq-item.active {
border-color: var(--or-oki);
2025-11-05 22:34:50 +04:00
box-shadow: 0 10px 35px rgba(253, 184, 19, 0.4);
2025-11-05 22:22:31 +04:00
}
.faq-question {
width: 100%;
background: none;
border: none;
color: var(--blanc-creme);
padding: 1.5rem;
text-align: left;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.faq-question:hover {
color: var(--or-oki);
}
.faq-icon {
font-size: 1.5rem;
color: var(--or-oki);
transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 500px;
}
.faq-answer p {
padding: 0 1.5rem 1.5rem 1.5rem;
line-height: 1.8;
opacity: 0.9;
}
.faq-footer {
text-align: center;
margin-top: 3rem;
}
/* Engagement Section */
.engagement {
padding: 4rem 2rem;
background: var(--noir-profond);
}
.engagement h2 {
font-size: 3rem;
margin-bottom: 1rem;
text-align: center;
}
.engagement-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.engagement-card {
2025-11-05 22:34:50 +04:00
background: rgba(253, 184, 19, 0.15);
border: 3px solid var(--or-oki);
border-radius: 35px 20px 35px 20px; /* Forme organique */
padding: 2.5rem;
2025-11-05 22:22:31 +04:00
text-align: center;
2025-11-05 22:34:50 +04:00
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
box-shadow: 0 10px 30px rgba(253, 184, 19, 0.2);
2025-11-05 22:22:31 +04:00
}
.engagement-card:hover {
2025-11-05 22:34:50 +04:00
transform: translateY(-10px) rotate(1deg); /* Animation organique */
box-shadow: 0 25px 50px rgba(253, 184, 19, 0.4);
border-color: var(--jaune-soleil);
2025-11-05 22:22:31 +04:00
}
.engagement-icon {
font-size: 3rem;
margin-bottom: 1rem;
2025-11-05 22:34:50 +04:00
display: inline-block;
animation: floatOrganic 3.5s ease-in-out infinite;
2025-11-05 22:22:31 +04:00
}
.engagement-card h3 {
color: var(--or-oki);
margin-bottom: 1rem;
font-size: 1.5rem;
}
.engagement-card p {
margin-bottom: 1.5rem;
line-height: 1.6;
}
/* Responsive adjustments for new sections */
@media (max-width: 768px) {
.publics-grid,
.engagement-options {
grid-template-columns: 1fr;
}
.publics h2,
.faq h2,
.engagement h2 {
font-size: 2rem;
}
}