@import url("https://fonts.googleapis.com/css2?family=Irish+Grover&family=Jost:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lobster+Two");

* {
    margin: 0 ;
}

.container {
    position: relative;
    z-index: 0;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.pulse {
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 30rem;
}

.pulse circle {
    fill: #7A6263;
    transform: scale(0);
    opacity: 0;
    transform-origin: 50% 50%;
    animation: pulse 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.pulse circle:nth-child(2) {
    fill: #9FC2CC;
    animation: pulse 2s 0.75s cubic-bezier(0.5, 0.5, 0, 1);
}

.pulse circle:nth-child(3) {
    fill: #EEC8E0;
    animation: pulse 2s 1.5s cubic-bezier(0.5, 0.5, 0, 1);
}

@keyframes pulse {
    25% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
    }
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 96px;
    padding: 55px;
}

h2 {
    font-size: 48px;
    margin-top: 10%;
    text-align: center;
}
.titre {
    margin-bottom: 3%;
}

.titre-h2 {
    margin-top: 15%;
}

.hrtitre {
    margin: 0 auto; /* Centre horizontalement */
    width: 20%; /* Définit la largeur souhaitée */
    border: 2px solid #7A6263; /* Conserve la bordure définie */
    margin-bottom: 8%;
}

.hrtitre2 {
    margin: 0 auto; /* Centre horizontalement */
    width: 20%; /* Définit la largeur souhaitée */
    border: 2px solid #7A6263; /* Conserve la bordure définie */
    margin-bottom: 3%;
}

h1,
h2 {
    font-family: "Irish Grover";
}

h3 {
    font-family: "Jost";
    font-size: 12px;
    color: #ffffff;
    background-color: #000000;
    padding: 5px 10px;
    border-radius: 25px;
}
.overlay-text h4 {
    font-family: "Jost";
    font-size: 40px;
}

.overlay-text p {
    font-size: 18px;
}

hr {
    margin: 5% 0 50% 0;
    border: 2px solid #7A6263;
}

p {
    font-size: 24px;
    font-family: "Jost";
}

a {
    text-decoration: none;
    color: #ffffff;
}

body {
    background-color: #d3d3d3;
}

.button {
    display: inline-block;
    font-family: "Jost";
    margin-top: 20px;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.button:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9FC2CC;
    border-radius: 10rem;
    z-index: -2;
}

.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgb(79.5772727273, 63.9227272727, 64.575);
    transition: all 0.7s;
    border-radius: 10rem;
    z-index: -1;
}

.button:hover {
    color: #ffffff;
}

.button:hover:before {
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

nav {
    display: flex;
    justify-content: center;
    gap: 6%;
}

.sticky {
    position: fixed;
    align-items: center;
    top: 0;
    z-index: 1000;
    margin-top: 20px;
    width: 520px;
}

.nav {
    display: flex;
    justify-content: center;
    background-color: #000000;
    padding: 5px 15px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.nav--pink {
    background-color: #EEC8E0;
}

.nav--brown {
    background-color: #7A6263;
}

.nav--blue {
    background-color: #9FC2CC;
}

main {
    margin: 0 auto;
    max-width: 1600px;
}

.about-me {
    display: flex;
    justify-content: space-between;
}

.about-me-text {
    max-width: 47%;
}

.about-me-text p {
    margin-bottom: 25px;
}

.img {
    max-height: 400px;
    border-radius: 20px;
}

.skills {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    justify-items: center;
    align-items: center;
    gap: 10%;
}

.skills-img {
    max-width: 40%;
    transition: transform 2s ease;
    cursor: pointer;
}

.skills-img:hover {
    transform: rotate(360deg);
}

.projet {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4%;
}

.projet-lr .image-container {
    position: relative;
    height: 80%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.projet-lr .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.projet-lr .image-container img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.projet-lr .image-container .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(122, 98, 99, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.image-container:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}
.overlay-text {
    display: flex;
    flex-direction: column;
}

.contact {
    display: grid;
    grid-template-columns: repeat(1, 3fr);
    margin: 0 auto;
    max-width: 500px;
}

.contact .button {
    text-align: center;
}

.contact input {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #ffffff;
}

.contact textarea {
    color: #ffffff;
    background-color: #000000;
    border-radius: 5px;
    font-family: "Jost";
    padding: 10px;
}

footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #000000;
    padding: 70px 30px;
    border-radius: 25px 25px 0 0;
    margin-top: 10%;
}

footer p {
    color: #ffffff;
}

.icone {
    display: flex;
    justify-content: center;
    gap: 4%;
}

.cercles {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.cercles--pink {
    background-color: #EEC8E0;
}

.cercles--blue {
    background-color: #9FC2CC;
}

.cercles--brown {
    background-color: #7A6263;
}

.cercles i {
    display: flex;
    justify-content: center;
}

.cercles a {
    display: flex;
    justify-content: center;
    margin-top: 25%;
    color: #000000;
}

#right {
    text-align: right;
}

textarea {
    resize: vertical;
}

@media (max-width: 600px) {
    main {
        margin: 0 auto;
        max-width: 350px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-me {
        display: grid;
        grid-template-columns: repeat(1, 2fr);
    }
}

@media (max-width: 600px) {
    .about-me-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .skills {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5%;
    }
}

@media (max-width: 600px) {
    .skills-img {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    h2 {
        margin-top: 40%;
    }
}

@media (max-width: 600px) {
    .overlay-text h4 {
        font-size: 16px !important;
    }

    .overlay-text p {
        font-size: 10px !important;
    }

    .overlay-text .button {
        margin-top: 3px;
        padding: 0.5rem 0.75rem;
    }
}

.overlay-text p {
    font-size: 18px;
}

@media (max-width: 600px) {
    .titre-h2 hr {
        margin-bottom: 70px;
    }
}

@media (max-width: 600px) {
    .titre-h2--contact h2 {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .titre-h2--contact hr {
        display: block;
    }
}

@media (max-width: 600px) {
    .projet {
        display: grid;
        grid-template-columns: repeat(1, 2fr);
        gap: 5%;
    }
}

@media (max-width: 600px) {
    .projet-lr {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
    .projet-lr img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    footer {
        display: grid;
        grid-template-columns: repeat(1, 3fr);
        gap: 20%;
        padding-top: 30px;
    }
}

@media (max-width: 600px) {
    footer #right {
        text-align: center;
    }
}

/*# sourceMappingURL=style.css.map */