@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #c19a6b;
    --secondary-color: #1c1c1c;
    --text-color: #ffffff;
    --background-color: #111;
    --accent-color: #068cfa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header img {
    width: 90px;
    border-radius: 50px;
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav ul li {
    list-style: none;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: var(--accent-color);
}


.scroll-down {
    position: absolute;
    bottom: 100px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 30px;
    transition: 0.3s;
    cursor: pointer;
    animation: bounce 2s infinite;
}


.scroll-down:hover {
    color: var(--accent-color);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 115vh;
    text-align: center;
    background: url('image/fond.jpg') no-repeat center center/cover;
    position: relative;
}

/* edit connexion employée */

.login-container {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    margin-top: 20px;
    margin-left: 600px;
    color: var(--text-color);
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid black;
    border-radius: 10px;
}

.login-btn, .close-btn, button {
    background: var(--background-color);
    color: var(--text-color);
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.close-btn {
    background: var(--background-color);
    color: var(--text-color);
}

.login-btn:hover, .close-btn:hover {
    background: #0db307c9;
}

.close-btn:hover, button:hover{
    background: #c82333;
}

/* dashbord edits */

    .dashboard-container {
        background: var(--primary-color);
        padding: 20px 30px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px var(--secondary-color);
        text-align: center;
        width: 400px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        color: var(--text-color);
    }

    .dashboard-container a {
        cursor: pointer;
    }
    
    .button {
        background: #f50404;
        color: white;
        padding: 10px;
        width: 100%;
        border: none;
        border-radius: 15px;
        cursor: pointer;
        margin-top: 20px;
    }

/* edits services haut page */

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
}

.service-item {
    text-align: center;
    background: var(--background-color);
    padding: 25px;
    border-radius: 35px;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgb(0, 0, 0);
}


.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(241, 138, 3, 0.829);
}

.service-item img {
    width: 150px;
    border-radius: 100px;
}

/* edits box events /clients */
.bests-items, .all-clients {
    text-align: center;
    padding: 50px 20px;
}

/* edits title */
.section-title {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

/* edits description Title*/
.section-description {
    text-align: center;
    color: #bbb;
    margin-bottom: 20px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* edits evenements */
.best-editions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.edition-box {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .3s;
    cursor: pointer;
}

.edition-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(241, 138, 3, 0.829);
}

.edition-box:active {
    transform: scale(1.45);
}

.edition-box img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.name {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.legend {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.event-description {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    max-width: 300px;
}

/* edits clients */
.client-box {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .1s;
    cursor: pointer;
}

.client-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(241, 138, 3, 0.829);
}

.client-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 35%;
    margin-bottom: 10px;
    border: 4px solid var(--primary-color);
}
.client-box:active {
    transform: scale(1.5);
}

.client-details {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    max-width: 200px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.client-box {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}


.name2 {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* edits prix */
.tarifs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.nos-tarif {
    text-align: center;
    color: #bbb;
    margin-bottom: 20px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}

.tarif-box img {
    width: 400px;
    height: 600px;
    /* object-fit: cover; */
    border-radius: 5%;
    margin-bottom: 10px;
    border: 4px solid var(--primary-color);
    transition: transform .1s;
    cursor: pointer;
}

.tarif-box img:hover {
    transform: scale(1.7);
}

/* bas de page */
.contacte {
    text-align: center;
    padding: 50px 0;
}

.contacter {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.contacter:hover {
    background: var(--accent-color);
    color: var(--background-color);
}



.footer {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}



.footer-logo {
    width: 100px;
    margin-bottom: 15px;
    border-radius: 50px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.footer-socials a {
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--accent-color);
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}



.Dev {
    color: var(--accent-color);
}


.dev2 {
    color: rgba(100, 11, 184, 0.836);
}