@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');


/* 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;
}

/*end of css reset */


:root {
    --off-white: #F5F5F5;
    --yellow: #F6E5A5;
    --black: #1A1A1A;
    --blue: #1C5287;
    --dark-blue: #153D66;
    --white: #FAFAF5;
    --grey: #D9D9D9;
    --light-blue: #73ABE2;
    --error-red: #C62828;
    
}
body{
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.5;
    background-color: var(--off-white);
}

h1,
h2,
h3,
#siteNav a,
#hero p,
summary,
button,
.cta a,
#contact-cta a,
#services-cta a,
#intro a {
    font-family: "Montserrat", Arial, sans-serif;
}

.company-name{
    font-family: "warbler", serif;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.brand:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.company-name {
    font-size: 1.2rem;
    line-height: 1.1;
}

.company-name span {
    display: block;
}

.brand-blue-dark {
    color: var(--dark-blue);
}

.brand-blue-light {
    color: var(--blue);
}

body{
	line-height: 1.5;
    background-color: var(--off-white);
}

header {
    background-color: var(--off-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
footer {
    background-color: var(--yellow);
    display: grid;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
footer p{
    font-size: 12px;
    padding: 0 .75rem .5rem .75rem;
}
footer h2{
    padding-top: 0;
    padding-left: .75rem;
    padding-right:.75rem;
}
strong{
    font-weight: 800;
}

.logo {
    width: 75px;
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 36px;
    color: var(--blue);
	line-height: 1.1;
    font-weight: 500;
}

p, li{
	line-height: 1.5;
}

main section p{
	font-size: 1rem;

}
#hero p{
	font-size: 24px;
	padding-left: 2.5rem;
    font-weight:500;
    line-height:1.3;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    padding-bottom: 1rem;
}

#contact-hero img {
    width: 100%;
    height: 250px;      /* Pick whatever height you want */
    object-fit: cover;  /* Zooms in instead of stretching */
    object-position: center;
    display: block;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/*#contactpage{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}*/
#services-cta img, #contactpage {
    width: 100%;
    height: 250px;      /* Pick whatever height you want */
    object-fit: cover;  /* Zooms in instead of stretching */
    object-position: center;
    display: block;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


#intro{
	background-color: var(--blue);
	color: var(--white);
}

main section {
    padding: 1rem 1.5rem;
}

section h2 {
    margin-bottom: .5rem;
}

section p {
    margin-bottom: .5rem;
}

#key-services{
    margin-top: .5rem;
}

#intro a{
	display: inline-block;
    margin-top: .5rem;
	text-decoration: none;
	color: var(--blue);
	background-color: var(--white);
	padding: 10px 22px;
	border-radius: 20px;
	margin-left: .75rem;
    margin-bottom: .5rem;
    font-weight: 600;
}

#services-cta{
    display:grid;
    
}

#services-cta img{
    padding: 1rem 0;
}

.cta a,
#contact-cta a,
#services-cta a {
    display: inline-block;
    width: fit-content;
    justify-self: start;

    margin-top: .5rem;
    margin-left: .75rem;

    text-decoration: none;
    color: var(--white);
    background-color: var(--blue);

    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 600;
}

#contact-cta{
    display:grid;
}

#contact-cta img{
    padding-top: 1rem;
}

main ol {
    list-style-type: decimal;
    padding-left: 2rem;
	padding-right: .75rem;

}

#services-pricing-hero h1{
    padding-bottom:1rem;
}

#services-pricing-hero{
    display:grid;

}

.pricing-note {
    margin-top: .5rem;
    font-size: 14px;
    color: var(--black);
    font-style: italic;
}
.pricing-note h3 {
    font-style: italic;
}

/* ===== Contact Form ===== */

#contact-form-section form {
    box-sizing: border-box;

    background-color: var(--blue);
    color: var(--white);

    width: min(100%, 600px);
    margin: 2rem auto 1rem;
    padding: 1.5rem;

    display: grid;
    gap: 1rem;
}

#contact-form-section label {
    font-weight: 700;
    color: var(--white);
}

