@import url('https://fonts.googleapis.com/css?family=Big+Shoulders+Text:100,300,400,500,600,700,800,900&display=swap');

/* font-family: 'Big Shoulders Text', cursive; */

/* c8a47a*/
/* a5845c light tan*/
/*font 591b1b dark maroon */
/* glacial indifference font */
/* 
https://codepen.io/rajrs/pen/dMowNx  use modal on page load
Modal on button click: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_modal
*/

.nav-flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute; 
    z-index: 100;
    left: 0;
    width: 100%;
    padding: 0;
}

.nav-flex-row li {
    text-decoration: none;
    list-style-type: none;
    padding: 20px 15px;
}

.nav-flex-row li a {
    font-family: 'Big Shoulders Text', cursive;
    color: #a5845c;
    background-color: beige;
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 600;
}

.section-intro {
    
    background-image: url(img/logo_over_cookies.png);
    background-position: center center;
    background-size: 75%;
    background-repeat: no-repeat;
    height: 1000px;
    /*display: flex;
    
    */
    flex-direction: column;
    
    display:flex;
    align-items: center;  
}

.section-intro h1 {
    text-align: center;
    color: #591b1b;
    font-size: 5em;
    font-weight: 700;
}


.about-section {
    display: flex;
    align-items: center;
    background-color: #f3f3f3c0;
    color: #c8a47a;
    padding: 50px 30px;
}



.about-section p,
.about-section h3 {
    text-align: center;
    width: 60%;
    margin: auto;
    font-family: 'Big Shoulders Text', cursive;
    font-size: 1.8em;
    text-transform: uppercase;
}

.carousel-inner {
  height: auto;
}

.row-flex {
    display: flex;
    flex-direction: row;
}

.flex-column-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 30px 20px;
}


.opening-time,
.contact-adress {
    flex: 1;
    margin: 30px 20px;
    font-size: 1.2em;
}

.form-group p {
    font-size: 1.2em;
}

.opening-time p span,
.contact-adress p span {
    display: block;
}

@media (min-width:577px) and (max-width: 800px) {

    .section-intro {
        height: 500px;
    }

    .about-section p,
    .about-section h3 {
        font-size: 20px;
    }

    .carousel-inner {
        height: auto;
    }

    .row-flex {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .section-intro {
        height: 300px;
    }

    .about-section {
        padding: 30px;
    }

    .section-intro h1 {
        font-size: 2em;
    }

    .about-section p,
    .about-section h3 {
        font-size: 15px;
    }

    .carousel-inner {
        height: auto;
    }

    .row-flex {
        display: flex;
        flex-direction: column;
    }

    .row-flex h3 {
        font-size: 25px;
        text-align: center;
    }

    .form-group p {
        font-size: 15px;
    }

    .opening-time p span,
    .contact-adress p span {
        font-size: 15px;
        text-align: center;
    }

}