* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ebebeb;
}
.container {
    margin: 0 auto;
    max-width: 1300px;
    background-color: #ebebeb;
}
h1, h2, h3, h5, .discover-images a, .custom-title {
    font-family: 'Kaisei Decol', serif;
}


/* HEADER SEKTION */
header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 10px 0;
}
header img {
    height: 70px;
}
header nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    column-gap: 1.5rem;
    margin: 0.5rem 2rem 0 2rem;   
}
header nav li {
    display: inline;
    padding: 0 1rem;
    line-height: 55px; 
}
header li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: bold;
}
header nav li:hover {
    text-decoration: underline black;  
}

/* HERO SEKTION */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    background-image: url(images/hero1a.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 735px;
    font-size: 2.2rem;
    margin-bottom: 5rem;
    line-height: 1.2;
    background-color: #291B18;
}
.hero h1 {
    margin-left: 3rem;
    margin-bottom: 1rem;
}
.hero h4 {
    font-size: 1.2rem;
    font-style: italic;
    margin-left: 3rem;
}
.hero-b {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #D9D9D9;
    background-image: url(images/heroa.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    font-size: 2.2rem;
    line-height: 1.3;
    background-color: #291B18;
}
.hero-b h1, .hero-b h4 {
    margin-left: 7rem;
    font-weight: 100;
    letter-spacing: 2px;
}
.hero-b h4 {
    font-size: 1.2rem;
}


/* STARTSIDA */
.best-sellers {
    margin-bottom: 5rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}
#container-products .best-images {
    margin: 0 1rem 0 1rem;
}
.best-sellers .best-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; 
    justify-content: center;
}
.best-sellers img {
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 230px;
}


/* SECTION SPACER */
.section-spacer {
    margin: 0 3rem 3rem 3rem;
}
.spacer-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 2px solid black;
    padding-bottom: 1.5rem;  
}
.section-spacer h3 {
    font-size: 1.8rem;
    font-weight: 500;
}
.knappVisa, .knappSkicka {
    background-color: white;
    border: none;
    cursor: pointer;  
    color: black;  
    border-radius: 5px;
    border: 1px solid #6e6e6e;
    padding: 10px;
}
.knappVisa:hover {
    color: white;
    background-color: #291B18;
}
.product-info {
    display: flex;
    justify-content: space-between;
    margin: 1rem 1rem 0 1rem;
}
.about {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 3rem;
    background: #291B18;
    color: white;
    margin-bottom: 5rem;
}
.about img {
    max-width: 50%;
    border-radius: 2px;
    flex-shrink: 0;
}
.about div {
    flex: 1;
}
.about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.about p {
    line-height: 1.5;
}
.discover {
    margin-bottom: 5rem;
    flex-wrap: wrap;
}
.discover .discover-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; 
    justify-content: center;
}
.discover-images a {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 9rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}
.discover-images p {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    color: #cecece;
}
.discover-img-a, .discover-img-b, .discover-img-c {
    width: 300px;
    height: 350px;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.discover-img-a { background-image: url(images/p5.webp); }
.discover-img-b { background-image: url(images/p6.webp); }
.discover-img-c { background-image: url(images/p7.webp); }

.news-letter {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 3rem;
    background: #c5996d;
    color: white;
    margin-bottom: 5rem;
    text-align: center;
}
.news-letter h3 {
    font-size: 1.8rem;
    font-weight: 500;
}
.news-letter p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1.5rem 8rem 2.5rem 8rem;
}
.news-letter button {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}


/* CUSTOM SIDA */
.custom-intro {
    flex-direction: column;
    background-color: #c5996d;
    color: white;
    margin: 5rem 0 5rem 0;
    padding: 5rem 0;
}
.custom-text {
    width: 65%;
    margin: 0 auto;
    line-height: 1.5;
}
.custom-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.custom-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.contact-details {
    margin-top: 1rem;
}
.custom-process {
    line-height: 1.5;
    justify-content: center;
    margin: 5rem;
}
.process {
    display: flex;
    gap: 3rem;
    margin: 5rem 0 5rem 0;
    padding: 1.5rem;
}
.galleri {
    margin-bottom: 5rem;
    flex-wrap: wrap;
}
.galDiv {
    columns: 3;
    gap: 1.3rem;
    text-align: center;
    margin: 0 5rem 0 5rem;
}
.galDiv img {
    margin-bottom: 1rem;
    width: 100%;
}


