:root {
/* TEXT COLOR VARIABLES TO EASILY UPDATE SITE TEMPLATE */

    --accent-color1: #8c45a5; /* PURPLE - This is the primary accent color for the site, instead of using a hexadecimal code for the color, use this: var(--accent-color1) 
  ALSO, in the index.html file, search for this meta line and put the hexadecimal code for the color in this line:
    <meta name="theme-color" content="#0d8e90"> (this line cannot use the variable) */
  --accent-color-light: #be80c9; /* PURPLE LIGHT Hover rollover for buttons, typically a lighter version of the accent color, use var(--accent-color-light) */
  --accent-color-dark: #762d95; /* DARK PURPLE Used for background behind accent color 2, use var(--accent-color-dark) */
  --accent-color-darker: #5b137d; /* DARKER PURPLE Used for background behind accent color 2, use var(--accent-color-darker) */
  --accent-color-darkest: #42115c; /* X DARKEST PURPLE Used for background behind accent color 2, use var(--accent-color-darkest) */
    
  --accent-color2: #3c80b7; /* Light Blue - This is the secondary accent color for the site, use var(--accent-color2) */
  --accent-color2-lighter: #f8da6b; /* YELLOW - This is the secondary accent color for the site, use var(--accent-color2-lighter) */
  --accent-color2-light: #71c6e5; /* LIGHT Blue - This is the secondary accent color for the site, use var(--accent-color2-light) */
  --accent-color2-dark: #105094; /* Dark Blue - This is the secondary accent color for the site, use var(--accent-color2-dark) */
 
  --text-color1: #FFFFFF; /* WHITE Primary text color for paragraph body text, use var(--text-color1) */
  --text-color2: #fff0c0; /* YELLOW Accent text color for subheading text, use var(--text-color2) */
  --text-color3: #fff9e5; /* PALE YELLOW Slightyly darker accent text color for subheading text, use var(--text-color3) */
}

@charset "UTF-8";
/* Body */
html, body {
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    background-color: var(--accent-color2-light);
    margin: 0;
    font-style: normal;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
}
a {
    color: var(--accent-color2-lighter);
    text-decoration: none;
}
    a:hover {
    color: var(--accent-color2-light);    
}
h2 {
    color: var(--accent-color2-lighter);
    font-family: "Gwendolyn", "Great Vibes", "Alex Brush", "Updock", "Corinthia", script, cursive;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin: 0px;
    padding: 20px 10px 30px 10px;
}
h3 {
    color: var(--text-color1);
    padding-bottom: 12px;
}
.reviews a {
}


/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    background-color: var(--text-color1);
    min-height: 100vh; /* Ensure container spans full viewport height */
    overflow: hidden; /* Clip any overflow to hide body background */
}


/* Navigation Bar */
.navigation { /* FORMAT NAVIGATION BAR FOR DESKTOP */
  background-color: var(--accent-color-dark); /* Background bar color behind buttons */
  height: 50px; /* Height of bar containing buttons */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 20px 0; /* Determines the height of the bar that contains the buttons */
  box-sizing: border-box;
}

/* Navigation Bar DARK for FOOTER */
.navigation-dark {
  background-color: #262626; /* Background bar color behind buttons in FOOTER */
  padding-top: 40px; /* This adds extra padding above the footer navigation buttons */
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px; /* Minimum space between buttons */
  max-width: 1600px; /* Matches .container max-width at 1601px+ */
  width: 100%;
}

.navigation li {
  margin: 0;
}

/* Navigation Bar Buttons - Hover Effect */
.navigation a { /* FORMAT BLUE BUTTONS FOR DESKTOP */
  color: var(--text-color1); /* Text color on buttons */
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .09em;
  background-color: var(--accent-color2); /* Main Menu Button color */
  padding: 4px 10px; /* Consistent padding */
  border: none;
  border-radius: 15px; /* Radiused corners */
  font-size: 16px; /* Consistent font size */
  line-height: 24px; /* Height of the buttons */ 
  display: block;
  transition: all 0.3s linear; /* Smooth hover effect */
  white-space: nowrap;
}

