/* CSS BY Gwynn Spragg */
/* IMPORTED FONTS */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* CSS RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ROOT VARIABLES */
:root{
    --midnight-blue:  #1F2A44;
    --olive-green:    #76885B;
    --champagne-gold: #E5C185;
    --linen:          #F8F4EC;
    --dark-charcoal:  #2B2B2B;
    --soft-white:     #FAF9F6;
}

/* GLOBAL STYLES (mobile first/small) */
    @media screen and (min-width: 0em) {
        *{
            font-family: playfair Display;
            color: var(--dark-charcoal);
            text-decoration: none;
            line-height: 1.5;
        }
         h1, h2, h3, p, figcaption, a{
            font-family: playfair display;
        } 
        h1{
            font-size:2.8rem;
            font-weight: 600;
            margin: 10px 0;
        }
        h2{
            color: var(--midnight-blue);
            font-size: 1.3rem;
            font-weight: 500;
            margin: 20px 10px 10px;    
        }
        h3{
            color: var(--soft-white);
            font-weight: bolder;
            padding-bottom: 5px;
        }
        .champagne_gold_text{
            color: var(--champagne-gold);
        }
        main{
            background-color: var(--linen);
        }
        section{
            background-color:var(--linen);
            padding: 10px;
            margin-top: 2px;
            border-top: 1px solid var(--champagne-gold);
        }
        div p{
            color: var(--soft-white);
        }
        div{
            background-color: var(--olive-green);  
            border-radius: .5em;
            padding: 15px; 
            margin: 5px;
        }
        /* header */
        header{
            background-color: var(--midnight-blue);
            text-align: center;
        }
        header img{
            max-width: 13em;
            max-height: 16em;
        }
        header h1, header figcaption{
            color: var(--soft-white);
            background-color: var(--midnight-blue);
            padding-bottom: 10px;
        }  
        figcaption{
            margin-bottom: 10px;
            font-size: x-small;
            font-style: italic;
        }
        header nav{
            background-color: var(--champagne-gold);
            color: var(--midnight-blue);
            font-size: 15px;
            font-weight: 800;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }
        nav a{
            margin: 12px;
        }
        /* main */
            /* about us*/
            #about_us p{
                text-align: left;
                margin: 10px;
                font-size: 15px;
                color:var(--dark-charcoal);
            }
            /* offerings */
            #offerings div p{
                color: var(--linen);
                font-weight: 100;
                font-size: 10px;
            }
            ul{
                list-style-position: outside;
            }
            ul li{
                list-style: disc;
                color: var(--linen);
                margin-left: 20px;
                padding-top: 0;
                list-style-position: outside;
            }
            ul li p{
                list-style-position: outside;
            }
            /* Gallery */
            #gallery{
                border-bottom: 2px solid var(--champagne-gold);
                margin-bottom: 18px;  
                padding-bottom: 3px;
                display: grid;
            }
            #gallery p{
                text-align: left;
                margin: 10px;
                font-size: 15px;
                color:var(--dark-charcoal);
            }
            .image_card{
                background-color: var(--soft-white);
                border-radius: 0.5em;
                box-shadow: 1px 3px 5px var(--dark-charcoal);
                justify-content: center;
                padding: 0 0 5px 0;
                margin: 1em 1em 0 1em;
                text-align: center;
                font-style: italic;
            }
            img{
                border-radius: .5em .5em 0 0;
                padding: 0;
                margin-bottom: 5px;
                width: 100%;
            }
            #gallery figcaption{
                margin-bottom: 3px;
            }
            #gallery a{
                background-color: var(--olive-green);
                color: var(--soft-white);
                border-radius: 5px;
                text-align: center;
                align-items: center;
                justify-self: center;
                padding: 10px 0;
                font-size: small;
                font-weight: 300;
                width: 96%;
            }
        /* footer */
        footer{
            background-color: var(--midnight-blue);
            padding: 30px 10px 15px 10px;
            margin-top: 2px;
            margin-bottom: 0;
            height: max-content;
            text-align: center;
            font-size: x-small;
        }
        address{
            padding: 1px;
            margin-bottom: 30px;
            display: grid;  
            grid-template-rows: 1fr 1fr 1fr;
            row-gap: 5px;
        }
        address a{
            color: var(--linen);
            padding-bottom: 0;
        }
        footer nav{
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 3px;
            width: 33%;
            justify-self: center;
        }
        footer nav a{
            margin: 0px;
        }
    }

