/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    background-color: #121212; /* Fond sombre */
    color: #ddd; /* Texte clair */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #1c1c1c; /* Gris très sombre */
    color: #f39c12; /* Accent doré */
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-top: 5px;
}

/* Main Content */
main {
    padding: 50px 20px;
    text-align: center;
}

/* Sections */
section {
    margin-bottom: 40px;
    padding: 40px 20px;
    background-color: #2c2c2c; /* Gris plus clair */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

section h2 {
    font-size: 2.5em;
    color: #f39c12;
    margin-bottom: 15px;
}

section p {
    font-size: 1.1em;
    color: #bbb;
}

/* Links */
a {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #e67e22; /* Changement de couleur au survol */
}

/* Buttons */
button {
    background-color: #f39c12;
    color: #121212;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e67e22; /* Couleur orange au survol */
}










.contact-section {
    text-align: center;
    padding: 20px;
}

.toggle-form-btn {
    background-color: #0078D4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-form-btn:hover {
    background-color: #005bb5;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scaleY(0);
    transform-origin: top;
    height: 0;
    overflow: hidden;
    transition: transform 0.3s ease, height 0.3s ease;
}

.contact-form-wrapper.active {
    transform: scaleY(1);
    height: auto;
}

.contact-form .form-group {
    position: relative;
    margin: 15px 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0078D4;
    box-shadow: 0 0 5px rgba(0, 120, 212, 0.3);
    outline: none;
}

.contact-form label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: #0078D4;
}

.button.alt {
    background-color: #0078D4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button.alt:hover {
    background-color: #005bb5;
}

.success-message {
    color: #409d26;
    font-weight: bold;
}

.error-message {
    color: #ff0000;
    font-weight: bold;
}









.contact-form {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0078D4;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 120, 212, 0.3);
}

.contact-form .button.alt {
    background-color: #0078D4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .button.alt:hover {
    background-color: #005bb5;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.contact-form .row.gtr-50 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-form .col-6 {
    width: 48%;
}

.contact-form .col-12 {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .contact-form .col-6 {
        width: 100%;
    }
}













footer p {
    font-size: 1em;
}

/* Responsivité */
@media (max-width: 1200px) {
    header h1 {
        font-size: 3em;
    }
    
    section h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 992px) {
    header h1 {
        font-size: 2.5em;
    }
    
    section h2 {
        font-size: 2em;
    }
    
    button {
        width: 100%;
        padding: 12px;
    }
    
    form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    section h2 {
        font-size: 1.8em;
    }
    
    section p {
        font-size: 1em;
    }
    
    main {
        padding: 20px;
    }

    form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    section h2 {
        font-size: 1.5em;
    }

    button {
        font-size: 1em;
    }

    form input, form textarea {
        font-size: 1em;
    }

    footer p {
        font-size: 0.9em;
    }
}