.navigation a:hover {
  background-color: var(--accent-color2-lighter); /* Rollover color */
  color: var(--accent-color2-dark); /* Controls the text color on the button's hover rollover effect. */
}

/* Media query for tablet and phone (max-width: 600px) */
@media (max-width: 600px) {
.navigation { /* FORMAT NAVIGATION BAR FOR PHONE */
  height: 56px; /* Height of bar containing buttons */
  padding: 23px 0 25px 0; /* Determines the height of the bar that contains the buttons */
}
    
/* continue... @media (max-width: 600px) */
    /* Navigation Bar DARK for FOOTER for PHONE */
.navigation-dark {
  padding-top: 40px; /* This adds extra padding above the footer navigation buttons */
}
    
.navigation ul {
  gap: 3px !important; /* Minimum space between buttons */
}

.navigation a { /* FORMAT BUTTONS FOR PHONE */
  font-weight: 400;
  letter-spacing: .03em;
  padding: 4px 5px; /* Consistent padding */
  border-radius: 14px; /* Radiused corners */
  font-size: 13px !important; /* Consistent font size */
  line-height: 34px; /*  Height of the buttons */
}
  .navigation ul {
    gap: 5px 3px; /* 10px horizontal, 5px vertical gap between rows */
  }
    /* Enhance multi-row display */
  .navigation ul.multi-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navigation ul.multi-row li {
    width: 100%;
    text-align: center;
    margin-bottom: 5px; /* Ensure 5px vertical space */
  }
  .navigation ul.multi-row li:last-child {
    margin-bottom: 0; /* Remove margin from last item */
  }
}
/* END NAGIVATION BAR */


header {
    height: 100%;
    width: 100%;
    background: #FFFFFF;
}
.top-bar {
    height: 30px;
    text-align: center;
    background-color: var(--accent-color1);
    padding: 6px 0 5px 0;
    width: 100%;
}
.top-bar p {
    color: var(--text-color1);
    font-size: 18px;
    margin: 0 auto;
}
.top-page {
    position: relative;
}
/* === FULL SCREEN HERO IMAGE BACKGROUND  ===== */
.top-page.hero-background::before {
    content: "";
    background-attachment: fixed; /* Makes the background image stay fixed in place while the rest of the page scrolls (creates a parallax-like effect) */
    width: 100%; /* Positions the background image at the top-left corner of the parent. */
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-size: cover; /* Scales the background image to completely cover the entire element while maintaining aspect ratio (may crop parts of the image). */
    background-repeat: no-repeat;
    filter: brightness(74%); /* Darkens the background image, the lower the number, the darker the image */
    z-index: 1;                    /* Keeps it behind content */
    background-image: url("images/your-hero-image.jpg"); /* ←←← CHANGE THIS LINE TO YOUR IMAGE, Best image size: 1920px wide × 1080px tall (or larger) */
}
.top-page header, .top-page section {
    position: relative;
    text-align: center;
}

