﻿/* download.css pour la page Download Transgo */

/* TITRE caché pour SEO */
h1.title {
    visibility: hidden;
    position: fixed;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    background-image: url('/content/background_nature.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}




#logo {
    text-align: center;
    display: block;
    width: 100%;
}

.download-container {
    max-width: 300px;
    margin: 0px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.8);
    position: fixed;
    float: left;
    z-index: 2;
}


#outerContainer {
    position: relative;
}


h1, h2 {
    text-align: center;
    color: #333;
}

h2 {
    font-size: 1.3em;
}

/* Formulaire */
form, .form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 10px;
    color: #555;
}

input[type="password"], input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.download-button,
.btn-yellow {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background-color: #f1af21;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

    .download-button:hover,
    .btn-yellow:hover {
        background-color: #45a049;
    }

.error-message {
    color: #ff0000;
    margin-top: 5px;
}

.success-message {
    color: #2c982c;
    margin-top: 10px;
}



.grid-container {
    position: relative;
    z-index: 1;
}

.full-width-section {
    margin-top: 100vh;
    padding: 60px 20px;
    background: white;
    position: relative;
    z-index: 1;
}

    .full-width-section h2 {
        color: #333;
        font-size: 2em;
        margin-bottom: 20px;
    }

    .full-width-section hr {
        margin: 50px auto;
        max-width: 200px;
    }

    .full-width-section .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .full-width-section .feature {
        flex: 1 1 250px;
        max-width: 300px;
    }

        .full-width-section .feature i {
            font-size: 40px;
            color: #f1af21;
            margin-bottom: 10px;
        }

.cookie-consent-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ddd;
    z-index: 9999;
}

    .cookie-consent-footer p {
        margin: 0;
    }

@media (max-width: 900px) {
    .grid-container {
        flex-direction: column;
    }

    .container.mt-navbar {
        margin: 30px auto;
        width: 97vw;
        left: 0;
        top: 0;
        position: static; /* Sur mobile, on repasse en position normale */
    }
}

@media (max-width: 600px) {
    .container.mt-navbar {
        width: 97vw;
        min-width: unset;
        margin: 24px 0 0 0;
        position: static;
    }
}

.download-arrow {
    position: fixed;
    top: 35px;
    right: 48px;
    z-index: 9999;
    font-size: 32px;
    color: #f1af21;
    animation: moveArrow 1.2s infinite;
    pointer-events: none;
    z-index:500;
}

@keyframes moveArrow {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .download-container {
        margin: 0 auto;
        float: none;
        position: relative;
        min-height: 300px;
    }

    #outerContainer {
        margin-left: 0px;
    }
}