/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    width: 120px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #007BFF;
}

/* Hero Section */
/* Hero Section with Shapes */
.hero {
    position: relative;
    height: 80vh;
    background: radial-gradient(circle at top left, #4988ec, #1d3557);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    z-index: 2;
}

.hero p {
    font-size: 1.5rem;
    z-index: 2;
}

/* Shapes Container */
.hero .shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Individual Shapes */
.shape {
    position: absolute;
    border-radius: 50px;
    filter: blur(40px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

/* Specific Shape Styles */
.shape1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    top: 10%;
    left: 5%;
}

.shape2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    top: 50%;
    left: 70%;
}

.shape3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6a0dad, #ff00ff);
    top: 70%;
    left: -100px;
}

.shape4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #00ff00, #00ff88);
    top: 20%;
    left: 80%;
}

/* Make it responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .shape {
        filter: blur(30px);
    }
}

/* Story, Vision, Contact Sections */
.story, .vision, .contact {
    padding: 60px 10%;
    background: white;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.story h2, .vision h2, .contact h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.story p, .vision p, .contact p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    font-size: 0.9rem;
    margin-top: 40px;
}
footer{
    a{
        color: blue;
    }
}

.screenshots{
    width: 30%; /* Full width */
    height: auto;
}

#loginp{
    float: left;
    width: 56%;
    /*margin-top: 10%;*/
    font-size: 20px;
    margin-right: 10%;
    text-align: justify;
}
#profile1p{
    float: right;
    width: 50%;
    /*margin-top: 5%;*/
    font-size: 20px;
    /*margin-left: 10%;*/
    text-align: justify;
}
#profile2p{
    float: left;
    width: 50%;
    /*margin-top: 3%;*/
    font-size: 20px;
    margin-right: 10%;
    text-align: justify;
}

#supprimerDiv {
    display: flex;
    justify-content: space-between; /* Ensures even spacing */
    align-items: center; /* Aligns images in the center */
    gap: 20px;

}

Responsive Design @media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .story, .vision, .contact {
            padding: 40px 5%;
    }
}
@media (max-width: 480px) {
    #supprimerDiv{
        display: block;
        text-align: center;
    }
    #loginp{
        width: 100%;
        font-size: 1.2rem;
    }
    .screenshots{
        width: 100%;
        height: auto;

    }
    #profile1p {
        float: none;
        width: 100%;
        font-size: 1.2rem;    }

    #profile2p {
        float: none;
        width: 100%;
        font-size: 1.2rem;    }
}