/* ===== Fonts From Google ===== */
.corinthia-regular {
  font-family: "Corinthia", cursive;
  font-weight: 400;
  font-style: normal;
}
.corinthia-bold {
  font-family: "Corinthia", cursive;
  font-weight: 700;
  font-style: normal;
}
.updock-regular {
  font-family: "Updock", cursive;
  font-weight: 400;
  font-style: normal;
}
.alex-brush-regular {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-style: normal;
}
.gwendolyn-regular {
  font-family: "Gwendolyn", cursive;
  font-weight: 400;
  font-style: normal;
}
.gwendolyn-bold {
  font-family: "Gwendolyn", cursive;
  font-weight: 700;
  font-style: normal;
}
.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}
.ephesis-regular {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-style: normal;
}
.kurale-regular {
  font-family: "Kurale", serif;
  font-weight: 400;
  font-style: normal;
}
.lusitana-regular {
  font-family: "Lusitana", serif;
  font-weight: 400;
  font-style: normal;
}
.lusitana-bold {
  font-family: "Lusitana", serif;
  font-weight: 700;
  font-style: normal;
}
.noto-serif-<uniquifier> {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.pt-serif-regular {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}
.pt-serif-bold {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}
.pt-serif-regular-italic {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: italic;
}
.pt-serif-bold-italic {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: italic;
}
.source-serif-4-<uniquifier> {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.newsreader-<uniquifier> {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.stix-two-text-<uniquifier> {
  font-family: "STIX Two Text", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.gelasio-<uniquifier> {
  font-family: "Gelasio", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.radley-regular {
  font-family: "Radley", serif;
  font-weight: 400;
  font-style: normal;
}
.radley-regular-italic {
  font-family: "Radley", serif;
  font-weight: 400;
  font-style: italic;
}
.habibi-regular {
  font-family: "Habibi", serif;
  font-weight: 400;
  font-style: normal;
}
/* ===== END Fonts From Google ===== */


.logo-text {
    color: var(--text-color1);
    font-size: 48px;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 20px 10px 2px 10px;
    font-family: "Updock", "Gwendolyn", "Great Vibes", "Alex Brush", "Ephesis", "Corinthia", script, cursive;
    box-sizing: border-box;
}
.logo-text-subhead {
    color: var(--text-color1);
    font-size: 40px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    margin: 0 auto 23px auto;
    padding: 0 10px;
    font-family: "Updock", "Gwendolyn", "Great Vibes", "Alex Brush", "Ephesis", "Corinthia", script, cursive;
}
hr.light-line {
    height: 0;
    display: block;
    width: 85%;
    margin: 20px 8%;
    border-bottom: 1px solid;
    border-color: rgba(255,255,255,0.3);
}
.hero_header {
    color: var(--text-color1);
    text-align: center;
    margin-top: 100px;
    margin-right: 0;
    margin-bottom: 0;
    letter-spacing: 2px;
    padding: 0 30px;
}
.tagline {
    width: 85%;
    margin: 15px auto;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    color: var(--text-color1);
    letter-spacing: 1px;
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
}
.intro {
  padding: 30px 20px;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}
.serviceslink {
  padding: 30px 20px;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}
/* Gain Clarity, Find Peace - small text under main image */
.intro h4 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 30px 10px 5px 10px;
    margin: 0;
    color: var(--accent-color-darkest);
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    font-style: normal;
}
.intro p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    padding: 10px 27px !important;
}
.serviceslink p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    padding: 0px 30px !important;
}
.about {
    background: var(--accent-color2);
    color: var(--text-color1);
    margin: 0;
}
/* About Section */
.about h2 {
    color: var(--accent-color2-lighter);
    text-align: center;
}
/* Over 20 Years of Experience */
.about h3 {
    font-size: 24px;
    font-weight: 400;
}
.about p {
    color: var(--text-color3);
}
.about .column.first {
    padding: 10px 40px 30px 40px;
}
.about .column.image {
    background-image: url(images/Spiritual-Advisor-Woman-Praying-115177591_1400x934.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 35% 50%;
    position: relative;
}
.about .column.image::before {
    content: "";
    display: block;
    padding-top: 100%;
}
.payment h2 {
    /* color: var(--accent-color2-lighter); */
    margin: 10px auto;
}
.light {
    font-weight: bold;
    color: #717070;
}
/* About Section */
.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.about .row {
    display: flex;
    flex-wrap: wrap;
}
.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1 1 auto;
    margin: 0;
    width: 45%;
    align-content: center;
    justify-content: center;
}
.about .column {
    flex: 1;
    box-sizing: border-box;
}
.column p {
    margin-top: 0;
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", "Radley", "Lusitana", "Kurale", Playfair Display, Century, Times New Roman, Cambria, Century Schoolbook, serif;
}
.one-col-img {
    margin: 20px auto;
    width: 95%;
}
.one-col-img2 {
    margin: 20px auto;
    width: 95%;
}
.one-col-img3 {
    margin: 20px auto;
    width: 95%;
}
.big-text {
    font-size: 20px;
    line-height: 26px;
}
.services {
    clear: both;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    align-content: flex-start;
    background-color: var(--text-color1);
    padding: 0 0 15px 0;
    margin: 0;
}
.services .service {
    width: 45%; /* 30.25% Makes 3 services wide on desktop computers */
    text-align: center;
    font-weight: 400;
    line-height: 1.2;
    padding: 20px 0;
    color: var(--text-color1);
}
.service img {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 12px;
}
.service h3 {
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    color: var(--text-color1); /* color of the service name headers */
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    margin: 15px 0 0px 0;
}
.service p {
    color: var(--text-color1);
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}
.payment {
    color: #333333;
    text-align: left;
    padding: 3px 20px 20px 20px;
}
.payment .row {
    align-content: center;
    text-align: center;
}
.payment .row .column {
    width: 30%;
}
/* ====== CALL NOW BUTTON ====== */
.button {
    font-size: 18px;
    font-weight: 700;
    background-color: var(--accent-color2);  /* Blue background */
    color: var(--text-color1);               /* White text */
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    width: 180px; /* Width of button */
    margin: 15px auto 20px auto; /* space above button */
    padding: 14px 20px; /* Button Size */
    text-align: center;
    border-radius: 30px;
    display: inline-block;           /* Important for clean hover */
    transition: all 0.3s linear;
    text-decoration: none;
}

.button a {
    color: var(--text-color1);  /* Font Color in Button, regular state) */
}

/* ==== CALL BUTTON HOVER ==== */
.button:hover {
    background-color: var(--accent-color2-lighter) !important;   /* Yellow background */
    color: var(--accent-color2-dark) !important;                 /* Dark text */
}

/* Make sure the link inside doesn't add extra styles */
.button a {
    color: inherit;    /* Inherit from parent */
    text-decoration: none;
    display: block;
}

.big-phone-number a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    padding: 0 0 35px 0;
    font-size: 25px;
    font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    letter-spacing: 0.10em;
}
.social {
    text-align: center;
    margin-bottom: 50px;
}
.white-on-teal {
    background-color: var(--accent-color1);
    color: var(--text-color2);
}
.white-on-dark-teal {
    background-color: var(--accent-color-darker);
    color: var(--text-color2);
}
.white-on-teal p {
    padding: 10px 0;
}
.add-padding-after {
    padding-bottom: 40px;
}
footer .location {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    margin: 0 0 20px 0;
    /* my version margin: 0 0 0 0; */
}

footer .location h3 {
    color: var(--text-color2);
    font-size: 28px;
    margin: 10px 0; /* Copies from styles.css that Grok adjusted, test to see if this helps fix the misalgined copyright section*/
   padding-top: 25px;
}
footer .location p { /* Tested font size and margin and has no affect on text in contact section*/
    color: var(--text-color1);
}
.storefront-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px auto;
    display: block;
}
footer #map-container {
    width: 100%;
    height: 375px;
    margin: 0;
}
footer {
    background-color: var(--accent-color-darker);
}
footer .footer_column {
   width: 100%; /* Ensures full width alignment */
    text-align: center;
    margin: 0 auto;
    padding: 0;
}
footer h2 {
    padding: 50px 10px 30px 10px;
}
footer p {
    color: var(--text-color3);
    padding: 0 40px;
    line-height: 1.4;
    font-size: 20px;
}