#contact-form-section input,
#contact-form-section textarea {
    width: 100%;
    box-sizing: border-box;

    background-color: var(--black);
    color: var(--white);

    border: 3px solid var(--white);
    border-radius: 8px;

    padding: 0.75rem;
    font: inherit;
}

#contact-form-section textarea {
    resize: vertical;
    min-height: 140px;
}

#contact-form-section input:focus,
#contact-form-section textarea:focus {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

#contact-form-section button {
    justify-self: center;

    background-color: var(--black);
    color: var(--white);

    border: 3px solid var(--white);
    border-radius: 999px;

    padding: 0.6rem 2rem;

    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

#contact-form-section button:hover {
    background-color: var(--yellow);
    color: var(--black);
}

#contact-form-section form + p {
    box-sizing: border-box;

    width: min(100%, 600px);
    margin: 0 auto;
    padding: 1rem 1.5rem 1.5rem;

    background-color: var(--blue);
    color: var(--white);
}
/*Hover Settings for the CTAs*/
.cta a,
#contact-cta a,
#services-cta a,
#intro a {
    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.cta a:hover,
#contact-cta a:hover,
#services-cta a:hover,
#intro a:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}


/*Hover Settings for the Contact Form*/
#contact-form-section button {

    transition:
        background-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

#contact-form-section button:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* Placeholder text */

#contact-form-section input::placeholder,
#contact-form-section textarea::placeholder {
    color: #B8B8B8;
    opacity: 1;
}

/* ==========================
   Form Validation
========================== */

/*fieldset part of form*/
/* ===== Preferred Contact Method ===== */
/* ===== Preferred Contact Method ===== */

.contact-preference {
    border: 3px solid var(--white);
    border-radius: 8px;
    padding: 1rem;
    margin: 0 0 1.5rem;
    background-color: var(--black);
}

.contact-preference legend {
    font-weight: 700;
    color: var(--white);
    padding: 0 .5rem;
}

.contact-preference legend span {
    font-weight: 400;
    font-size: .9rem;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: .75rem;
}

.contact-option {
    display: inline-flex;
    align-items: center;
    gap: .5rem;

    color: var(--white);
    font-weight: 700;
    cursor: pointer;
}

.contact-option input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: var(--yellow);
    cursor: pointer;
}

.contact-option:has(input:checked) {
    color: var(--yellow);
}

.form-error {
    display: none;
    color: var(--error-red);
    font-size: 0.9rem;
    margin-top: -0.5rem;
}

/* Invalid fields */

#contact-form-section input:invalid:not(:placeholder-shown),
#contact-form-section textarea:invalid:not(:placeholder-shown) {

    border: 3px solid var(--error-red);

}

/* Valid fields */

#contact-form-section input:valid,
#contact-form-section textarea:valid {

    border: 3px solid var(--light-blue);

}

/* Show error message */

#contact-form-section input:invalid:not(:placeholder-shown) + .form-error,
#contact-form-section textarea:invalid:not(:placeholder-shown) + .form-error {

    display: block;

}

/* Focus state */

#contact-form-section input:focus,
#contact-form-section textarea:focus {

    outline: none;

}

#contact-form-section input:valid,
#contact-form-section textarea:valid {

    border: 3px solid var(--light-blue);

    box-shadow: 0 0 8px rgba(115, 171, 226, .35);

}

#contact-form-section input:invalid:not(:placeholder-shown),
#contact-form-section textarea:invalid:not(:placeholder-shown) {

    border: 3px solid var(--error-red);

    box-shadow: 0 0 8px rgba(198, 40, 40, .25);

}

/*hamburger menu button and header*/

#menuBtn,
#closeBtn {
    background: none;
    border: none;
    cursor: pointer;
}

#menuBtn svg,
#closeBtn svg {
    width: 32px;
    height: 32px;
    stroke: var(--black);
    stroke-width: 2.5;
    stroke-linecap: round;
}

#siteNav {
    position: fixed;
    inset: 0;
    background-color: var(--off-white);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;
}

