* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Libre Baskerville', serif;
    background: #0f172a;
    overflow-x: hidden;
    min-height: 100vh;

        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        font-style: normal;
            
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    position: relative;
    z-index: 10;
    background: #0f172a;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.nom {
    font-size: 1rem;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.nom:hover {
    color: #93c5fd;
}
.nom a {
    color: inherit;
}
.navigation {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.navigation a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 1rem;
    font-style: italic;
    transition: all 0.3s ease;
    position: relative;
}
.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #8bfad9);
    transition: width 0.3s ease;
}
.navigation a:hover {
    color: #60a5fa;
}
.navigation a:hover::after {
    width: 100%;
}
.principal {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    overflow: hidden;
}
.principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.principal-texte {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.titre {
    font-size: 8rem;
    font-weight: 400;
    line-height: 0.9;
    background: linear-gradient(135deg, #60a5fa 0%, #8bfad9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.titre2 {
    font-size: 7rem;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(135deg, #60a5fa 0%, #8bfad9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 450px;
}
.image-principal {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
}
.image-principal img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(96, 165, 250, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-principal img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 100px rgba(96, 165, 250, 0.3);
}
.creation {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, #0f172a 100%, #1e293b 0%);
    position: relative;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.titre-section {
    font-size: 3.5rem;
    text-align: center;
    background: linear-gradient(135deg, #60a5fa 0%, #8bfad9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.titre2-section {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-style: italic;
}
.grille-creation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.carte-creation {
    background: rgba(30, 41, 59, 0.5);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
    background-image: linear-gradient(163deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-radius: 20px;
    transition: all .2s;
}
.carte-creation:hover {
    transform: translateY(-10px);
    border-color: #60a5fa;
    box-shadow: 0px 0px 30px 1px #8bfad9;
}
.creation-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #1e293b;
    background-color: #1a1a1a;
    border-radius: 18px;
    transition: all .2s;
}
.creation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.carte-creation:hover .creation-image img {
    transform: scale(1.1);
    border-radius: 20px;
}
.creation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.9), #8bfad9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.carte-creation:hover .creation-overlay {
    opacity: 1;
}
.view-project {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.creation-contenu {
    padding: 1.8rem;
}
.creation-titre {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 0.8rem;
}
.creation-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.creation-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.tag {
    padding: 0.4rem 1rem;
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.contenu-voir-plus {
    text-align: center;
    margin-top: 2rem;
}
.btn-voir-plus {
    background: linear-gradient(135deg, #60a5fa 0%, #8bfad9 100%);
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-voir-plus:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}
.creation-sup {
    margin-top: 3rem;
    text-align: center;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.creation-sup.active {
    display: block;
    opacity: 1;
    transition: opacity 0.6s ease;
}
.galerie {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}
.galerie img {
    max-width: 300px; 
    height: auto; 
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.3s ease;
}
.galerie img:hover {
    transform: scale(1.05);
}
.section-competences {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.grille-competences {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.carte-competences {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    overflow: hidden;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all .2s;
}
.carte-competences:hover {
    transform: translateY(-10px);
    border-color: #60a5fa;
    box-shadow: 0px 0px 30px 1px #8bfad9;
}
.carte-competences h3 {
    color: #60a5fa;
    margin-bottom: 1rem;
}
.section-contact {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}
.contact-info p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
}
.contact-info a {
    color: #60a5fa;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.button {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background: #3d3a4e;
  background-size: 400%;
  color: #fff;
  border: none;
  cursor: pointer;
}
.button:hover::before {
  transform: scaleX(1);
}
.button-content {
  position: relative;
  z-index: 1;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(135deg, #60a5fa 0%, #8bfad9 100%);
  transition: all 0.475s;
}
.footer {
    background: #0f172a;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}
.footer p {
    color: #64748b;
    font-size: 0.9rem;
}
@media (max-width: 1200px) {
    .hero-title,
    .hero-subtitle {
        font-size: 6rem;
    }
    .hero-image {
        width: 40%;
    }
}
@media (max-width: 768px) {
    nav {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .hero {
        flex-direction: column;
        height: auto;
        padding: 2rem 1.5rem;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .hero-title,
    .hero-subtitle {
        font-size: 3.5rem;
    }
    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
    }
    .creations-section {
        padding: 3rem 1.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .creations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 500px) {
    nav {
        padding: 1rem 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .navigation {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        display: flex;
    }
    .principal {
        flex-direction: column;
        height: auto;
        padding: 1rem 0.5rem;
    }
    .principal-texte {
        max-width: 100%;
        text-align: center;
    }
    .titre,
    .titre2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .image-principal {
        position: static;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem auto;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .creation,
    .section-competences,
    .section-contact {
        padding: 2rem 0.5rem;
    }
    .container {
        max-width: 100%;
        padding: 0;
    }
    .titre-section {
        font-size: 2rem;
    }
    .titre2-section {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .grille-creation,
    .grille-competences {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .creation-image {
        height: 180px;
    }
    .creation-contenu {
        padding: 1rem;
    }
    .creation-titre {
        font-size: 1.1rem;
    }
    .creation-description {
        font-size: 0.85rem;
    }
    .creation-sup {
        display: none;
        opacity: 0;
        transition: opacity 0.6s ease;
    }
    .creation-sup.active {
        display: block;
        opacity: 1;
        transition: opacity 0.6s ease;
    }
    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
    .btn-voir-plus {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
    .galerie img {
        max-width: 100%;
    }
    .footer {
        padding: 1rem 0.5rem;
    }
    .footer p {
        font-size: 0.8rem;
    }
}
.progress_bar {
  height: 7px;
  background: #8bfad9;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}