footer iframe {
    margin-top: 25px;
}
footer .button { /* Big Call Button, not Navigation buttons, those are under .navigation */
    margin-top: 15px;
    padding: 12px;
    background-color: var(--accent-color2-lighter);
    color: var(--text-color1);
}
footer .button a {
    color: var(--text-color1);
    text-decoration: none;
}
footer .button:hover {
    color: var(--accent-color2-lighter);
    background-color: var(--accent-color-darkest);
}
footer .col-padding {
    padding: 20px 30px;
}

/* ===== COPYRIGHT FOOTER ===== */
footer .copyright {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #262626;
    color: var(--text-color1);
    text-align: center;
    padding: 35px 40px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, serif;
    box-sizing: border-box;
}

footer .copyright p {
    margin: 0;
    padding: 0;
}

footer .copyright a {
    color: var(--accent-color2-lighter);
    text-decoration: none;
}

footer .copyright a:hover {
    color: var(--accent-color2-light);
}

/* Mobile */
@media (max-width: 600px) {
    footer .copyright {
        padding: 30px 20px;
        font-size: 14px;
    }
}
footer {
    display: block;
    width: 100%;
}
.hidden {
    display: none;
}
.center {
    text-align: center;
}
/* Footer Styles */
footer .footer_column {
    margin: 0 auto;
    text-align: center;
}
footer .location-text {
    flex: 1;
    padding-right: 20px; /* From styles.css */
    /* padding: 10px 20px; my version */
    text-align: center;
}
footer .location-text h3 {
    margin: 10px 0;
}
footer .location-text p {
    margin: 5px 0;
}
footer .slideshow-container {
    flex: 1;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    display: block;
}
footer .slideshow-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: none;
}
footer .slideshow-image[style*="display: block"] {
    display: block;
    width: 100%;
    max-width: 800px;
}
/* ====== FOOTER NAVIGATION HOVER FIX ====== */
.navigation.navigation-dark a {
    background-color: var(--accent-color2) !important;
    margin-top: 15px;
}

