/* I. General Styles */

body {
    background-image: url('/images/home_bg.png'); 
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
}

button {
    border-radius: 30px;
    background-color: #ffadad; 
    color:#fefefa; 
    border-style: none; 
    padding: 10px 16px; 
    font-family: Garamond; 
    font-size: 24px;
    margin: 2vw 0vw;
    box-shadow: 0.5vw 0.5vw #e58888;
}

h1 {
    font-family: Garamond; 
    font-size: 4vw; 
    font-weight: normal;
    text-align:center;
    margin: 5vw 0 1vw;
    padding: 0;
}

li {
    float: left;
}

li a {
    display: block;
    color: #fefefa;
    font-size: x-large;
    font-family: Garamond;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    padding-top: 12px;
    text-decoration: none;
    
}

li a:hover {
    text-decoration: underline;
}

ul {
    float: right;    
    list-style-type: none;
    margin: 0;
    padding-left:20px;
    padding-right:20px;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 50px;
    max-width: 100vw;
    overflow: hidden;
}


/* II. Header Styles */

nav {
    background-color: #ffadad;
    margin: 1vw; 
    border-radius:30px; 
    min-height: 50px; 
    max-height: 50px; 
    min-width: 50px; 
    max-width: 100vw;
    position:sticky;
    top: 0;
    box-shadow: 0.5vw 0.5vw #e58888;
}

.logo {
    float: left;
    max-height:auto;
    width:40px;
    padding-top: 0.5%;
    padding-left: 20px;
}

/* III. Body Styles */

.two-column {
    display:flex;
}

.two-column > div {
    width: 50%;
    border-radius: 10%;
    overflow: hidden;
    margin: 3vw;
}

.two-column > div > p {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 2.5rem);
    line-height: 150%;
    font-weight: 300;
    padding: 0 1vw 0 3.5vw ;
    
}

.two-column > div > img {
    width: 100%;
}

.three-column {
    display: flex;
}

.three-column > div {
    background-color: #ffadad;
    border-radius: 10%;
    box-shadow: 1.25vw 1.25vw #e58888;
    margin: 3%;
    overflow: hidden;
    width: 33%;
    z-index: -1;
}

.three-column > div > p {
    color:#fefefa;
    font-family: Garamond;
    font-size: clamp(1rem, 4vw, 3.5rem);
    font-weight: bold;
    padding: 5vw;
    text-align: center;
    
}

div.splash {
    padding: 3vw;
    margin: 3vw 1vw 1vw;
}

.splashHeading {
    font-family: Garamond; 
    font-style: italic;
    font-weight: normal;
    font-size: 15vw; 
    margin: 0;
    padding: 0;
}

.splashSubheading {
    font-family: Garamond; 
    font-size: 4vw; 
    font-weight: normal;
    margin: 0;
    padding: 0;
}


/* IV. Responsive Layout Styles */

@media screen and (max-width: 885px) {
    h1 {
        font-family: Garamond; 
        font-size: 8vw; 
        font-weight: normal;
        text-align:center;
        margin: 5vw 0 1vw;
        padding: 0;
    }
    
    .two-column {
        display: block;
    }
    .two-column > div {
        float: none;
        max-width: 100%;
        min-width: 90%
    }

    .two-column > div > p {
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: clamp(1.25rem, 2.5vw, 4rem);
        font-weight: 300;
        padding: 0 1vw 0 3.5vw ;
    
    }

    .three-column {
        display: block;
    }

    .three-column > div {
        max-width: 100%;
        min-width: 95%;
        border-radius: 20%;
        margin: 5%;
    }

    .three-column > div > p {
        font-size: clamp(2rem, 10vw, 6rem);
        padding: 12vw 5vw;
    
    }

    
}