/*
Theme Name: Sylvaine
Description: -
Author: -
Version: 1.0.0
Text Domain: sylv
*/

html,
body {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
    background-color: #000000;

    padding: 50px 0;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}

/* COLORS */
.pink {
    color: #C8546E;
}
.grey {
    color: #585757;
}

/* UI */
.page-content {
    width: clamp(250px, 30vw, 512px);

    margin-inline: auto;
}

.site-logo {
    width: clamp(250px, 30vw, 512px);
    
    display: block;
    border-bottom: 2px solid #fff;
    
    margin-inline: auto;
    padding-bottom: clamp(14px, 1vw, 28px);
    margin-bottom: clamp(14px, 1vw, 28px);
}

.soon-text {
    letter-spacing: 2.6px;
    text-transform: uppercase;
    text-align: center;

    margin: 0;
}

.wpcf7 {
    margin-block: clamp(75px, 5vw, 150px);
}
.wpcf7 form .wpcf7-response-output {
    color: #fff;
    width: 100%;
    display: block;
    margin-top: 0;
}
.wpcf7-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap:wrap;
    justify-content: flex-start;
}

.wpcf7 .screen-reader-response {
    display: none;
}

.wpcf7-submit {
    background: transparent;
    border: 0;
    color: #fff;
}

.wpcf7-form > p:first-of-type {flex: 1;}
.wpcf7-email {
    width: 100%;
    height: 51px;
    
    box-sizing: border-box;
    
    padding: 5px 10px;
}

.socials-logo {
    max-width: 500px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.socials-logo__insta {width: 32%;}
.socials-logo__etsy {width: 19.10331384%;}
.socials-logo__kwaz {width: 23.39181287%;}

.bg {
    width: clamp(350px, 30vw, 640px);
    
    display: block;

    margin: 50px auto 0;
}

@media screen and (min-width: 880px) {
    body {
        display: grid;
        align-items: center;
        justify-content: center;
        grid-template-columns: 1fr 1fr;
        grid-gap: clamp(35px, 5vw, 70px);
    }
    .page-content {
        grid-column: 2;
        grid-row: 1;
        justify-self: flex-start;

        margin: 0;
    }
    .bg {
        grid-column: 1;
        grid-row: 1;
        justify-self: flex-end;

        margin: 0;
    }
}