.navigation.navigation-dark a:hover {
    background-color: var(--accent-color2-lighter) !important;
    color: var(--accent-color2-dark) !important;
}

/* Override existing footer styles to align with new layout */
@media (min-width: 995px) {
    footer .footer_column {
        width: 100%;
        float: none;
    }
    footer .location {
        max-width: 1200px;
        margin: 0 auto;
    }
}

.reviews {
    background-color: var(--accent-color2);
    padding: 10px 0 20px 0;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0px;
}
.review-container {
    position: relative;
    max-width: 90%;
    margin: 0px auto 0px auto;
    overflow: hidden;
}
.review-slides {
display: flex;
flex-wrap: nowrap;
transition: transform 0.5s ease;
width: 100%;
}
.review-slide {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 20px 40px;
    text-align: center;
}
.reviewer-image {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin-bottom: 10px;
}

.review-slide h4 { /* Reviewer's name */
    color: var(--text-color1);
    font-size: 20px;
    margin: 10px 0 5px;
}
.stars {
    color: #FFD700;
    font-size: 1.3em;
    margin: 5px 0;
}
.review-date {
    color: var(--accent-color-light);
    font-size: 18px;
    margin: 8px 0 23px 0; /* Space befoe and after date in review */
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
}
.review-text {
    color: var(--text-color1);
    font-size: 19px;
    line-height: 1.35;
    margin: 10px 5px; /* the 2nd number is the R&L margin of the individual review's text. I increaed it from 0 tp 5px to keep the arrows off the text */
}
.review-arrow {
    position: absolute;
    top: 40%; /* Adjust the height of the arrows along the Review section */
    transform: translateY(-50%);
    background-color: var(--accent-color-darker);
    color: var(--text-color1);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prev {
    left: -1px;
}
.next {
    right: -1px;
}

@media (min-width: 601px) and (max-width: 750px) {
.reviewer-image { /* Scales down the reviewer image so they don't overlap when they 1st go to 2 on the screen */
    width: 215px;
    height: 215px;
}
    .review-arrow {
    top: 32%; /* Adjust the height of the arrows along the Review section */
}
}

@media (min-width: 995px) {
    .review-arrow {
        padding: 10px;
    }
    .payments-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        max-width: 650px;
    }
}
@media (max-width: 1200px) {
    footer .location {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0;
        margin: 0;
        display: block;
    }
    footer .location-text {
        text-align: center;
        margin-bottom: 20px;
        padding: 0;
    }
    footer .location-text h3 {
        text-align: center;
         margin: 10px 0;
    }
    footer .slideshow-container {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0 ;
        max-width: none;
        position: relative;

        box-sizing: border-box;
        display: block;
        overflow: hidden;
    }
    footer .slideshow-image {
        width: calc(100% - 30px);
        height: auto;
        object-fit: cover;
        margin: 0 auto;
        padding: 0;
        display: none;
    }
    footer .slideshow-image[style*="display: block"] {
        display: block;
        width: calc(100% - 30px);
    }
    footer .footer_column {
        width: 100%;
        float: none;
        text-align: center;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    footer .footer_column h2 {
        margin: 0 0 20px 0;
    }
    footer #map-container { /* continued @media (max-width: 1200px) */
        width: 100%;
        height: 375px;
        margin: 0;
    }
    footer .copyright {
        width: 100%;
        margin: 0;
    }
}
@media (max-width: 994px) {
    .top-bar {
        height: 30px;
    }
    .top-bar p {
        font-size: 14px;
        padding: 6px 0 4px 0;
    }
    .review-slide {
        min-width: 50%;
    }
    .review-arrow { /* Size of the arrows in phone screen size */
        padding: 5px;
        width: 35px;
        height: 35px;
    }
    .prev { /* This was -15px and that was cutting off the arrows on a phone */
        left: 2px;
    }
    .next {
        right: 2px;
    }
    .about .column.first {
    padding: 10px 30px 30px 30px;
}
    footer .footer_column p {
    padding: 0 30px;
}
   footer .copyright p {
       font-size: 12pt;
       padding: 10px 20px;
    }
}