#siteNav.open {
    transform: translateX(0);
    opacity: 1;
}

#closeBtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

#siteNav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

#siteNav a {
    color: var(--black);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;

    padding: 0.4rem 0.4rem;
    border-radius: 6px;

    transition:
        background-color .2s ease,
        color .2s ease;
}

#siteNav a:hover{
    background-color: var(--black);
    color: var(--yellow);
    padding: 0.4rem 0.4rem;
    border-radius: 6px;
}

#siteNav a[aria-current="page"] {
    background-color: var(--black);
    color: var(--yellow);
    padding: 0.4rem 0.4rem;
    border-radius: 6px;
}

/* Temporarily remove the current-page highlight */
#siteNav a.current-inactive:not(:hover) {
    background-color: transparent;
    color: var(--black);
}

.no-scroll {
    overflow: hidden;
}

h2{
	background-color: var(--yellow);
	line-height: 1.2;
	font-size: 24px;
	padding-left:1rem;
	padding-top: .75rem;
	padding-bottom: .75rem;
    font-weight: 600;
}



main section p, main section h2, main section h1, main section a {
    padding-left: .75rem;
    padding-right: .75rem;
}

main section ul{
    list-style-type: disc;
    padding-left: 2rem;
	padding-right: .75rem;
}

main ul li, main ol li {
    margin-bottom: .5rem;
}


/*Calendly CSS Code*/
#schedule-booking {
    padding: 3rem 1rem;
}

.calendly-container {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 0;
}

.calendly-inline-widget {
    width: 100%;
}

/* ===== Contact Page FAQ Accordions ===== */

#frequently-asked-questions h2 {
    background-color: var(--yellow);
    color: var(--black);
}

/* FAQ item spacing */
.faq-item {
    margin-bottom: 0.5rem;
}

/* Hide default details arrow */
.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* FAQ clickable row */
.faq-item summary {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    color: var(--blue);
    background-color: transparent;

    cursor: pointer;
    font-weight: 700;

    padding: 1rem 0.75rem;
    margin-bottom: 0;

    transition: color 0.2s ease;
}

/* Divider line */
.faq-item summary::before {
    content: "";

    position: absolute;

    left: 0.75rem;
    right: 1.75rem;
    bottom: 0;

    height: 1px;
    background-color: var(--grey);

    transition: background-color 0.25s ease;
}

/* Custom chevron */
.faq-item summary::after {
    content: "";
    width: 10px;
    height: 10px;

    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);

    transform: rotate(45deg);
    transition:
        transform 0.25s ease,
        border-color 0.2s ease;

    flex-shrink: 0;
}

/* Hover state */
.faq-item summary:hover {
    color: #153D66;
}

.faq-item summary:hover::before {
    background-color: var(--blue);
}

.faq-item summary:hover::after {
    border-color: var(--blue);
    transform: rotate(45deg) scale(1.15);
}

/* Open state */
.faq-item[open] summary::before {
    background-color: var(--blue);
}

.faq-item[open] summary::after {
    transform: rotate(-135deg) scale(1.15);
    border-color: var(--blue);
}

/* Keyboard focus */
.faq-item summary:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

/* FAQ content */
.faq-item p,
.faq-item ul {
    padding: 0.75rem 0.75rem 0 0.75rem;
}


.faq-item li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
    margin-left: 1.5rem;
}

/* ===== Services/Pricing Accordions ===== */
.pricing-group summary span {
    font-size: 14px;
    font-weight: 600;
}

