/************ CSS Resets ***************/
img {
	max-width:100%;
}

p, ul, ol, h1, h2, h3, blockquote {
	margin: 0;
	padding: 0;
}

nav ul, nav ol {
	list-style-type: none;
}

a {
	text-decoration: none;
}

/*************** BODY ****************/


body {
    --black: #020F11;
	--white: #FCFCFC;
	--dkteal: #044D64;
    --teal: #169AA8;
    --ltteal: #6fc7d1;
	--ltblue: #D3E5E5;
	--dkmaroon: #721B38;
    --dkrmaroon: #3f0f1f;
	--maroon: #A85173;
	--pink: #C19AAA;
    --ltpink: #eadfe4;
    --dktan: #b3aeab;
	--tan: #E5DBD3;
	color: var(--black);
	background-color: var(--dktan);
	font-family: "proza libre", Arial, Helvetica, sans-serif;
}

#container {
    background-color: var(--tan);
    margin-right: auto;
    margin-left: auto;
}

a {
    color: var(--dkteal);
    font-weight: 700;
}

a:hover {
    color: var(--teal);
    font-weight: 700;
}

h1, h2, h3, h4 {
    color: var(--dkmaroon);
    text-align: center;
    font-family: "sorts mills goudy", 'Times New Roman', Times, serif;
}

h1 {
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 20px;
    padding-top: 30px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    margin-right: 20px;
    margin-left: 20px;
    line-height: 30px;
}

h4 {
    font-size: 24px;
}

p, address {
    font-size: 16px;
    padding-bottom: 30px;
    line-height: 24px;
    color: var(--black);
    margin-right: 20px;
    margin-left: 20px;
}

header {
    padding-top: 60px;
    padding-bottom: 60px;
}

section, footer {
    padding-top: 60px;
    padding-bottom: 60px;
}

/*************** Cards ****************/

.blue-card {
    width: fit-content;
    padding-top: 20px;
    background-color: var(--ltblue);
    margin: 20px;
    box-shadow: 5px 5px 5px var(--dktan);
    justify-self: center;
    border-radius: 10px;
}

/*************** Images ****************/

img {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.shadow {
    box-shadow: 5px 5px 5px var(--dktan);
    border-radius: 10px;
}

#icons {
    display: flex;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 50px;
    gap: 50px;
}

#icons i {
    color: var(--teal);
}

#icons i:hover {
    color: var(--ltteal);
}


/*************** Header ****************/
header p {
    padding-top: 40px;
    padding-bottom: 60px;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

#title h2 {
    padding-top: 30px;
    padding-bottom: 30px;
}

/*************** Navigation ****************/

nav {
    margin-right: auto;
    margin-left: auto;
}

#navigation ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
    justify-items: center;
}

/*************** Schedule ****************/

#meet h2 {
    margin-top: 60px;
}

#meet img {
    margin-top: 20px;
}

/*************** Socials ****************/

#convo h2 {
    padding-bottom: 20px;
}

#convo, #kids {
    background-color: var(--dkmaroon);
}

#convo h2, #convo h3, #kids h2, #kids h3, #kids p {
    color: var(--tan);
}

#convo .blue-card, #kids img {
box-shadow: 5px 5px 5px var(--dkrmaroon);
background-color: var(--tan);
}

#floater {
    margin-top: 60px;
}


/*************** News ****************/

#news h2 {
    padding-bottom: 20px;
}

input {
	padding: 10px;
	font-size: 20px;
	display: block;
	border-radius: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

input[type="email"] {
	border: 3px solid var(--dkteal);
	width: 300px;
    height: 40px;
	box-sizing: border-box;
    margin-top: 40px;
	margin-bottom: 20px;
	box-shadow: inset 2px 2px 5px var(--dktan);
    background-color: var(--white);
}

input[type="email"]:focus {
    outline-color: var(--teal);
}

input[type="submit"] {
	background-color: var(--dkteal);
	width: 120px;
	box-sizing: border-box;
	margin-bottom: 40px;
	color: var(--white);
	font-weight: 400;
	border: none;
    box-shadow: 5px 5px 5px var(--dktan);
}

input[type="submit"]:hover {
	background-color: var(--teal);
}

/*************** KIDS  ****************/

#kids h3 {
    padding-top: 30px;
}

#kids p {
    text-align: center;
    padding-top: 20px;
}

/*************** FOOTER  ****************/

#contact {
    margin-right: auto;
    margin-left: auto;
}

#contact .blue-card {
    text-align: center;
}

#contact img {
    margin-top: 40px;
}

#contact h3 {
    padding-top: 40px;
}

/*************** TABLET  ****************/

@media only screen and (min-width: 480px) {

    #navigation ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: center;
        font-size: 20px;
    }

    .hide {
        display: none;
    }

    #meet h2 {
        margin-top: 0;
    }

    #schedule {
        display: flex;
        justify-content: space-around;
    }

    #socials {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    #socials .blue-card {
        max-width: 300px;
        justify-items: right;
    }
  
    /*************** PARALLAX ****************/

    #parallax-1 { 
        height: 500px;
        background: url("images/LucyHeald_6_960.gif") center no-repeat fixed;
    }

    #parallax-2 { 
        height: 500px;
        background: url("images/LucyHeald_3_960.gif") center no-repeat fixed;
    }

    #parallax-3 { 
        height: 500px;
        background: url("images/LucyHeald_2_960.gif") center no-repeat fixed;
    }

    #parallax-4 { 
        height: 500px;
        background: url("images/LucyHeald_4_960.gif") center no-repeat fixed;
    }

    #parallax-5 { 
        height: 500px;
        background: url("images/LucyHeald_5_960.gif") center no-repeat fixed;
    }

    #parallax-6 { 
        height: 500px;
        background: url("images/LucyHeald_1_960.gif") center no-repeat fixed;
    }

}

/*************** DESKTOP ****************/

@media only screen and (min-width: 601px) {
    
    #container {
        max-width: 960px;
    }

    #navigation ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: center;
        font-size: 20px;
    }

    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 40px;
    }

    #title h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 30px;
    }

    p {
        font-size: 20px;
        line-height: 30px;
    }

    a {
        font-size: 20px;
    }

    #icons a {
    font-size: 50px;

}


    
}

@media only screen and (min-width: 950px) {

    #navigation ul {
        display: flex;
        justify-content: center;
        gap: 50px;
    }
}