/* Import Google Fonts - Source Sans Pro */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap');

/* Import Comfortaa font from local files */
@font-face {
    font-family: 'Comfortaa';
    src: url('fonts/static/Comfortaa-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #2E1A47;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.title {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.email {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: white;
}

.email a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email a:hover {
    opacity: 0.7;
}

/* Responsive Design */

/* Tablets (portrait et paysage) */
@media screen and (max-width: 768px) {
    .logo {
        max-width: 250px;
        margin-bottom: 50px;
    }

    .title {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .email {
        font-size: 13px;
    }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 40px;
    }

    .title {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .email {
        font-size: 12px;
    }
}

/* Très petits écrans */
@media screen and (max-width: 320px) {
    .logo {
        max-width: 180px;
        margin-bottom: 30px;
    }

    .title {
        font-size: 14px;
    }

    .email {
        font-size: 11px;
    }
}

/* Large screens */
@media screen and (min-width: 1200px) {
    .logo {
        max-width: 350px;
        margin-bottom: 70px;
    }

    .title {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .email {
        font-size: 15px;
    }
}
