:root {
    --custom-purple: #6a2c70;
    --custom-blue: #0099cc;
    --custom-yellow: #f9d749;
    --custom-magenta: #d90081;
    --custom-green: #8cc63f;
    --light-gray-bg: #e9f2fb;
    --step-box-bg: #f0f4f7;
    --testimonial-bg-1: #f0f4f7;
    --testimonial-bg-2: #e9ecef;
    --testimonial-bg-3: #8cc63f;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333;
}

.bg-custom-magenta { background-color: var(--custom-magenta); }

.text-custom-purple { color: var(--custom-purple); }
.text-custom-blue { color: var(--custom-blue); }
.bg-custom-yellow { background-color: var(--custom-yellow); }
.bg-custom-purple { background-color: var(--custom-purple); }
.bg-custom-blue { background-color: var(--custom-blue); }
.bg-custom-green { background-color: var(--custom-green); }
.bg-custom-magenta { background-color: var(--custom-magenta); }
.bg-light-gray { background-color: var(--light-gray-bg); }




.navbar-brand img {
    max-height: 40px;
}

.hero-section {
    padding: 0;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
}
.btn-custom-dark {
    background-color: #212529;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
}
.btn-custom-outline {
    background-color: transparent;
    color: #212529;
    border: 2px solid #212529;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
}

.wave-divider {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: -80px;
    margin-bottom: -1px;
}

.page-title-bar {
    background-color: var(--custom-purple);
    color: white;
    padding: 2rem 0;
}
.page-title-bar h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    border-bottom: 5px dotted #fff;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.page-title-bar .container > span {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.page-title-bar h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}
.breadcrumb-nav {
    font-size: 0.9rem;
    margin-top: 1rem;
}
.breadcrumb-nav a {
    color: #e9ecef;
    text-decoration: none;
}
.breadcrumb-nav span {
    color: white;
}

.register-bar {
    background-color: var(--custom-blue);
    color: white;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}
.register-bar a,
.register-bar a:visited{
	color: #fff;
	text-decoration: none;
}
.register-bar a:hover,
.register-bar a:focus,
.register-bar a:active {
	text-decoration: underline;
}

.gift-section {
    padding: 4rem;
    border-radius: 20px;
}
.btn-custom-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px 35px;
    font-weight: 600;
}
.gift-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.palette-image {
    -webkit-clip-path: url(#palette-clip);
    clip-path: url(#palette-clip);
    transform: scale(1.05);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}
.custom-list li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.5rem;
}
.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    transform: translateY(-50%);
    height: 0.5em;
    width: 0.5em;
    background-color: white;
    border-radius: 50%;
}

.how-it-works-section h2 {
    font-size: 3rem;
    font-weight: 700;
}
.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
    border: 5px solid white;
}
.step-number-1 { background-color: var(--custom-purple); }
.step-number-2 { background-color: var(--custom-magenta); }
.step-number-3 { background-color: var(--custom-green); }

/* .step-box {} */

.step-text {
    background-color: var(--step-box-bg);
    padding: 60px 20px 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.step-text h3 {
    font-weight: 700;
}

.btn-custom-outline-blue {
    background-color: transparent;
    color: var(--custom-blue);
    border: 2px solid var(--custom-blue);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
}
.btn-custom-outline-blue:hover {
    background-color: var(--custom-blue);
    color: white;
}


.testimonial-box {
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    font-style: italic;
}
.testimonial-box p:last-of-type {
    font-style: normal;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0;
}
.testimonial-box-1 { background-color: var(--testimonial-bg-1); }
.testimonial-box-2 { background-color: var(--testimonial-bg-2); }
.testimonial-box-3 { background-color: var(--testimonial-bg-3); color: white; }



.form-section {
    background-color: var(--custom-purple);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.form-section .form-label {
    margin-bottom: 0.5rem;
}
.form-section .form-control,
.form-section .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: none;
}
.btn-custom-dark {
    background-color: #212529;
    color: white;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    border: none;
}

.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding-top: 4rem;
}
.main-footer h5 {
    color: #f9d749;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.main-footer ul {
    list-style: none;
    padding: 0;
}
.main-footer ul li a {
    color: #ced4da;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.main-footer ul li a:hover {
    color: white;
}
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--custom-blue);
    color: white;
    font-size: 1.2rem;
    margin-right: 10px;
    text-decoration: none;
}
.footer-logo {
    max-width: 150px;
}
.footer-copyright {
    border-top: 1px solid #333;
    color: #ced4da;
    font-size: 0.9rem;
    background-color: #000;
}