.pricing-note {
    margin: 1.25rem 0 0;
    padding: 0 0.75rem;
    font-size: 1rem;
    color: var(--black);
    font-style: normal;
}
h3{
    font-weight: 600;
}
.pricing-note h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-note ul {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.pricing-note li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pricing-category h2 {
    background-color: var(--yellow);
    color: var(--black);
}

/* Accordion group spacing */
.pricing-group {
    margin-bottom: 0.5rem;
}

/* Hide default details arrow */
.pricing-group summary {
    list-style: none;
}

.pricing-group summary::-webkit-details-marker {
    display: none;
}

/* Accordion clickable row */
.pricing-group summary {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    color: var(--blue);
    background-color: transparent;

    cursor: pointer;
    font-weight: 700;

    padding: 1rem 0.75rem;
    margin-bottom: 0;

    transition: color 0.2s ease;
}

/* Divider line */
.pricing-group summary::before {
    content: "";

    position: absolute;

    left: 0.75rem;
    right: 1.75rem;
    bottom: 0;

    height: 1px;
    background-color: var(--grey);

    transition: background-color 0.25s ease;
}

/* Custom chevron */
.pricing-group summary::after {
    content: "";
    width: 10px;
    height: 10px;

    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);

    transform: rotate(45deg);
    transition:
        transform 0.25s ease,
        border-color 0.2s ease;

    flex-shrink: 0;
}

/* Hover state */
.pricing-group summary:hover {
    color: #153D66;
}

.pricing-group summary:hover::before {
    background-color: var(--blue);
}

.pricing-group summary:hover::after {
    border-color: var(--blue);
    transform: rotate(45deg) scale(1.15);
}

/* Open state */
.pricing-group[open] summary::before {
    background-color: var(--blue);
}

.pricing-group[open] summary::after {
    transform: rotate(-135deg) scale(1.15);
    border-color: var(--blue);
}

/* Keyboard focus */
.pricing-group summary:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

/* Fade content in when opened */
.service-list {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pricing-group[open] .service-list {
    opacity: 1;
}

/* Service list content */
.service-list dt {
    font-weight: 700;
    padding: 0.75rem 0.75rem 0.25rem;
}

.service-list dd {
    line-height: 1.6;
    padding: 0.25rem 0.75rem;
}

/* Optional note styling */
.fee-note {
    font-style: italic;
}

@media screen and (min-width: 648px) {
    .pricing-category {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
        row-gap: 1rem;
    }
    
    .pricing-category h2 {
        grid-column: 1 / -1;
    }

    #services-pricing-hero{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    #services-pricing-hero h1{
        grid-column: 1;
    }
    
    #services-pricing-hero img{
        grid-column: 2;
        grid-row: 1 / span 10;
        width: 100%;
        height: auto;
    }
    
    #contact-hero{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    #contact-hero h1{
        grid-column: 1;
    }
    
    #contact-hero img{
        grid-column: 2;
        grid-row: 1 / span 10;
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }

    #services-cta, #contact-cta{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    #services-cta, #contact-cta h2{
        grid-column: 1;
    }
    
    #services-cta img, #contactpage{
        grid-column: 2;
        grid-row: 1 / span 10;
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto;
    }


}

@media screen and (min-width: 768px) {
    
    #home{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 0;
    }

    #home #hero, #home #intro, #home #key-services{
        grid-column: 1/-1;
    }

    #about{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 0;
    }

    #about #about-hero{
        grid-column: 1/-1;
    }

    #img1{
        grid-column: 2/-1;
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center;     /* Centers vertically */
    }

    #about-cindylou{
        grid-column: 1/2;
        grid-row: 2/3;
    }

    #img2{
        grid-row: 3/4;
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center;     /* Centers vertically */
    }

}

@media screen and (min-width: 860px){
    #menuBtn,
    #closeBtn {
        display: none;
    }

    #siteNav {
        position: static;
        transform: none;
        opacity: 1;
        background: none;
        display: block;
    }

    #siteNav ul {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    #siteNav a {
        font-size: 1.4rem;
    }

}

/*@media screen and (min-width: 900px){
    
}*/
@media screen and (min-width: 975px){
    .company-name span {
        font-size:1.75rem;
        
    }
    #siteNav a {
        font-weight:600;
    }
    #siteNav ul{
        gap:1.5rem;
    }
}

@media screen and (min-width: 1200px){
    #siteNav ul {
        gap: 1.75rem;
    }
    .company-name span {
        font-size:1.75rem;
        display: inline;
    }
    .company-name {
        white-space: nowrap;
    }
}
