@charset "UTF-8";

/* RESET */

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

html,
body {
    height: 100%;
}

p {
    font-family: 'Nunito', sans-serif;
	font-size: 16px;

}

a { 
	color: white;
	font-weight: bold;

}

/* HEADER (vain mobiilissa) */

header {
    padding: 20px;
}

header img {
    display: block;
    margin: 0 auto;
    height: 84px;
    width: auto;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 35%;
    color: white;
    letter-spacing: 0.7px;
    line-height: 1.6;
}

.hero-logo {
    width: 350px;
    max-width: 100%;
    margin-bottom: 10px;
}

/* MOBIILISISÄLTÖ */

.mobile-content {
    display: none;
}

.mobile-image {
    display: block;
    width: 100%;
}

.content {
    padding: 5%;
    background-color: #493148;
    color: white;
    text-align: center;
    letter-spacing: 0.7px;
    line-height: 1.5;
	
}

/* BRÄNDIT */

.brands {
    background-color: #493148;
    color: white;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

/* YHTEYSTIEDOT */

.yhteystiedot {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3%;
	letter-spacing: 0.7px;	
}

.eliisa {
    width: 230px;
    height: auto;
    display: block;
    flex-shrink: 0;
    align-self: flex-start;
	margin-top:-10px;
}

.yhteystiedot p {
    line-height: 1.5;
}

/* FOOTER */

footer {
    background-color: #493148;
    color: white;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    padding: 15px;
    min-height: 50px;
	font-size: 14px;
}

/* ===========================
   MOBIILI
   =========================== */

@media (max-width: 1000px) {

	p {
	    font-size: 15px;
	}

    /* Desktop-hero pois */

    .hero {
        display: none;
    }

    /* Mobiilisisältö näkyviin */

    .mobile-content {
        display: block;
    }

    /* Header näkyy */

    header img {
        height: 84px;
    }

    /* Yhteystiedot allekkain */

    .yhteystiedot {
        flex-direction: column;
        text-align: center;
    }

    .eliisa {
        width: 200px;
        align-self: center;
        margin-top: 10px;
        margin-bottom: -10px;
    }

    .yhteystiedot p {
        padding-top: 0;
    }

    .content {
        padding: 5%;
    }



}

/* Pienet puhelimet */

@media (max-width: 500px) {

    header {
        height: auto;
    }

    header img {
        height: 55px;
    }

}

/* ===========================
   DESKTOP
   =========================== */

@media (min-width: 1000px) {

    /* Piilotetaan normaali header */

    header {
        display: none;
    }

}