@media (max-width: 320px) {
    .logo-text {
        width: 100%;
        font-size: 38px;
        text-align: center;
        padding: 20px 10px 8px 10px;
        margin: 0;
    }
    .logo-text-subhead {
        width: 100%;
        font-size: 30px;
        text-align: center;
        padding: 0 10px 20px 10px;
        margin: 0;
    }
    .top-bar {
        height: 40px;
    }
    .top-bar p {
        font-size: 14px;
    }
    header .button {
        display: none;
    }
    .column, .payment .row .column {
        width: 100%;
    }
    .intro {
        padding: 25px 0;
    }
    .serviceslink {
        padding: 25px 0;
    }
    .text_column {
        width: 100%;
        text-align: justify;
        padding: 0;
    }
    .service {
        width: 100%;
    }
    .service img {
        width: 100%;
        border-radius: 0;
        margin: 20px 0 0 0;
        border: none;
    }
    .services .service p {
        font-size: 20px;
        padding: 15px 10px;
    }
    .service h4 {
        color: var(--text-color1);
        font-size: 22px;
        margin-bottom: 0;
    }
    .intro h2 {
        padding: 20px 30px;
        font-style: italic;
    }
    .serviceslink h2 {
        padding: 20px 30px;
        font-style: italic;
    }
    .column-33 {
        width: 100%;
    }
    .footer_column {
        width: 100%;
        margin-top: 0;
    }
    .parallax {
        text-align: center;
        margin: 0;
        padding-top: 40%;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        width: 100%;
        font-size: 18px;
    }
    .parallax_description {
        padding: 0;
        width: 90%;
        margin: 25px 0 0 12px;
        float: none;
        text-align: center;
    }
    .banner {
        background-color: var(--accent-color1);
        background-image: none;
        background-attachment: scroll;
    }
    .shadow-container {
        padding-top: 20%;
}
    .tagline {
        margin-top: 20px;
        line-height: 22px;
    }
    .hero_header {
        font-size: 30px;
        padding: 0 10px;
        line-height: 22px;
        text-align: center;
        font-family: "Gelasio", "Habibi", "Source Serif 4", "PT Serif", "Noto Serif", "Newsreader", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    }
    .about {
        text-align: center;
    }
}
@media (min-width: 321px) and (max-width: 944px) {
    header {
        position: relative;
        width: 100%;
        display: flex;
        flex: 1 0 auto;
        align-content: center;
        flex-direction: column;
    }
    header .button {
        display: none;
    }
    .top-bar p {
        font-size: 16px;
    }
    .container, .column, .payment .row .column {
        width: 100%;
    }
    .logo-text {
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 20px 10px 10px 10px;
        font-size: 40px;
    }
    .logo-text-subhead {
        width: calc(100% - 20px);
        font-size: 32px;
        padding: 0 10px;
    }
    hr.light-line {
        display: flex;
        flex-wrap: wrap;
    }
    .about {
        text-align: center;
    }
    .intro {
        padding: 0;
    }
    .serviceslink {
        padding: 0;
    }
    .intro h4 {
        letter-spacing: 0.04em;
    }
    .about .row {
        flex-direction: column-reverse;
    }
    .one-col-img {
        width: 100%;
        border: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
        .one-col-img2 {
        width: 100%;
        border: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
        .one-col-img3 {
        width: 100%;
        border: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
    .text_column {
        width: 100%;
        text-align: left;
        padding: 0;
    }
    .services .service {
        width: 100%;
    }
    .services .service p {
        font-size: 18px;
        padding: 4px 20px;
    }
    .service img {
        width: 100%;
        border-radius: 0;
        margin: 20px 0 0 0;
        border: none;
    }
    .service h4 {
        color: var(--text-color1);
        font-size: 22px;
        margin-bottom: 0;
    }
    .footer_column {
        width: 100%;
        margin-top: 0;
    }
    .banner {
        background-attachment: scroll;
    }
    .parallax {
        text-align: center;
        margin: 0;
        padding-top: 40%;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
        width: 90%;
        font-size: 18px;
    }
}
@media (min-width: 945px) and (max-width: 1600px) {
    header {
        position: relative;
        width: 100%;
        display: flex;
        flex: 1 0 auto;
        align-content: center;
        flex-direction: column;
    }
    .logo-text {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        align-content: center;
        font-size: 44px;
        flex-grow: 1;
        text-align: center;
        margin: 0 auto;
        color: var(--text-color1);
        padding: 20px 20px 10px 20px;
    }
    .container, .text-column {
        width: 100%;
    }
    .service {
        width: 45%;
    }
    .banner {
        margin-top: 0;
        padding-top: 0;
    }
    .hero {
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 380px;
        margin-top: 0;
        background-position: right;
    }
    .one-col-img {
        object-fit: cover;
        object-position: 50% 50%; /* This is how to change the center point of the picture in the 1st teal-backed welcome style section */
        width: 100%;
        height: 100%;
        border: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
      .one-col-img2 {
        object-fit: cover;
        object-position: 49% 50%; /* Change the center point of an image, 1st number is right/left, 2nd is up/down. */
        width: 100%;
        height: 100%;
        border: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
    
        .one-col-img3 {
        object-fit: cover;
        object-position: 57% 50%; /* Change the center point of an image, 1st number is right/left, 2nd is up/down. */
        width: 100%;
        height: 100%;
        border: none;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
}
@media (min-width: 1601px) {
    .container {
        max-width: 1600px;
        margin: 0 auto;
    }
}
.review-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.review-slide h4 {
margin: 10px 0 5px;
}

.review-slide {
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
}

.review-text {
  margin-bottom: 10px;
}


@media (max-width: 600px) {
  .review-arrow {
    padding: 8px 12px;
    font-size: 16px;
  }
}

/* === LOGO SECTION - White Background === */
.top-page.logo-section {
    background-color: #FFFFFF !important;
    padding: 0px 15px 0px 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ==== Logo Image - Responsive ==== */
.logo-image {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Phone */
@media (max-width: 388px) {
    .logo-image {
        max-width: 90vw;
        max-height: 90vw;
    }
}

/* Logo Text - Teal on White Background */
.logo-text {
    color: var(--accent-color1) !important;   /* Teal text */
    text-shadow: none;
}

/* Make logo text a bit larger on desktop */
@media (min-width: 945px) {
    .logo-text {
        font-size: 52px;
    }
}


/* ====== MOTTO / BREAK SECTION WITH BACKGROUND IMAGE ====== */
.motto-section {
    position: relative;
    width: 100%;
    padding: 50px 0;   /* 50px top & bottom as requested */
    text-align: center;
    overflow: hidden;
    min-height: 160px;   /* Keeps it compact */
    display: flex;
    align-items: center;
    justify-content: center;
}

.motto-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    filter: brightness(50%);
}

.motto-section::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.40);
    z-index: 2;
}

.motto-section .motto-text {
    position: relative;
    z-index: 3;
    max-width: 1150px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    font-family: "Source Serif 4", "Habibi", "Gelasio", "PT Serif", "Newsreader", "Noto Serif", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    font-style: italic;
    font-size: 46px;
    line-height: 1.18;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--accent-color2-lighter);
    text-shadow: 0 3px 15px rgba(0,0,0,0.9);
    text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .motto-section {
        padding: 45px 0;
        min-height: 140px;
    }
    .motto-section .motto-text {
        font-size: 42px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .motto-section .motto-text {
        font-size: 38px;
        padding: 0 15px;
    }
}



/* ===== DISCLAIMER PAGE STYLING ===== */
.disclaimer {
    background: var(--accent-color2);
    color: var(--text-color1);
    margin: 0;
}

.disclaimer .column.first {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 30px 20px 30px;
    text-align: left;
}

.disclaimer h2 .disclaimerh2 {
    font-family: "Source Serif 4", "Habibi", "Gelasio", "PT Serif", "Newsreader", "Noto Serif", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    font-style: italic;
    font-size: 42px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--accent-color2-lighter);
    text-align: center;
}

.disclaimer h3 {
    color: var(--accent-color2-lighter);
    margin: 5px 0 25px 0;
    font-size: 22px;
}

.disclaimer p {
    line-height: 1.35;
    margin-bottom: 10px;
    text-align: left;
}

.disclaimer ol {
    padding-left: 25px;
    margin-bottom: 30px;
}

.disclaimer li {
    margin-bottom: 22px;        /* ≈ 2 <br> tags of spacing */
    padding-bottom: 4px;
    font-family:  "Habibi", "Source Serif 4", "PT Serif", "Newsreader", "Noto Serif", Century, Times New Roman, Cambria, Century Schoolbook, serif;
    line-height: 1.35;
    font-weight: 300;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .disclaimer .column.first {
        padding: 10px 20px 50px 20px;
    }
    .disclaimer li {
        margin-bottom: 20px;
    }
}

/* ====================== FIX FOOTER ON DISCLAIMER PAGE ====================== */
/* Reset footer h2 to normal styling */
footer h2 {
    color: var(--accent-color2-lighter);
    font-family: "Gwendolyn", "Great Vibes", "Alex Brush", "Updock", "Corinthia", script, cursive;
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 40px 10px 25px 10px;
}

footer h3 {
    color: var(--text-color1);
    padding: 0px 10px 12px 10px;
    padding-bottom: 12px;
}

/* Make sure disclaimer h2 doesn't affect footer */
.disclaimer h2 {
    font-family: "Source Serif 4", "Habibi", "Gelasio", "PT Serif", "Newsreader", 
                 "Noto Serif", Century, Times New Roman, Cambria, serif;
    font-style: italic;
    font-size: 46px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--accent-color2-lighter);
    text-align: center;
}
