
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f3f0ff;
    color: #2d004d;
}


/* navigation vr purple */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    /* purple shadow*/
    box-shadow:0 2px 20px rgba(255, 0, 127, 0.1);
    border-bottom: 2px solid #6a5acd;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d004d; 
}

.logo span {
    color: #6a5acd; 
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #2d004d;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: 0.3s;
}

/* Animation of the line under the links */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #6a5acd; 
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #6a5acd;
    text-shadow: 0 0 5px rgba(106, 90, 205, 0.3);
}


.card h3 {
    color: #6a5acd;
}
/* Style of vedio section */
.vedio {
    padding: 60px 5%;
    background-color: #f9f7ff; 
    text-align: center;
}

.desc {
    color: #6a5acd;
    margin-bottom: 30px;
    font-style: italic;
}

/* vedio card  */
.wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 90, 205, 0.2); 
    border: 5px solid white; 
}

video {
    width: 100%;
    display: block;
}

.logostyle {
    position: relative;
    padding-top: 50px; 
    margin-top: 120px; 
}

.logocircle {
    position: absolute;
    top: -40px; /* Fait monter le logo au-dessus du bord */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(106, 90, 205, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #6a5acd;
}

.logocircle img {
    width: 80%; 
    height: auto;
}