/* OM OSS SIDA */
.about-intro {
    flex-direction: column;
    justify-content: center;
    margin: 5rem 0 5rem 0;
}
.about-intro h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: 'Kaisei Decol', serif;
}
.about-intro img {
    display: flex;
    margin: 0 auto;
    max-width: 75%;
}
.about-text {
    margin-top: 3rem;
}
.about img {
    max-width: 40%;
}
.about .mvhText {
    margin-top: 1.5rem;
}


/* WORKSHOP SIDA */
.workshop {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 5rem 3rem;
    background-color: #c5996d;
    color: white;
    margin: 5rem 0 5rem 0;
}
.workshop img {
    max-width: 50%;
    border-radius: 2px;
    flex-shrink: 0;
}
.workshop div {
    flex: 1;
}
.workshop h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.workshop p {
    line-height: 1.5;
}
.courses {
    display: flex;
    justify-content: center;
    margin: 0 auto;   
    gap: 2rem;
    margin: 0 5rem 0 5rem;
}
.courses h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.courses-div {
    background-color: #FBFBFB;
    width: 340px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.courses p, .courses ul, .courses li {
    line-height: 1.5;
}
.courses ul {
    margin-left: 2rem;
}
.courses-div button {
    margin-top: 1.5rem;
}


/* KONTAKT SIDA */
.contact {
    margin: 5rem 0 5rem 0;
}

.contact-main {
    display: flex;
    gap: 3rem;
    margin: 0 5rem 0 5rem;
}
.contact-main img {
    height: 490px;
}
.form {
    border-radius: 5px;
    background-color: #D9D9D9;
    padding: 20px;
}
input[type=text], select, textarea {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    box-sizing: border-box; 
    margin-top: 6px; 
    margin-bottom: 16px; 
    font-family: 'Roboto', sans-serif;
}

  
/* FOOTER */
footer {
    display: flex;
    justify-content: space-between;
    padding: 3rem 5rem 2rem 5rem;
    background-color: #291B18;
    color: white;
}
footer h5 {
    margin-bottom: 1rem;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}
footer li {
    line-height: 1.5;
    list-style: none;
}
footer li a {
    color: white;
    text-decoration: none;
}
footer img {
    height: 80px;
}


/* MEDIA */
@media (max-width: 1023px) {
    .hero {
        height: 500px;
    }
    .hero-b {
        height: 350px;
    }     
    .about {
        flex-direction: column;
        padding: 4rem 3rem;
    }
    .about img {
        max-width: 50%;
    }
    .process {
        display: flex;
        flex-wrap: wrap;
        margin: 4rem 0 4rem 0;
        justify-content: center; 
    }
    .process img {
        height: 240px;  
    }
    .courses {
        flex-wrap: wrap;
    }
    .contact-main img {
        height: 300px;
    }
}
@media (max-width: 767px) {
    .hero {
        height: 400px;
    }
    .hero-b {
        height: 300px;
        font-size: 1.8rem;
    }
    .hero-b h1, .hero-b h4 {
        margin-left: 5rem;
    }
    .section-spacer {
        margin: 0 1.5rem 3rem 1.5rem;
    }
    .about img {
        max-width: 60%;
    }    
    .news-letter p {
        margin: 1.5rem 2rem 2.5rem 2rem;
    }
    .workshop {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .workshop img {
        max-width: 70%;
    }
    footer {
        flex-wrap: wrap;
        gap: 3rem;
        padding: 3rem 3rem 2rem 3rem;
    }
    .contact-main {
        flex-wrap: wrap;
        justify-content: center;
    }  
}
@media (max-width: 500px) {
    .hero {
        height: 350px;
    }
    .about img {
        max-width: 80%;
    }    
    .news-letter p {
        margin: 1.5rem 0 2.5rem 0;
    }
    .process {
        margin: 1rem 0 1rem 0;

    }
    .process img {
        height: 200px;  
    }
    footer {
        flex-direction: column;
    }
}