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

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

a{
    color: inherit;
}

/* Header Section */
header {
    background-color: #cd3a0e; /* Rouge foncé */
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.logo img{
    width: 250px;
}

nav ul {
    list-style: none;
    display: flex;
    font-size: large;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    color: white;
    text-align: center;
    padding: 100px 0;
    
    background-image: url("/images/hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero h2 {
    font-size: xx-large;
    margin-bottom: 10px;
}

.hero p {
    font-size: large;
}

.hero img{
    max-height: 500px;
    max-width: 80%;
}

/* CTA Section */
.cta {
    background-color: #fff;
    text-align: center;
    padding: 50px 0;
}

.cta h3 {
    font-size: x-large;
    margin-bottom: 20px;
}
.cta p {
    font-size: large;
}

.cta .cta-link{
    display: flex;
    justify-content: center;
}

.cta .cta-link a{
    padding: 16px 30px;
    border-radius: 40px;
    color: white;
    background-color: black;
    font-size: 21px;
    font-weight: 800;
    text-decoration: none;
}


.cta form input[type="email"] {
    padding: 10px;
    width: 300px;
    max-width: 100%;
    margin-right: 10px;
    border: 1px solid #cd3a0e;
    border-radius: 5px;
}

.cta form button {
    padding: 10px 20px;
    background-color: #cd3a0e;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.socials {
    margin-top: 20px;
}

.socials a {
    margin: 0 10px;
    text-decoration: none;
    color: #cd3a0e;
    font-weight: bold;
}


/* Text*/

.container-text{
    width: 50%;
    font-size: large;
    padding: 50px 0px;
}

.container-text h3{
    margin-bottom: 20px;
}

.container-text p{
    margin-bottom: 10px;
}

.container-text ul{
    margin-left: 40px;
}


.img-wrapper{
    display: flex;
    justify-content: center;
}

.img-wrapper img{
    max-width: 600px;
    margin: 40px 0px;
}

/* Project*/
.project, .ozirma-details, .contact{
    background-color: #cd3a0e;
    color: #fff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #fff;
}

/* Media Queries for Mobile Devices */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}

@media screen and (max-width: 480px) {
    .cta form input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }

    .cta form button {
        width: 100%;
    }

    .socials a {
        display: block;
        margin-bottom: 10px;
    }
}