hr.dotted {
    border: 5px dotted #000;
    opacity: 1;
    border-bottom: none;
}
#staff-members hr.dotted:last-child {
	display: none;
}

.sidebar {
    border-right: 5px dotted #000;;
}
.sidebar-title{
    border-bottom: 5px dotted #000;
}
.sidebar .nav-link {
    border: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    border-radius: 8px !important;
}
.sidebar .nav-link i {
    color: var(--custom-purple);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 25px;
}
.sidebar .nav-link.active {
    background-color: var(--custom-purple);
    color: white;
}
.sidebar .nav-link.active i {
    color: white;
}
.sidebar .nav-link span {
    color: var(--custom-purple);
    display: inline-block;
    margin-left: 10px;
    font-size: 1.2rem;
}

.studio-info-box {
    /* background-color: var(--light-gray-bg);
    padding: 1.5rem;
    border-radius: 8px; */
}
.studio-info-box p { margin-bottom: 0.5rem; }
.studio-info-box i { width: 20px; margin-right: 8px; }

.social-icons-sidebar a {
    font-size: 2rem;
    color: #333;
    margin-right: 15px;
}

.sidebar h2,
.sidebar h3,
.sidebar h4,
.content-section h2,
.content-section h3,
.content-section h4 {
    font-weight: 700;
    color: var(--custom-blue);
    margin-bottom: 1rem;
}
.alert-purple {
    background-color: var(--custom-purple);
    color: white;
    border-radius: 10px;
    border: none;
}
.alert-purple h4 { font-weight: 700; }
.alert-purple .btn-light {
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 25px;
}
.classes-offered-list {
    padding-left: 0;
    list-style-type: none;
}
.classes-offered-list li {
    margin-bottom: 0.5rem;
}
.classes-offered-list li::before {
    content: "•";
    color: var(--custom-purple);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}



.gallery-section {
    padding: 6rem 0;
}

.masonry-grid {
    column-count: 4;
    column-gap: 1rem;
}

.masonry-item {
    background-color: #ccc;
    display: inline-block;
    margin-bottom: 1rem;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

.placeholder-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}
.gray-1 { background-color: #333; height: 250px; }
.gray-2 { background-color: #555; height: 400px; }
.gray-3 { background-color: #777; height: 300px; }
.gray-4 { background-color: #999; height: 350px; }
.gray-5 { background-color: #bbb; height: 200px; }


@media (max-width: 992px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}


.section-title {
    color: var(--custom-blue);
    font-weight: 700;
    margin-bottom: 3rem;
}

.team-member-block {
    margin-bottom: 2.5rem;
}
.team-member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.team-member-block h4 {
    font-weight: 700;
    color: #000;
}

.blog-card {
    background-color: #fafafa;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-body h5 {
    font-weight: 700;
}
.blog-card-body .read-more {
    color: var(--custom-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}
.blog-card-body .post-date {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Buttons override */
.btn {
    padding: 15px 30px;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: 400;
}

/* Shape Dividers */
.has-shape-divider {
    position: relative;
}

.shape-divider {
    padding-top: 103px !important;
    padding-bottom: 103px !important;
}
.shape-divider--top {
    padding-top: 103px !important;
}
.shape-divider--bottom {
    padding-bottom: 103px !important;
}

.shaper-divider {
    position: absolute;
    width: 100%;
    min-height: 80px;
    left: 0;
    z-index: 1;
}

.page-template-location main#content{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.page-template-location .btn.btn-primary,
.page-template-location .btn.btn-primary:active,
.page-template-location .btn.btn-primary:visited {
    background-color: var(--custom-purple);
    border-color: var(--custom-purple);
    color: white;
}
.page-template-location .btn.btn-primary:hover {
    background-color: var(--custom-magenta);
    border-color: var(--custom-magenta);
    color: white;
}