*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #ffffff, #00fcd3);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    background-color: #000;
    padding: 15px 20px;
    border-radius: 17px;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 300;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #00e5d2;
}

/* Content Layout */
.content {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

/* Left Section */
.left-section {
    flex: 1;
    padding-right: 20px;
    margin-top: 50px;
    margin-left: -5.5px;
}

.left-section h1 {
    font-size: 85px;
    font-weight: 500;
    color: #000;
    margin-bottom: 150px;
    line-height: 1;
}

.perfect-job {
    margin-top: 170px;
}

.perfect-job h3 {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.perfect-job p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
    max-width: 400px;
    font-weight: 550;
}

.contactbtn {
    background-color: #27FFE5;
    color: #000;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.contactbtn:hover {
    background-color: #27FFE5;
    transform: translateY(-3px);
}

/* Right Section */
.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}

/* Center Content */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: right;
    width: 100%;
    max-width: 600px;
    z-index: 10;
}

.collaborate-text {
    font-size: 47px;
    font-weight: 550;
    color: #000;
    text-align: right;
    margin-top: 100px;
}

/* Bouton de création */
.creations-btn-container {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin: 20px auto;
}

.creationsbtn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 17px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}

.creationsbtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.image-container {
    width: 300px;
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    background-color: #000;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceramist-title {
    font-size: 80px;
    font-weight: 500;
    color: #000;
    text-align: right;
    line-height: 1;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content {
        flex-direction: column;
    }

    .left-section, .right-section {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }

    .left-section h1 {
        margin-top: -50px;
        font-size: 70px;
    }

    .right-section {
        align-items: center;
    }

    .ceramist-title {
        text-align: center;
    }

    .center-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 40px auto;
    }
    .creationsbtn {
        background-color: #fff;
        color: #000;
        border: none;
        padding: 12px 40px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 17px;
        cursor: pointer;
        transition: all 0.3s;
        
    }

   
}


@media (max-width: 768px) {
    .navbar ul {
        padding: 12px 15px;
    }

    .navbar ul li {
        margin: 0 10px;
    }

    .navbar ul li a {
        font-size: 16px;
    }

    .left-section h1 {
        font-size: 60px;
    }

    .collaborate-text {
        font-size: 28px;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .ceramist-title {
        font-size: 50px;
    }


}

@media only screen and (min-width: 392px)  and (max-width: 480px) {


    .navbar ul {
        padding: 10px 15px;
    }

    .navbar ul li {
        margin: 0 5px;
    }

    .navbar ul li a {
        font-size: 14px;
    }

    .left-section h1 {
        font-size: 40px;
        margin-bottom: 300px;
        font-weight: 550;
    }

    .left-section{
        margin-top: 100px;
    }

    .collaborate-text {
        font-size: 22px;
    }

    .perfect-job h3 {
        font-size: 24px;
    }

    .perfect-job p {
        font-size: 16px;
    }

    .image-container {
        width: 330px;
        height: 330px;
        margin-top: 20px;
    }

    .ceramist-title {
        font-size: 40px;
    }

.center-content{
    margin-left: -12px;
}


.creationsbtn {
    background-color: #000000;
    color: rgb(255, 255, 255);
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 17px;
    cursor: pointer;
    transition: all 0.3s;
}


}






@media (max-width: 391px) {


  .navbar ul {
        padding: 10px 15px;
    }

    .navbar ul li {
        margin: 0 5px;
    }

    .navbar ul li a {
        font-size: 14px;
    }

    .left-section h1 {
        font-size: 60px;
        margin-bottom: 100px;
        font-weight: 500;
    }

    .left-section{
        margin-top: 80px;
    }

    .collaborate-text {
        font-size: 22px;
    }

    .perfect-job h3 {
        font-size: 24px;
    }

    .perfect-job p {
        font-size: 16px;
    }

    .image-container {
        width: 330px;
        height: 330px;
        margin-top: 20px;
    }

    .ceramist-title {
        font-size: 40px;
    }

.center-content{
    margin-left: -12px;
}

.creationsbtn {
    background-color: #000000;
    color: rgb(255, 255, 255);
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

.creationsbtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

}
























