/* -------------------- /
Reset
---------------------- */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

/* ---------------------
#Fonts
----------------------*/
@font-face{
    font-family: 'Nexa-Heavy';
    src: url('Nexa-Heavy.ttf') format('truetype');
}

@font-face {
    font-family: 'NexaBold';
    src: url('NexaBold.otf') format('truetype');
}

@font-face{
    font-family: 'Nexa-ExtraLight';
    src: url('Nexa-ExtraLight.ttf') format('truetype');
}

/* -------------------- /
Headings
---------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nexa-Heavy';
}

.padding{
    padding: 30px 100px;
}

/* Media query */
@media screen and (max-width: 1030px) {
    .padding {
        padding: 30px 60px;
    }
}

@media screen and (max-width: 540px) {
    .padding {
        padding: 30px 20px;
    }
}

/*---------------------------/
#Title
/-------------------------- */
.title {
    margin-bottom: 30px;
}

.title div {
    display: flex;
    align-items: center;
    gap: 8px;
    -webkit-column-gap: 8px;
}

.title div h4 {
    font-size: 15px;
    color: #1977cc33;
    font-family: 'Nexa-Heavy';
    background: linear-gradient(to left, #ededed, #ce6a14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title div p {
    padding: 0.3px;
    width: 80px;
    background-color: #ededed;
}

.title h2 {
    font-size: 35px;
    color: #ededed;
}

/* ---------------------
#Body
---------------------- */
html{
    height: 100%;
}

body {
    color: #ededed;
    font-size: 16px;
    position: relative;
    font-family: 'Nexa-ExtraLight';
    background: radial-gradient(circle at center, #262626 0%, #262626 100%);
}

body::before{
    content: '';
    position: fixed;
    bottom: 120px;
    left: 48%;
    transform: translateX(-50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, #f77e1463 0%, transparent 60%);
    opacity: 0.3;
    filter: blur(100px);
}

body::after{
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, #ffffff05 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.no-scroll{
    overflow: hidden;
}

/* ---------------------
#Hero section
---------------------- */
.hero-section{
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #383838db, #38383867), url('../images/Amazon.png') no-repeat;
    background-size: contain;
    background-position: right;
    z-index: 1000;
}

.hero-container {
    z-index: 1;
}

.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    -webkit-column-gap: 20px;
    z-index: 1;
}

/* .hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 35%, #f083233f 8px, transparent 9px),
        radial-gradient(circle at 80% 40%, #f083233f 8px, transparent 9px),
        radial-gradient(circle at 50% 80%, #f083233f 8px, transparent 9px),
        radial-gradient(circle at 50% 10%, #f083233f 8px, transparent 9px),
        radial-gradient(circle at 48% 55%, #f0832405 130px, transparent 9px);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
} */

.logo img{
    width: 80px;
} 

.hero-informations .logo img{
    animation: animate 2s linear infinite;
}

@keyframes animate {
    0% {
        transform: translateY(-7px);
    }
    50% {
        transform: translateY(7px);
    }
}

.hero-info{
    color: #ededed;
    font-style: italic;
}

.hero-info h1{
    font-size: 64px;
    margin-top: 20px;
    background: linear-gradient(to left, #ededed, #ce6a14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-info div{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-info div p{
    display: flex;
    align-items: center;
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    gap: 10px;
    -webkit-column-gap: 10px;
    border-left: 2px solid #ffffff15;
    border-bottom: 2px solid #ffffff15;
    padding: 6px 6px;
}

.hero-info div p i{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #ce6a14;
    background-color: #262626;
    -webkit-animation: pulse 2s infinite;
    animation: pulse520 1.5s infinite;
}

@keyframes pulse520 {
    0% {
        box-shadow: 0 0 0 0 #c4dae92d;
    }
    70% {
        box-shadow: 0 0 0 7px #da674400;
    }
    100% {
        box-shadow: 0 0 0 0 #da674400;
    }
}

.hero-nav{
    display: flex;
    align-items: center;
}

.hero-nav ul{
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    padding: 5px 5px;
    border-radius: 5px;
    gap: 5px;
    -webkit-column-gap: 5px;
    background-color: #262626;
    border: 1px solid #ffffff15;
}

.hero-nav ul li a{
    color: #ededed;
    font-family: 'Nexa-ExtraLight';
}

.hero-nav ul li{
    padding: 10px 18px;
    border-radius: 3px;
    background-color: #7978781a;
}

.nav-active{
    border-radius: 5px;
    padding: 8px 18px;
    border: none !important;
    background-color: #ce6a14 !important;
}

/* Menu, Overlay and Exit icon */
.menu{
    display: none;
}

.menu-icon{
    font-size: 24px;
    color: #ce6a14;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    background-color: #262626;
    border: 2px solid #ffffff15;   
}

.menu-home{
    position: absolute;
    top: 20px;
    right: 60px;
    background-color: #262626;
}

.overlay {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000091;
    backdrop-filter: blur(10px);
    z-index: 999;
    
}

.overlay.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.header-exit-icon{
    cursor: pointer;
    position: fixed;
    font-size: 24px;
    color: #ce6a14;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    background-color: #262626;
    border: 2px solid #ffffff15;
}

.header-exit-icon.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
    right: 60px;
    top: 25px;
}

/* cursor */
.cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid #b6641d;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    border: 1px solid #b6641d;
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

/* Media query */
@media screen and (max-width: 830px){
    .hero-info h1{
        font-size: 50px;
    }
}

@media screen and (max-width: 490px){
    .hero-info div{
       grid-template-columns: 1fr;
    }
}

@media screen and  (max-width: 655px){
    .hero-section{
        background-position: left;
        background-size: cover;
    }
}

@media screen and (max-width: 480px){
    .hero-info h1{
        font-size: 40px;
    }

    .hero-info p{
        font-size: 17px;
    }
}

@media screen and (max-width: 400px){
    .hero-info h1{
        font-size: 35px;
    }
}

@media screen and (max-width: 500px) {
    .header-exit-icon.active {
        right: 20px;
    }
    .menu-home{
        right: 20px;
    }
}

/* ---------------------
#Header
---------------------- */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 100px;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #7978781a;
    background: radial-gradient(circle at center, #3a3a3a 0%, #2626265d 100%);
}

.header-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    -webkit-column-gap: 50px;
    z-index: 1;
}

.header-container::before{
    content: '';
    position: absolute;
    top: 0px;
    left: 5%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, #f77e1463 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(100px);
}

.header-container::after{
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, #ffffff05 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.header-container .logo img{
    width: 55px;
}

.header-container .hero-nav li a{
    font-size: 15px;
}

/* Media query */
@media screen and (max-width: 1030px) {
    .header-container {
        padding: 10px 60px;
    }
}

@media screen and (max-width: 770px){
    .header-container .logo img{
        width: 60px;
    }

    .hero-nav ul {
        position: fixed;
        z-index: 1000;
        width: 50%;
        height: 100vh;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 10px 10px;
        justify-content: center;
        border-radius: 0;
        border-right: 2px solid #ffffff15;
        transform: translateX(-120%);
    }

    .hero-nav ul.active {
        transform: translateX(0);
    }

    .menu {
        display: initial;
    }
}

@media screen and (max-width: 540px) {
    .header-container {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 490px){
    .hero-nav ul{
        width: 65%;
    }
}

/* ---------------------
#Genearl section
---------------------- */
.general-section{
    display: flex;
}

.general-section-content{
    width: 100%;
    z-index: 1;
    position: relative;
}

/* ---------------------
#About section
---------------------- */
.profile-presentation {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profile-presentation{
    height: 100vh;
    display: flex;
    align-items: center;
}

.presentation-content{
    display: grid;
    grid-template-columns: 50% 50%;
}

.profile-textbox {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-style: italic;
    gap: 20px;
    -webkit-column-gap: 20px;
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    background-color: #7978780c;
    border: 1px solid #7978780c;
    overflow: hidden;
    z-index: 0;
}

.profile-textbox::before{
    content: "";
    width: 190px;
    height: 190px;
    top: 210px;
    left: 70%;
    border-radius: 50%;
    position: absolute;
    filter: blur(1px);
    border: 15px solid #a1a1a13d;
    transition: all 0.8s ease;
    z-index: -1;
}

.profile-textbox h1{
    font-size: 24px;
    background: linear-gradient(to right, #ce6a14, #ededed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-textbox p{
    color: #ededed;
}

.profile{
    position: relative;
    overflow: hidden;
    background-color:  #383838;
}

.profile::before{
    content: "";
    width: 80px;
    height: 150px;
    top: 0px;
    left: 75%;
    position: absolute;
    filter: blur(1px);
    background-color: #ce6a14;
}

.profile img{
    width: 100%;
    height: 400px;
    object-fit: contain;
}

/* Media query */
@media screen and (max-width: 1021px) {
    .presentation-content{
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .profile-textbox h1{
        font-size: 20px;
    }
}

@media screen and (max-width: 850px){
    .text-content {
        padding: 20px 30px;
    }
}

@media screen and (max-width: 850px){
    .presentation-content{
        display: flex;
        flex-direction: column-reverse;
        
    }

    .profile-textbox::before{
        top: 90px;
        left: 60%;
    }

    .profile-textbox{
        padding: 25px 25px;
    }

    .profile img{
        height: 280px;
    }

    .text-content h1{
        font-size: 18px;
    }

    .text-content {
        font-size: 15px;
    }
}

@media screen and (max-width: 500px){
    .profile-textbox::before{
        top: 160px;
        left: 50%;
    }

    .profile-presentation{
        height: fit-content;
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

/* ---------------------
#Skills section
---------------------- */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    -webkit-column-gap: 40px;
}
  
.skills-column {
    flex: 1;
}
  
.skill {
    margin-bottom: 15px;
}
  
.skill span {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}
  
.bar {
    width: 100%;
    height: 18px;
    position: relative;
    overflow: hidden;
    background: #c4dae90c;
}
  
.bar-fill {
    background: #181717ab;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 0;
    color: #ce6a14;
    font-size: 12px;
    padding-right: 5px;
    padding-top: 3px;
    transition: width 2s ease;
}

/* Media query */
@media screen and (max-width: 650px) {
    .skills-container{
        display: flex;
        flex-direction: column;
        gap: 0px;
    -webkit-column-gap: 0px;
    }
}

/* ---------------------
#Technologies
---------------------- */
.technologies{
    margin-top: 80px;
}
.tech-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    -webkit-column-gap: 10px;
}

.technology{
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 5px;
    gap: 10px;
    -webkit-column-gap: 10px;
    background-color: #c4dae90c;
    transition: all ease-in 0.4s;
}

.technology:hover{
    background-color: #181717ab;
}

.technology i{
    font-size: 20px;
}

/* Media query */
@media screen and (max-width: 980px) {
    .tech-container{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 720px) {
    .tech-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 470px) {
    .tech-container{
        display: grid;
        grid-template-columns: 1fr;
    }
}
/* ---------------------
#Languages
---------------------- */
.languages{
    margin-top: 80px;
}

/*----------------------- /
#Resume
/----------------------- */
.timeline-head{
    margin-top: 100px;
}

.timeline{
    position: relative;
    padding-bottom: 30px;
}

.timeline::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    z-index: -1;
    margin-left: -3px;
    animation: moveline 4s linear forwards;
    background: linear-gradient(to left, #ffffff3d, #f5ae6f21);
}

@keyframes moveline{
    0%{
        height: 0;
    }
    100%{
        height: 100%;
    }
}

.container{
    position: relative;
    width: 50%;
    opacity: 0;
    animation: movedown 1s linear forwards;
}

@keyframes movedown{
    0%{
        opacity: 1;
        transform: translateY(-20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.timeline-icon{
    width: 50px;
    height: 50px;
    z-index: 1;
    right: -22px;
    top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    background-color: #383838ea;
}

.timeline-icon i{
    font-size: 20px;
    background: linear-gradient(to left, #ce6a14, #f5ad6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.right-container .timeline-icon{
    left: -26px;
}

.left-container{
    left: 0;
    padding-right: 40px;
}

.right-container{
    left: 50%;
    padding-left: 40px;
}

.text-box{
    display: flex;
    flex-direction: column;
    padding: 25px 35px;
    background: #38383894;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}

.text-box h2{
    display: flex;
    background: linear-gradient(to left, #ededed, #ce6a14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-box small{
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 12px 30px; 
    border-radius: 4px;
    width: fit-content;
    font-weight: 900;
    position: relative;
    background: #ce6a14;
    font-family: 'NexaBold';
}

.text-box small::before{
    position: absolute;
    content: '';
    width: 24px; 
    height: 24px;  
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #2e2e2e -10%, #383838 50%, #ce6a14 50%, #ce6a14 60%);
    border-radius: 0 0 8px 0;
    box-shadow: 4px 4px 4px #38383894;
}

.left-container-arrow{
    width: 0;
    height: 0;
    position: absolute;
    z-index: 1;
    top: 28px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #38383894;
    right: -12px;
}

.right-container-arrow{
    width: 0;
    height: 0;
    position: absolute;
    z-index: 1;
    top: 28px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #38383894;
    left: -12px;
}

/* Media query */
@media screen and (max-width: 730px){
    .timeline::after{
        left: 8px;
    }

    .container{
        width: 100%;
        padding-left: 45px;
        padding-right: 0px;
        margin-bottom: 15px;
    }

    .text-box small{
        margin-bottom: 10px;
    }

    .right-container{
        left: 0;
    }

    .left-container .timeline-icon, .right-container .timeline-icon{
        left: -20px;
    }

    .left-container-arrow{
        border-right: 15px solid transparent;
        border-left: 0;
        left: -15px;
    }

    .left-container-arrow{
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-right: 15px solid #38383894;
        left: -14px;
    }
}

/*----------------------- /
#Portfolio
/----------------------- */
.portfolio{
    margin-top: 100px;
}

.list-items ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-column-gap: 10px;
}

.list-items ul li {
    cursor: pointer;
    padding: 10px 25px;
    border-radius: 2px;
    transition-delay: 0s;
    transition: 0.2s ease-in-out;
    background-color: #ffffff0a;
    border: 1px solid #ffffff15;
}

.list-items ul li.activ {
    transition-delay: 0s;
    transition: 0.2s ease-in-out;
    border-bottom: 3px solid #ce6a14;
}

.portfolio-content{
    margin-top: 35px;
}

.portfolio-item{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    gap: 12px;
    -webkit-column-gap: 12px;
}

.portfolio-item-content{
    position: relative;
}

.portfolio-item-content img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    transition: all ease-in-out 0.5s;
}

.portfolio-info {
    position: absolute;
    opacity: 0;
    left: 18px;
    right: 18px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all ease-in-out 0.3s;
    background: #ffffffbe;
    color: #383838;
    padding: 12px 15px;
    border-radius: 4px;
}

.portfolio-info p {
    font-weight: 600;
}

.portfolio-info .preview-link{
    color: #383838;
}

.portfolio-info .preview-link:hover {
     color: #ce6a14;
}

.portfolio .portfolio-item-content:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}

.portfolio-item-content:hover img {
    filter: grayscale(0%);
}

.design{
    display: none;
}

.logos{
    display: none;
}

/* Media query */
@media screen and (max-width: 950px) {
    .portfolio-item{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 655px) {
    .list-items ul{
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 650px) {
    .portfolio-item{
        grid-template-columns: 1fr;
    }
}

/*----------------------- /
#Contact
/----------------------- */
.contact{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact .contact-info .infos {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    -webkit-column-gap: 10px;
}

.contact .contact-info .infos div {
    display: flex;
    flex-direction: column;
}

.contact .contact-info .infos div a {
    font-size: 16px;
    font-weight: 800;
    color: #ce6a14;

}

.contact .contact-info .infos h3{
    font-size: 16px;
}

.contact .contact-info .infos i {
    display: flex;
    width: 55px;
    height: 55px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ce6a14;
    background-color: #38383894;
    border: 1px solid #38383894;
}

.contact .contact-container {
    width: 100%;
    display: flex;
    gap: 40px;
    -webkit-column-gap: 40px;
}

.contact input, textarea {
    border: none;
    outline: none;
    padding: 18px 15px;
    width: 100%;
    margin-top: 15px;
    border-radius: 5px;
    background: #38383894;
    color: #ededed;
    font-family: 'Nexa-ExtraLight';
}

.contact .contact-input {
    flex: 1;
}

.contact .contact-input div {
    display: flex;
    gap: 15px;
    -webkit-column-gap: 15px;
}

.contact .contact-input .contact-btn {
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #ededed;
    margin: auto;
    font-weight: 600;
    margin-top: 10px;
    padding: 18px 40px;
    border-radius: 5px;
    background-color: #38383894;
    transition: all 1.5s;
    overflow: hidden;
    z-index: 1;
    font-family: 'Nexa-ExtraLight';
}

.contact .contact-input .contact-btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    background-color: #ce6a14;
    z-index: -1;
    transition: all ease-in 0.8s;
}

.contact .contact-input .contact-btn:hover::before {
    width: 160%;
    border: none;
}

/* Media query */
@media screen and (max-width: 950px) {
    .contact{
        height: 100%;
    }
    .contact .contact-container {
        display: flex;
        gap: 10px;
        flex-direction: column;
        -webkit-column-gap: 10px;
    }
}

@media screen and (max-width: 510px) {
    .contact .contact-input div {
        display: flex;
        gap: 0px;
        flex-direction: column;
        -webkit-column-gap: 0px;
    }
    .contact input,
    textarea {
        margin-top: 8px;
    }
}

@media screen and (max-width: 430px){
    .contact .contact-input .contact-btn{
        width: 100%;
        margin-top: 20px;
    }
}

/* ---------------------
#Footer
---------------------- */
footer{
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #38383894;
    gap: 10px;
    -webkit-column-gap: 10px;
}

footer h1{
    font-size: 30px;
    font-style: italic;
    background: linear-gradient(to left, #ededed, #ce6a14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main {
    display: flex;
    gap: 10px;
    -webkit-column-gap: 10px;
}

/* Icon styles */
.main a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #262626;
}

.main i {
    font-size: 18px;
    color: #ededed;
}

.main a:hover{
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.8s infinite;
}

@keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 #ffffff15;
    }
    70% {
        box-shadow: 0 0 0 10px #da674400;
    }
    100% {
        box-shadow: 0 0 0 0 #da674400;
    }
}

.compalight-sign{
    position: absolute;
    bottom: 0;
    font-style: italic;
    font-size: 14px;
    text-align: center;
    color: #ffffff70;
    border-radius: 6px;
    padding: 12px 30px;
    margin-bottom: 10px;
    background-color: #262626;
    border: 1px solid #ffffff15;
}

.home-sign, .page-sign{
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

.home-sign{
    position: absolute;
    bottom: -5px;
}

.page-sign{
    position: relative;
    margin-top: -32px;
}

.compalight-sign a{
    font-weight: 800;
    background: linear-gradient(to right, #ededed, #ce6a14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Media query */
@media screen and (max-width: 750px){
    .home-sign, .page-sign{
        width: 80%;
    }
}
@media screen and (max-width: 950px){
    .contact{
        margin-top: 0px;
    }
}
@media screen and (max-width: 475px){
    footer{
        padding: 25px 15px;
    }
    .compalight-sign{
        padding: 14px 12px;
    }
    .home-sign, .page-sign{
        font-size: 13px;
        width: 98%;
    }
}

@media screen and (max-width: 412px){
    .main a{
        width: 45px;
        height: 45px;
    }
    .main i {
        font-size: 16px;
        color: #ededed;
    }
    .page-sign{
        width: 110%;
    }
}

@media screen and (max-width: 390px){
    .home-signm .page-sign{
        width: 95%;
        font-size: 13px;
    }
}

/* ---------------------
#Erreur 404
---------------------- */
.error-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.error-content h1{
    font-size: 250px;
    background: url('../images/error.jpg') bottom no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    transform: skewY(-3deg);
}

.error-content span{
    color: #ededed;
    margin-top: -60px;
    font-weight: 800;
    transform: skewY(-3deg);
    /* background: linear-gradient(to left, #ededed, #ce6a14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.error-content a{
    color: #ededed;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #ce6a14;
    border-radius: 35px;
    transform: skewY(-3deg);
}

/* Success popup */

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.custom-modal-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    animation: bounceIn 0.6s ease;
    transform-origin: center;
}

.custom-modal-box .icon {
    font-size: 50px;
    margin-bottom: 10px;
    animation: pulse 1.2s infinite;
}

.custom-modal-box p {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.custom-modal-box button {
    padding: 13px 50px;
    border: none;
    background-color: #f08223;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-modal-box button:hover {
    background-color: #d56f1e;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}