/* MEDIA QUERY (medium) */
    @media screen and (min-width: 600px) {
        /* header */
        h1{
            font-size: 60px;
        }
        figcaption{
            font-size: 20px;
        }
        header nav a{
            font-size: 25px;
        }
        /* main */
        h2{
            font-size: 25px;
        }
            /* about */
            /* offerings */
            #offerings{
                display: grid;
                grid-template-areas:
                "sec_h2 sec_h2" 
                "provisions experiences"
                "basket basket";     
            }
            #offerings h2{
                grid-area: sec_h2;    
            }
            #offerings h2, #offerings h3{
                font-size: 29px; 
            }
            #offerings div p{
                font-size: 18px;
            }
            #provisions{
                grid-area: provisions;  
            }
            #experiences{
                grid-area: experiences;    
            }
            #monthly_basket{
                grid-area: basket;             
            }
            /* gallery */
            #gallery{
                display: grid;
                grid-template-areas:
                "title title"
                "para para"
                "upper_left upper_right"
                "middle_left middle_right"
                "lower_left lower_right"
                "more more";
            }
            #gallery figcaption{
                font-size: 15px;
                padding: 3px 8px;
            }
            #gallery h2{
                grid-area: title;
            }
            #gallery p{
                grid-area: para;
            }
            .image_card #tomatoes{
               grid-area: upper_left; 
            }
            .image_card #olive_oil{
                grid-area: upper_right;
            }
            .image_card #table-setting{
                grid-area: middle_left;
            }
            .image_card #chef-plating{
                grid-area: middle_right;
            }
            .image_card #basket{
                grid-area: lower_left;
            }
            #gallery a{
                grid-area: more;
            }
        /* footer */
        footer{
            font-size: 13px;
        }
    }
    
/* MEDIA QUERY (large) */
    @media screen and (min-width: 900px) {
        #gallery{
            margin-bottom: 30px;
            display: grid;
            grid-template-areas:
            "title title title"
            "para para para"
            "upper_left upper_center upper_right"
            "lower_left lower_center lower_right"
            "more more more";
        }
        .image_card #tomatoes{
            grid-area: upper_left; 
        }
        .image_card #olive_oil{
            grid-area: upper_center;
        }
        .image_card #table-setting{
            grid-area: upper_right;
        }
        .image_card #chef-plating{
            grid-area: lower_left;
        }
        .image_card #basket{
            grid-area: lower_center;
        }
        #gallery a{
            margin: 20px 0;
        }
    }

/* MEDIA QUERY (xl) */
    @media screen and (min-width: 1200px) {
        main{
            padding-left: 120px;
            padding-right: 120px;
            padding-bottom: 10px;
        }
        h2{
            font-size: 36px;
        }
        /* about_us */
        #about_us p{
            font-size: 30px;
        }
        /* offerings */
        #offerings{
            gap: 12px;
        }
        #offerings h3{
            font-size: 36px;
        }
        #offerings div p{
            font-size: 23px;
        }
        /* gallery */
        #gallery{
            margin-bottom: 30px;
            display: grid;
            grid-template-areas:
            "title title title title title"
            "para para para para para"
            "spot_1 spot_2 spot_3 spot_4 spot_5"
            "more more more more more"; 
        }
        #gallery p{
            font-size: 23px;
        }
        /* footer */
        footer{
            padding-bottom: 30px;
        }
        footer address{
            padding: 25px 0;
        }
    }