/* 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;
}

/* CSS RESET END */

/* STYLE STUFF START */


/* font-family: 'Open Sans Condensed', sans-serif; */
/* font-family: 'Questrial', sans-serif; */
/* font-family: 'Roboto', sans-serif; */
/* font-family: 'Cinzel', serif; */

/* #ebe4de = cream color possible background

/* #fbfbf8 = slightly off-white color to match logo attempt */

/* #0f52ba = blue that matches the logo */

/* #9f6eb3 = the dark purple highlight/band color */

/* STYLE STUFF END */

/* GENERAL SITE CSS */

html {
    font-size:62.5%;
}
body {
    background-position: center;
    background-image: url("/images/homepage_background_smoo.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
}
h1 {
    color:#2b394a;
    font-family: 'Questrial', sans-serif;
    font-size:4.2rem;
}
h2 {
    color:#2b394a;
    font-family: 'Questrial', sans-serif;
    font-size:3.6rem;
    font-weight:700;
}
h3 {
    color:#2b394a;
    font-family: 'Questrial', sans-serif;
    font-size:2rem;
    font-weight:700;
}
.siteHead {
    background-color:#ffffff;
    position:fixed;
    top:0;
    right:0;
    display:block;
    z-index:1;
    box-shadow:1px 1px 3px 2px #2b394a;
    width:100%;
    display:flex;
}
.siteImg {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    padding-left:2%;
}
.navBar {
    font-size:20px;
    width:100%;
    margin:0 2% 1% 2%;
    padding:1% 1% 10px 0;
    display:flex;
    align-content:flex-end;
    align-items:flex-end;
    justify-content:space-evenly;
  }
  .navButton {
    font-family: 'Cinzel', serif;
    background-color:white;
    border:none;
    padding:16px;
    text-transform:uppercase;
    font-size:2rem;
    font-weight:600;
  }
  .navButton:hover {
    background-color:#faf9f6;
    box-shadow:0px 3px 6px 0px;
  }
  .navButton a {
    text-decoration:none;
    color:#6F8FAF;
  }
  .serviceDrop {
    display:none;
    position:absolute;
    background-color:#f1f1f1;
    min-width:160px;
    box-shadow:0 8px 16px 0;
    z-index:1;
  }
  .serviceDrop a {
    background-color:#faf9f6;
    color: #6F8FAF;
    font-size:2rem;
    font-weight:600;
    padding: 12px 16px;
    text-decoration: none;
    text-transform:uppercase;
    display: block;
  }
  .serviceDrop a:hover {background-color: #ddd;}
  .serviceButton:hover .serviceDrop {display: block;}
  .serviceButton:hover .serviceDrop {background-color: #ffffff;}
  
  .moreDrop {
    display:none;
    position:absolute;
    background-color:#6F8FAF;
    min-width:160px;
    box-shadow:0 8px 16px 0;
    z-index:1;
  }
  .moreDrop a {
    color: #6F8FAF;
    font-size:2rem;
    font-weight:600;
    padding: 12px 16px;
    text-decoration: none;
    text-transform:uppercase;
    display: block;
  }
  .moreDrop a:hover {background-color: #ddd;}
  .moreButton:hover .moreDrop {display: block;}
  .moreButton:hover .moreDrop {background-color: #ffffff;}
.menuIcon {
    display:none;
}
  
p {
    font-family: 'Questrial', sans-serif; 
    font-size:2rem;
}

footer {
    background-color:#ffffff;
    padding-bottom:15px;
    padding-top:10px;
    box-shadow:1px 1px 3px 2px #2b394a;
}
footer a {
    color:#2b394a;
    font-family: 'Questrial', sans-serif;
    font-size:2rem;    
    text-decoration:none;
}
.footerDiv {
    display:flex;
    justify-content:space-between;
    margin:5px 2% 0 2%;
}
.footerInfo {
    font-family: 'Questrial', sans-serif;
    font-size:1.6rem;        
}
.copyRight {
    text-align:center;
}
.footerLink {
    display:flex;
    flex-direction:column;
    justify-content:space-evenly;
    margin:5px 2% 0 2%;
}
.footerLink a {
    align-items:center;
}
.socialMedia {
    width:300px;
    display:flex;
    align-items:center;
    justify-content:space-evenly;
}

/* GENERAL SITE CSS END */

/* APPOINTMENT POLICY SPECIFIC CSS START!!! */

.apptPolicy {
    margin:230px 20% 2% 20%;
    background-color:#ffffff;
    box-shadoW:1px 1px 3px 2px #2b394a;
    padding:2% 2% 2% 2%;
    text-align:justify;
}
.apptPolicy p {
    padding: 1% 0;
}

/* APPOINTMENT POLICY SPECIFIC CSS END!!! */

/* CONTACT SPECIFIC CSS START!! */

.contactMain {
    margin-top:230px;
    margin-bottom:50px;
    background-color:#ffffff;
    border-bottom:1px solid #2b394a;
    border-top:1px solid #2b394a;
    padding:2% 10% 1% 10%;
}
.contactMain h2 {
    padding-bottom:2%;
}
.contactUs a {
    color:#2b394a;
    font-size:2rem;
    text-decoration:none;
}
.contactUs a:hover {
    color:#6F8FAF;
    text-decoration:underline;
    transition:0.2 ease-in-out;
}
.contactUs h3 {
    padding-top:10px;
}
.contactText p {
    padding:20px 5% 0 5%;
}

/* CONTACT SPECIFIC CSS END!!! */

/* COVID SPECIFIC CSS START!!! */

.covidProtocols {
    margin:230px 20% 2% 20%;
    background-color:#ffffff;
    box-shadow:1px 1px 3px 2px #2b394a;
    padding: 2% 5% 2% 5%;
}
.covidProtocols h1 {
    text-align:center;
}
.covidProtocols h3 {
    text-align:center;
}
.covidProtocols p {
    margin-top:20px;
    margin-bottom:20px;
    padding:0 5% 0 5%;
    text-align:justify;
}

/* COVID SPECIFIC CSS END!!! */

/* DEALS SPECIFIC CSS START!!! */

.dealsMain {
    margin:230px 2% 50px 2%;
    background-color:#ffffff;
    box-shadow:1px 1px 3px 2px;
    padding:1% 5% 1% 5%;
}
.dealsMain a {
    color:#2b394a;
    text-decoration: none;
}

/* DEALS SPECIFIC CSS END!!! */

/* FAQ SPECIFIC CSS START!!! */

.faqHeader {
    background-color:#ffffff;
    border-top:1px solid #2b394a;
    margin-top:230px;
    padding:1% 2% 2% 2%;
}
.faqHeader h2 {
    padding-bottom:1%;
}
.expandPlease {
    background-color:#ffffff;
    padding-bottom:1%;
    padding-left:2%;
    padding-top:1%;
}
.expandPlease h3 {
    font-weight:100;
    color:#818589;
}
.collapsibleTop {
    background-color:#ffffff;
    border:1px solid #a8a8a8;
    color:#150c25;
    cursor:pointer;
    font-family: 'Questrial', sans-serif;
    font-size:2rem;
    font-weight: 700;
    padding:2% 5% 2% 2%;
    text-align:left;
    width:100%;
}
.collapsibleTop:hover{
    background-color:#6F8FAF;
    border:none;
    color:#faf9f6;
    transition:0.5s;
}
.collapseContent {
    padding: 0 10% 0 10%;
    background-color:#faf9f6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.collapseContent p {
    margin-bottom:1%;
    padding-top:1%;
    text-align:justify;
}
.microFAQ {
    border-bottom:1px solid #2b394a;
    margin-bottom:100px;
}

/* FAQ SPECIFIC CSS STUFF END!!! */

/* GALLERY SPECIFIC CSS STUFF START!!! */

.galleryIntro {
    background-color:#ffffff;
    border-top:1px solid #2b394a;
    margin-top:230px;
    padding:2% 2% 0 2%;
}
.galleryIntro p {
    padding-bottom:1%;
    padding-top:1%;
}
.bigDiv {
    background-color:#ffffff;
    border-bottom:1px solid #2b394a;
    padding:1% 2% 1% 2%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-evenly;
    margin-bottom:100px;
}
.bigDiv img {
    border-radius:30px;
    margin:3%;
    width:25%;
    height:auto;
}
.bigDiv img {
    transition:transform 0.25s ease;    
}
.bigDiv img:hover {
    -webkit-transform:scale(3);
    transform:scale(3);
}


/* GALLERY SPECIFIC CSS STUFF END!!! */

/* INDEX PAGE CSS START!!! */

.splashPage {
    background-color:#ffffff;   
    border-top:1px solid #2b394a; 
    display:flex;
    justify-content:center;
    margin-top:230px;
    padding:2% 2% 1% 2%;
}
.splashPic img {
    border-radius:10px;
}
.splashStuff {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    margin:0 2% 0 2%;
    padding:50px;
}
.bookingButton {
    text-align:center;
}
.apptButton {
    background-color: #6F8FAF;
    border: none;
    border-radius:10px;     
    color: #e0ffff;
    cursor: pointer;
    font-family: 'Questrial', sans-serif;
    font-size: 1.6rem;
    font-weight:700;
    margin:5%;  
    padding: 16px;
    width:220px;
    height:auto; 
}
.apptButton:hover {
    background-color:#2b394a;
    color:#e0ffff;
    transition:0.5s;
}
.apptButton a {
    color:#e0ffff;
    text-decoration:none;
}
.splashText {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:2% 0 1% 0;
    text-align:center;
}
.splashText h2 {
    padding-bottom:6%;
    padding-top:6%;
}
.splashAddress {
    line-height:1.5;
}
.splashAddress a {
    text-decoration:none;
    color:#2b394a;
}
.quoteBand {
    background-color:#6F8FAF;
    border-bottom:#2b394a;
    color:#e0ffff;
    padding:1%;
    text-align:center;
    width:100%;
    margin-bottom:100px;
}
.quoteBand p {
    font-size:2.4rem;
    font-style:italic;
    font-weight:700;
}
.indexBody {
    background-color:#ffffff;
    border-bottom:1px solid #2b394a;
    border-top:1px solid #2b394a;
    margin-bottom:100px;
    padding:1% 2% 1% 2%;
    text-align:justify;
}
.bulletLogo {
    text-align:center;
    padding-bottom:15px;
}
.indexBody p {
    padding-bottom:1%;
}

/* INDEX PAGE CSS END!!! */


/* MEET ANDREA SPECIFIC CSS START!!! */

.artistTitle {
    margin-top:193px;
    padding:0 1% 0 1%;
    text-align:center;
    font-style:italic;
}
.meetAndrea {
    background-color:#ffffff;
    border-bottom:1px solid #2b394a;
    border-top:1px solid #2b394a;
    margin-bottom:50px;
    padding:2% 2% 2% 2%;
    display:flex;
}
.andreaPic {
    padding:1px;
    border:1px solid #2b394a;
    max-height:404px;
}
.andreaPic img {
    max-height: 404px;
}
.andreaBio {
    margin:0 1% 3% 1%;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}
.andreaBio h2 {
    font-style:italic;
    padding:3% 0 3% 5%;
}
.bladeArtist {
    padding:0 0 5% 5%;
    font-style:italic;
}
.andreaBio p {
    padding-bottom:2%;
    padding-left:5%;
    text-align:justify;
}

.customerReviews {
    background-color:#ffffff;
    border-bottom:1px solid #2b394a;
    border-top:1px solid #2b394a;
    margin-bottom:50px;
    padding:1% 2% 1% 2%;
}
.reviewQuotes {
    margin-bottom:2%;
}
.postOne, .postTwo, .postThree {
    background-color:#f0ede6;
    border:1px solid #2b394a;
    border-radius:20px;
    box-shadow:1px 1px 3px 2px;
    margin:2% 2% 1% 2%;
    padding:1% 2% 1% 2%;
}
.customerReviews h3 {
    padding-left:5%;
    padding-top:1%;
}

.meetContact {
    background-color:#ffffff;
    border-bottom:1px solid #2b394a;
    border-top:1px solid #2b394a;
    display:flex;
    flex-direction:column;
    padding-bottom:2%;
}
.meetContact a {
    color:#2b394a;
    text-decoration:none;
    font-weight:700;
}
.contactAndrea {
    margin:50px 10% 1% 10%;
    padding-left:2%;
    text-align:center;
}
.contactInfo {
    display:flex;
    justify-content:space-between;
    font-family: 'Open Sans Condensed', sans-serif; 
    font-size:2rem;
    margin:1% 10% 1% 10%;
    padding-left:2%;  
}
.storeMap {
    margin:50px 2% 1% 2%;
    position: relative;
    padding-bottom: 56.25%; /* This is the aspect ratio */
    height: 0;
    overflow: hidden;
    border:1px solid black;
}
.storeMap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;    
}

/* MEET ANDREA SPECIFIC CSS END!!! */

/* PRIVACY POLICY SPECIFIC CSS START!!! */

.privacyPolicy {
    margin:230px 20% 2% 20%;
    background-color:#ffffff;
    box-shadow:1px 1px 3px 2px #2b394a;
    padding: 2% 5% 2% 5%;
}
.privacyPolicy h1 {
    text-align:center;
}
.privacyPolicy a {
    color:#2b394a;
    font-style:underline;
}
.privacyPolicy p {
    margin-top:20px;
    margin-bottom:20px;
    text-align:justify;
}

/* PRIVACY POLICY SPECIFIC CSS END!!! */


/* SERVICES MASSAGE START!!! */

.massageMain {
    margin:230px 2% 50px 2%;
    background-color:#ffffff;
    box-shadow:1px 1px 3px 2px;
    padding:1% 5% 1% 5%;
}
.massageDesc {
    padding:1% 5% 0 5%;
}
.massageType p {
    font-size:2.4rem;
    font-weight:600;
}
.massageBody {
    padding-top:1%;
}
.massagePrice {
    padding-top:10px;
    padding-bottom:5px;
    margin-bottom:15px;
    box-shadow:0 2px 0 0;
}
.massageAddons {
    margin-top:3%;
    padding:0 10% 0 10%;
}
.massageAddons h2 {
    padding-bottom:1%;
}
.addonPrice {
    padding-bottom:1%;
}
.paymentOptions {
    margin:2%;
}
.paymentOptions h2 {
    margin-bottom:1%;
}

/* SERVICES MASSAGE END!!! */

/* SERVICES MICROBLADING START!!! */

.microMain {
    margin:230px 2% 50px 2%;
    background-color:#ffffff;
    box-shadow:1px 1px 3px 2px;
    padding:1% 5% 1% 5%;
}
.microDesc {
    padding:1% 5% 0 5%;
}
.microType p {
    font-size:2.4rem;
    font-weight:600;
}
.microBody {
    padding-top:1%;
}
.microPrice {
    padding-top:10px;
    padding-bottom:5px;
    margin-bottom:15px;
    box-shadow:0 2px 0 0;
}

/* SERVICES MICROBLADING END!!!*

/* TERMS & CONDITIONS SPECIFIC CSS START!!! */

.legalStuff {
    margin:230px 20% 2% 20%;
    background-color:#ffffff;
    box-shadow:1px 1px 3px 2px #2b394a;
    padding: 2% 5% 2% 5%;
}
.legalStuff h1 {
    text-align:center;
}
.legalStuff p {
    margin-top:20px;
    margin-bottom:20px;
    text-align:justify;
}

/* TERMS & CONDITIONS SPECIFIC CSS END!!! */

/* MEDIA QUERY AREA START!!! */

/* MEDIA QUERY TABLETS START!!! */

@media only screen and (max-width: 768px) {

    .siteImg {
        justify-content:space-evenly;
        width:70%;
    }
    .navBar {
        display:none;
    }
    .menuButton {
        background-color:#ffffff;
        border:none;
        border-radius:10px;
        padding:20px;
    }
    .menuButton:hover {
        box-shadow:0 3px 6px 0px;
    }
    .menuIcon {
        display:block;
        width:40px;
        padding:30px 30px 30px 60px;
    }
    .iconBar {
        width: 35px;
        height: 5px;
        background-color: #6F8FAF;
        margin: 6px 0;
    }
    .iconDrop {
        display:none;
        font-family: 'Cinzel', serif;
        position:absolute;
        background-color:#f1f1f1;
        right:0;
        min-width:160px;
        margin-top:25px;
        box-shadow:0 8px 16px 0;
        z-index:1;
    }
    .iconDrop a {
        background-color:#faf9f6;
        color: #6F8FAF;
        font-size:2rem;
        font-weight:600;
        padding: 12px 16px;
        text-decoration: none;
        text-transform:uppercase;
        display: block;
    }
    .iconDrop a:hover {
        background-color:#ddd;
    }
    .menuButton:hover {background-color: #ddd;}
    .menuIcon:hover .iconDrop {display: block;}
    .menuIcon:hover .iconDrop {background-color: #ffffff;}
    .splashPage {
        flex-direction:column;
        align-items:center;
        margin-bottom:50px;
    }
    .splashPic img {
        border:3px solid #2b394a;
    }
    .splashStuff {
        padding:10px;
        width:80%;
    }
    .splashText {
        padding:0;
    }
    .splashText h2 {
        padding:10px 0 10px 0;
    }
    .quoteBand {
        display:none;
    }
    .indexBody {
        padding:2% 15%;
    }
    .indexBody p {
        padding-top:2%;
    }
    .meetAndrea {
        flex-direction:column;
    }
    .andreaPic {
        display:flex;
        justify-content:center;
        border:none;
    }
    .andreaPic img {
        border:3px solid #2b394a;
        border-radius:10px;
    }
    .andreaBio {
        padding:10px 10%;
    }
    .customerReviews {
        padding:10px 10%;
    }
    .customerReviews h2 {
        padding-bottom:15px;
    }
    .customerReviews p {
        text-align:justify;
    }
    .reviewQuotes {
        padding-bottom:10px;
        padding-top:10px;
    }
    .contactAndrea {
        margin-top:20px;
    }
    .contactInfo {
        margin:1% 2% 1% 2%;
    }
    .massageDesc {
        text-align:justify;
    }
    .massageAddons {
        padding-top:30px;
    }
    .microDesc {
        text-align:justify;
    }
    .apptPolicy {
        margin:230px 5% 50px 5%;;
        text-align:justify;
    }
    .faqHeader p {
        padding:1% 5%;
        text-align:justify;
    }
    .expandPlease {
        padding:1% 5%;
    }
    .galleryIntro p {
        padding:1% 5%;
        text-align:justify;
    }
    .privacyPolicy {
        margin:230px 5% 50px 5%;
    }
    .covidProtocols {
        margin:230px 5% 50px 5%;  
    }
    .legalStuff {
        margin:230px 5% 50px 5%;
        text-align:justify;
    }
  }

/* MEDIA QUERY TABLETS START!!! */


/* MEDIA QUERY PHONES START!!! */

@media only screen and (max-width: 520px) {
    .siteHead {
        display:flex;
        flex-direction:column;
        align-items:center;
    }
    .siteImg {
        display:flex;
        flex-direction:column-reverse;
        align-items:center;
    }
    .menuIcon {
        display:flex;
        justify-content:center;
        align-self:center;
        width:100px;
    }
    .menuButton {
        margin-left:-30px;
        margin-top:-50px;
    }
    .iconBar {
        width: 100px;
        height: 10px;
        border-radius:20px;
        background-color: #6F8FAF;
        margin: 6px 0;
    }
    .iconDrop {
        align-items:center;
        right:17%;
    }
    .splashPage {
        margin-top:450px;
    }
    .splashPic img {
        width:100%;
        height:auto;
        max-width:80vw;
    }
    .splashPage h2 {
        font-size:2.4rem;
    }
    p {
        font-size:2rem;
    }
    .artistTitle {
        margin-top:415px;
    }
    .andreaPic img {
        max-width:80vw;
    }
    .andreaBio {
        text-align:center;
    }
    .andreaBio p {
        padding-bottom:10px;
    }
    .contactInfo {
        flex-direction:column;
        align-items:center;
    }
    .contactInfo a {
        padding-bottom:10px;
    }
    .massageMain {
        margin-top:450px;
    }
    .massageAddons h2 {
        font-size:2.8rem;
        padding-bottom:20px;
        text-align:center;
    }
    .addonPrice {
        padding-bottom:10px;
    }
    .paymentOptions h2 {
        font-size:2.8rem;
        text-align:center;
    }
    .microMain {
        margin-top:450px;
    }
    .microType p {
        font-size:2.4rem;
        padding-top:10px;
        text-align:center;
    }
    .apptPolicy {
        margin-top:450px;
    }
    .apptPolicy h2 {
        text-align:center;
    }
    .contactMain {
        margin-top:450px;
    }
    .contactText p {
        text-align:justify;
    }
    .faqHeader {
        margin-top:450px;
    }
    .galleryIntro {
        margin-top:450px;
    }
    .dealsMain {
        margin-top:450px;
    }
    .legalStuff {
        margin-top:450px;
    }
    .covidProtocols {
        margin-top:450px;
    }
    .privacyPolicy {
        margin-top:450px;
    }
    .footerDiv {
        flex-direction:column;
        align-items:center;
    }
}
/* MEDIA QUERY PHONES END!!! */



/* MEDIA QUERY AREA END!!! */


/* TEST CSS */


/* TEST CSS END */