/* ----------------------------------------------------
   GLOBAL RESET
---------------------------------------------------- */

body {
    background: #fffdf6;
    text-align: center;
}

a {
    color: #26479b;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* ----------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------- */

h1, h2, h3, h4 {
    font-family: "LumiosMarker", monospace;
    font-weight: 400;
    font-style: normal;
    color: #26479b;
    line-height: 1;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 60px;
}

h4 {
    font-size: 30px;
}

@media (min-width: 1280px) {
    h1 {
        font-size: 120px;
    }

    h2 {
        font-size: 60px;
    }

    h3 {
        font-size: 80px;
    }
}

p {
    font-family: "Courier Prime", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #26479b;
}

p.large {
    font-size: 18px;
}

p.small {
    font-size: 14px;
}


/* ----------------------------------------------------
   LAYOUT
---------------------------------------------------- */

section {
    box-shadow: inset 0 -10px 20px -20px rgba(0, 0, 0, 0.15)
}

section.striped {
    background: url("../images/bg-stripe.png") repeat-x center;
    background-size: cover;
}

article {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
    background-repeat: no-repeat;
    background-position: 
            center bottom 80px;
}

.article-welcome {
    justify-content: center;
}

.article-intro {
    justify-content: center;
}

.article-dress {
    background-image: 
        url('../images/icon-dress.png');
    background-size: 70px;
    padding-bottom: 180px;
}

.article-travel {
    background-image: 
        url('../images/icon-passport.png');
    background-size: 65px;
    padding-bottom: 180px;
}

.article-accommodation {
    background-image: 
        url('../images/icon-house.png');
    background-size: 80px;
    padding-bottom: 180px;
}

.article-children {
    background-image: 
        url('../images/icon-shell.png');
    background-size: 80px;
    padding-bottom: 180px;
}

.article-faq {
    justify-content: center;
    text-align: left;
}

.article-footer {
    justify-content: center;
}

@media (min-width: 1280px) {
    article {
        max-width: 1200px;
        min-height: 630px;
        margin: 0 auto;
        padding: 80px;
        gap: 60px;
        background-repeat: no-repeat;
        background-position: 
            right 80px top 80px,
            left 80px bottom 80px;
    }

    .article-intro {
        flex-direction: row;
    }

    .article-dress {
        background-image: 
            url('../images/icon-shoes.png'),
            url('../images/icon-dress.png');
        background-size: 120px;
    }

    .article-travel {
        background-image: 
            url('../images/icon-passport.png'),
            url('../images/icon-car.png');
        background-size: 85px, 140px;
    }

    .article-accommodation {
        background-image: 
            url('../images/icon-house.png'),
            url('../images/icon-shell.png');
        background-size: 100px, 120px;
    }

    .article-children {
        background-image: 
            url('../images/icon-toy.png'),
            url('../images/icon-ribbon.png');
        background-size: 75px, 100px;
    }

    .article-faq {
        flex-direction: row-reverse;
    }
}

/* ----------------------------------------------------
   IMPORTANT
---------------------------------------------------- */

.important {
    background: url(../images/icon-important.png) no-repeat 30px;
    background-position: 0;
    padding-left: 35px;
    background-size: 25px;
}

/* ----------------------------------------------------
   RIBBON
---------------------------------------------------- */

.bg-ribbon {
    background: url(../images/bg-ribbon.png) no-repeat;
    background-size: contain;
    width: 340px;
    min-height: 480px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-shrink: 0;
}

@media (min-width: 1280px) {
    .bg-ribbon {
        width: 420px;
        min-height: 580px;
    }

    .bg-ribbon-small {
        width: 340px;
        min-height: 480px;
    }
}

/* ----------------------------------------------------
   GRID
---------------------------------------------------- */

.grid { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
}

.grid-2x .grid-cell {
    flex-basis: 50%;
}

.grid-3x .grid-cell {
    flex-basis: 33%;
}

.grid-cell {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.grid-center {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.grid-faqs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 1280px) {
    .grid { 
        flex-direction: row;
        gap: 120px;
    }

    .grid.grid-3x {
        gap: 80px;
    }
}

/* ----------------------------------------------------
   FAQs
---------------------------------------------------- */

.faqs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.question {
    font-weight: bold;
}

.faq-img-wrap {
    flex-shrink: 0;
}

.faq-img {
    width: 120px;
}

@media (min-width: 1280px) {
    .faq-img {
        width: 266px;
    }
}