/*!
Theme Name: Pink Plan
Description: A custom theme for Pink Plan.
Author: Dan Scott
Version: 1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinkplan
*/

body {
    font-family: "Montserrat", sans-serif;
}

#site-wrapper {
    width: 100%;
    overflow: hidden;
}

#site-header {
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

#site-header nav {

}

#site-header nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    row-gap: 20px;
    column-gap: 25px;
}

#site-header ul li {
    white-space: nowrap;
    position: relative;
}

#site-header ul ul {
    display: none;
    position: absolute;
    top: 100%;
    background: #FFF;
    padding: 20px;
    left: 0;
}

#site-header ul li:hover ul {
    display: block;
}

.page-header {
    padding: 50px 20px;
    text-align: center;
}

#site-main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

#site-footer {
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #DDD;
}

#site-footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    row-gap: 20px;
    column-gap: 25px;
}

.page-section {
    padding: 70px 20px;
    text-align: center;
}