/*ALL CSS Variables*/
:root {
    --primary-color: #1886a0;
    --accent-color: #D4AF37;
    --secondary-color: #5BA3B2;

    --text-color: #003A4A;
    --text-light: #F2F2F2;
    --text-highlight: #006b87;

    --font-primary: "Optima", "Segoe UI", "Candara", "Calibri", sans-serif;
    --font-secondary: Arial, Helvetica, Sans-serif; 
}

html {
    scroll-behavior: smooth;
}

/*ALL resets*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p
{
    line-height: 1.75rem;
    text-align: justify;
    color: #333333;
    font-family: var(--font-primary);
    padding-bottom: 1rem;
}

a {
    font-family: var(--font-secondary);
}

.cursive
{
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    font-family: var(--font-secondary);
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: var(--text-color);
}

h3 {
    font-size: 1rem;
    margin: 1rem;
}

h4 {
    font-family: var(--font-secondary);
}

ul
{
    font-family: var(--font-primary);
    padding-left: 3rem;
    font-size: 1rem;
    color: var(--text-color);
}

ul.selector 
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
}

li
{
    padding: 0.5rem;
}

label
{
    font-family: var(--font-secondary);
}

.highlight
{
    color: #006b87;
}

/*ALL Header*/
header
{
    display: flex;
    flex-direction: row;
    background-color: var(--primary-color);
    justify-content: space-between;
    height: fit-content;
    max-width: 100%;
    overflow: hidden;
    position: sticky;
    z-index: 2;
}

@media (max-width: 768px)
{
    nav 
    {
        flex-wrap: nowrap;
        margin-left: 0;
        width: 100%;
    }
}

#logo 
{
    margin: 5px;
    max-width: 110px;
}

@media (max-width: 480px)
{
    #logo
    {
        max-width: 70px;
    }
}

nav
{
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    left: 0px;
    white-space: nowrap;
    margin: auto 0;
}

nav a 
{
    text-decoration: none;
    color: var(--text-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 1.25;
}

nav a:hover 
{
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    cursor: pointer;
}  

nav a:not(:has(img))
{
    padding: 5px 0px;
}

@media (max-width: 768px) 
{
    nav 
    {
        display: flex;
        background-color: var(--primary-color);
        flex-direction: column;
        position: fixed;
        justify-content: center;
        left: 100%;
        top: 8rem;
        gap: 2rem;
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
        white-space: initial;
        padding: 10px 0px;
    }
}

@media (max-width: 480px) 
{
    nav 
    {
        display: flex;
        background-color: var(--primary-color);
        flex-direction: column;
        position: fixed;
        justify-content: center;
        left: 100%;
        top: 5rem;
        gap: 2rem;
        width: 100%;
        text-align: center;
        flex-wrap: wrap;
        white-space: initial;
        padding: 10px 0px;
    }
}

nav.active 
{
    left: 0;
    transition: left 0.3s ease-in-out;
}

#hamburger 
{
    visibility: hidden;
    width: 100px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

@media (max-width: 768px) 
{
    #hamburger 
    {
        visibility: visible;
        display: block;
        cursor: pointer;
        align-self: center;
    }
}

.hamburger.active .bar:nth-child(2) 
{
    opacity: 0;
}
  
.hamburger.active .bar:nth-child(1) 
{
    transform: translateY(10px) rotate(45deg);
}
  
.hamburger.active .bar:nth-child(3) 
{
    transform: translateY(-10px) rotate(-45deg);
}

.bar 
{
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--text-light);
    margin: 5px auto;
    padding: 0px 10px;
    transition: background-color 0.3s ease;
}

@media (max-width: 480px)
{
    .bar
    {
        width: 35px;
        height: 3px;
    }
}

.hidden {
    display: none !important;
    transition: all 0.25s ease-in;
}

/*MAIN Hero Page*/
.mainHero
{
    display: flex;
    flex-direction: column;
    color: aliceblue;
    position: relative;
    justify-content: center;
    background-image: url("./images/meditationHero.jpg");
    text-align: center;
    align-items: center;
    background-position: bottom;
    background-size: cover;
    height: 600px;
}

.heroText
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 1;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    line-height: 2rem;
}

.heroText p 
{
    color: var(--text-light);
}

.goldenHighlight {
    color: var(--accent-color);
}

.mainHero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}

.mainHero a
{
    text-decoration: none;
    padding: 20px;
    font-size: 1rem;
    background-color: rgba(212, 175, 55, 0.338);
    color: var(--text-light);
    border-radius: 10px 5px;
    border: black solid 2px;
}

.mainHero a:hover {
    padding: 25px;
    background-color: var(--accent-color);
    color: var(--text-light);
    border-radius: 5px 10px;
    transition: all 0.25s ease-in-out;
}

/* MAIN Alternative Hero */

.hero 
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/meditationHero.jpg') center/cover no-repeat;;
    color: white;
    padding: 6rem 2rem;
    min-height: 80vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}

.heroContent
{
    max-width: 900px;
}

.heroContent p
{
    color: #F2F2F2;
    margin-bottom: 2rem;
}

