@font-face {
    font-family: 'Century Catalogue';
    src: url('../fonts/Century-Catalogue.woff2') format('woff2'),
        url('../fonts/Century-Catalogue.woff2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaW01-Roman';
    src: url('../fonts/HelveticaW01-Roman.woff2') format('woff2'),
        url('../fonts/HelveticaW01-Roman.woff2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    background: url(../img/fond-rose-heimat.png) center bottom no-repeat;
    background-size: cover;
    min-height: 100dvh;
    margin:0;
    font-family: 'HelveticaW01-Roman';
}

main{
    background: url(../img/bouquet-heimat-saint-genouph.png) center bottom no-repeat;
    background-size: 70% auto;
    padding-bottom: 3rem;
    min-height: calc(100dvh - 3rem);
    margin:0;
    .LeftCol{
        display: flex;
        justify-content: center;
        .logo{
            width:60%;
            max-width: 500px;            
            display:none;
            padding-left:1rem;
            &.mobile{
                display:flex;
                margin:0 0 2rem 0;
            }
        }
    }
    .RightCol{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        h4{
            font-family: 'Century Catalogue';
            font-size:20px;                
            margin-top: 1rem;
            font-weight: normal;
        }
        .coordonnees{
            h1{
                font-weight: bold;
                margin: 0;
                letter-spacing: 5px;
                font-size: 22px;
            }
            h2{
                font-weight: normal;
                margin: 0;
                font-size: 16px;
            }
            h3{
                margin:1rem 0;
                font-size: 16px;
                font-weight: normal;
                font-family: 'Century Catalogue';
            }
            p{
                margin:1rem 0;
                font-size: 14px;
            }
            a{
                text-decoration: none;
                color: white;
                font-size: 18px;
                &:hover{
                    text-decoration: underline;
                }
                &.insta{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap:0.5rem;
                }
            }
        }
    }
    .coordonnees{
        display: flex;
        flex-direction: column;
        gap:0.2rem;
    }
}

@media (min-width: 640px) { 
    main{
        background-position: right -5rem bottom;
        background-size: 70% auto;
        .RightCol{
            padding-left: 2rem;
            justify-content: start;
            align-items: start;
            text-align: left;
            .coordonnees{
                a.insta{
                    align-items: start;
                    justify-content: start;
                }
            }
        }
    }
}

@media (min-width: 1280px) { 
    main{
        display: flex;
        justify-content: space-between;
        background-position:  center bottom;
        background-size: 50% auto;
        min-height: calc(100dvh - 3rem);
        margin:0;
        .logo.mobile{
            margin:0;
        }

        .LeftCol{
            width: 33%;
            justify-content: left;
            .logo{
                display: flex;
                width: auto;
                max-width: 100%;
                max-height: 60%;
                &.mobile{
                    display:none;
                }
            }
        } 
        .RightCol{
            padding:3rem;
            flex-direction: column;
            align-items: end;
            justify-content: space-between;
            width: 40%;
            h4{
                font-size:45px;
            }
            .coordonnees{
                h1{
                    font-size: 24px;
                    letter-spacing: 7px;
                    font-weight: bold;

                }
                h2{
                    font-size: 22px;
                    letter-spacing: 3px;

                }
                h3{
                    margin:0;
                    font-size: 22px;
                }                
                p{
                    margin:3rem 0 1rem 0;
                    font-size: 18px;
                    letter-spacing: 1px;
                    font-weight: normal;
                }
                a{
                    font-size: 18px;
                }
            }
        }
    }
}            