.headlineImg
{
    width: 500px;
    margin-bottom: 1rem;
}

.heroButtons
{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn 
{
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.275rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.primary
{
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn.secondary 
{
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn:hover
{
    transform: translateY(-2px);
    opacity: 0.9;
}

/*MAIN About me & Services */

.iAm 
{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 991px)
{
    .iAm
    {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) 
{
    .iAm img
    {
        max-width: 100px;
        align-self: center;
    }
}

.container 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8rem;
    margin: 0px auto;
    padding: 100px 200px;
}

@media (max-width: 991px) 
{
    .container 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 30px auto;
        padding: 20px 20px;
        gap: 1rem;
    }
    .aboutImg, .servicesImg
    {
        max-height: 400px;
        width: auto;
        object-fit: cover;
        max-width: 300px;
        box-shadow: 20px 20px  rgba(91, 163, 178, 0.87);
    }
}

@media (max-width: 480px) 
{
    .container 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 400px;
        margin: 30px auto;
        padding: 20px 20px;
        gap: 1rem;
    }
    .aboutImg, .servicesImg
    {
        max-height: 300px;
        width: auto;
        object-fit: cover;
        max-width: 200px;
    }
}

article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem auto;
}

article a {
    border: var(--text-color) solid 2px;
    padding: 10px 20px;
    margin: 10px auto;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 10px;
    align-self: center;
    background-color: var(--primary-color);
}

.aboutImg 
{
    flex: 1;
    max-height: 700px;
    width: auto;
    max-width: 400px;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 40px 30px rgba(91, 163, 178, 0.87);
}

.servicesImg 
{
    flex: 1;
    max-height: 700px;
    width: auto;
    max-width: 400px;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: -40px 30px rgba(91, 163, 178, 0.87);
}

/* MAIN Divider */
.divider 
{
    height: 500px;
    margin: 100px 0px;
    background-image: url(./images/Untitled\ design.png);
    background-position: center 65%;
    background-size: cover;
    text-align: center;
}


/*MAIN Testimonials */

.containerTestimonials
{
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    background-image: url(./images/goldenStar.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
}

@media (max-width: 480px)
{
    .containerTestimonials h2
    {
        max-width: 320px;
        text-align: center;
    }
}

.testimonials 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials article
{
    flex: 1 1 350px;
    box-sizing: border-box;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: var(--text-light);
    padding: 40px;
    font-family: sans-serif;
    color: var(--text-variant);
    border-radius: 0.375rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

@media (max-width: 480px)
{
    .testimonials article
    {
        display: flex;
        flex: 1 1 320px;
    }
}

/*CONTACT Hero Page */
.contactHero
{
    color: aliceblue;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url("./images/contactHandsAlt.png");
    background-repeat: no-repeat;
    text-align: center;
    background-size: cover;
    align-items: center;
    background-position: center;
    height: 400px;
}

.contactHero img 
{
    z-index: 1;
    width: 30%;
    align-self: center;
}

.contactHero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Adjust the color and transparency */
    z-index: 1;
}

/*CONTACT Page */

.contactForm
{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: rgb(237, 236, 236);
    border-radius: 0.275rem;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

input, select, textarea
{
    padding: .5rem;
    border: 2px ridge #f4f4f4;
}

select:invalid
{
    color: grey;
}

/*SERVICES Hero Page */

.servicesHero 
{
    display: flex;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/butterflyBackground.png') center/cover no-repeat;;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 400px;
}

.signatureHeading
{
    width: 40%;
    position: absolute;
    right: 600px;
    top: 230px;
    z-index: 2;
}

.one
{
    position: relative;
    top: 110px;
    right: 110px;
    opacity: .7;
}

.spiral
{
    z-index: 1;
    position: relative;
    right: 500px;
    height: 500px;
    top: -90px;
    transform: rotate(45deg);
    opacity: .7;
    background-size: cover;
}

.neurons img {
    max-width: 500px;
}

/* SERVICES Page */

.imgHeading 
{
    width: 30%;
    align-self: center;
}

.package {
    display: flex;
    flex-direction: column;
    padding: 20px 150px;
    align-content: center;
    font-family: var(--font-primary);
    text-align: center;
}

.package li {
    list-style-type: disc;
    margin: 10px;
}

.package p:not(#Soul p) {
    margin-bottom: 20px;
}

.sub {
    text-align: center;
    
}

/* ABOUT ME Page */

.greyBox
{
    background-color: rgb(245, 245, 245);
    border-radius: 0.275rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* TEMPORARY Page */

.temporary
{
    height: 20px;
    text-align: center;
}

/*ALL Footer */
footer 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--primary-color);
    align-items: center;
    color: var(--text-light);
    height: fit-content;
    gap: 1rem;
    padding: 20px;
}

footer h2 
{
    color: var(--text-light);
    font-size: 1.5rem;
}

footer p 
{
    color: var(--text-light);
    padding-bottom: 0px;
}

.footLink {
    color: var(--text-light);
    text-decoration: none;
    padding: 7px;
}

footer div 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 400px;
    margin: 20px auto;
}