/*
Theme Name: TinyHugs
Author: Your Name
Description: A custom theme for TinyHugs.
Version: 1.0
*/

/*
==========================================================================
    FONTS FROM OLD SITE
==========================================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

html body {

    color: #333;
    overflow-x: hidden;
    font-size: 18px;
}

/* Colors */
:root {
    --green: #a4c919;
    --dark-teal: #2b7d8c;
    --light-blue: #2AAFD3;
    --pink: #e88fa2;
    --yellow: #FFC837;
    --light-gray: #f8f9fa;
    --gray: #4D4D4F;
}

/* Container */
.container {
    max-width: 90% !important;
    width: 90%;
}

.h-pd-1{
    padding: 3rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    background-color: white !important;
    transition: all 0.3s ease;
}

#navbarNav > .navbar-nav{
    margin-right: 5.5rem;
}

.navbar-brand img {
    max-height: 60px;
    width: 100%;
    max-width: 150px;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}



.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .menu-item   a{
    color: var(--gray);
}
header .navbar-nav{
    display: flex;
    align-items: center;
    gap: 2rem;

    a{
        font-size: 22px;
        text-decoration: none;
    }
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--green);
}

.btn-primary-custom {
    background-color: var(--green);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #8fb015;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 201, 25, 0.3);
}

.btn-secondary-custom {
    background-color: var(--green);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: #8fb015;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 201, 25, 0.3);
    color: white;
}

body .btn-pink {
    background-color: var(--pink);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-pink:hover {
    background-color: #d67a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 143, 162, 0.3);
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Section Styles */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title.text-center {
    display: block;
    font-weight: 800;
}




section {
    padding: 80px 0 !important;
}

body .text-primary {
    color: var(--light-blue) !important;
}

.text-pink {
    color: var(--pink) !important;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-green {
    color: var(--green) !important;
}

.rounded-custom {
    border-radius: 20px;
}


.w-90{
    width: 90%;
}


/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--green) 0%, #8fb015 100%);
    padding: 60px 0 30px;
    color: white;
    position: relative;
}

.footer-section a {
    color: white;
    line-height: 1.9;
    font-size: 1.25rem;
}
.footer-section p a{
    font-size: 1.5rem;
}

.footer-section h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.footer-section p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav .nav-link::after {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 50px;
    }
    #navbarNav > .navbar-nav{
        margin-right: 0rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 60px;
    }

    section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-pink {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.booking-modal-content {
    background: white;
    border-radius: 100px 10px 100px 10px;
    max-width: 610px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    margin: auto;
    position: relative;
}
form#bookingForm,
.schedule-form{
    width: 80%;
    margin: 0 auto;
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: 2px solid #e9ecef;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
}

.booking-modal-close:hover {
    background: #f8f9fa;
    border-color: var(--green);
    transform: rotate(90deg);
}

.booking-modal-close svg {
    width: 20px;
    height: 20px;
}

.booking-modal-body {
    padding: 50px 40px 40px;
}

.booking-modal-title {
    text-align: center;
    margin-bottom: 35px;
}

.booking-modal-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin: 0 0 10px 0;
}

.booking-modal-title p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.booking-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.booking-form .required {
    color: var(--pink);
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form select,
.booking-form textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(164, 201, 25, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.form-actions .btn-submit {
    /*background-color: var(--green);*/
    color: white;
    padding: 14px 50px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.form-actions .btn-submit:hover {
    background-color: #8fb015;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 201, 25, 0.3);
}

.form-actions .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        max-width: 100%;
        border-radius: 15px;
    }

    .booking-modal-close {
        top: 5px;
        right: 5px;
        width: 36px;
        height: 36px;
    }

    .booking-modal-body {
        padding: 45px 25px 30px;
    }

    .booking-modal-title {
        margin:  0 auto;
        margin-bottom: 30px;
        max-width: 80%;

    }

    .booking-modal-title h2 {
        font-size: 1.6rem;
    }

    .booking-modal-title p {
        font-size: 1.05rem;
    }

    .booking-form .form-group {
        margin-bottom: 15px;
    }

    .form-actions .btn-submit {
        width: 100%;
        min-width: auto;
    }
    .h-pd-1 {
        padding: 0.5rem;
    }
    .container-fluid .h-pd-1 {
        padding: 2rem;
    }
    .navbar-collapse{
        text-align: center;
    }
    #headerBookingBtn{
        margin-top: 10px;
    }
}

/* Multi-step Schedule Form Styles */
.schedule-modal-content {
    max-width: 610px;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px 20px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .progress-number {
    background: var(--green);
    color: white;
    transform: scale(1.1);
}

.progress-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.progress-step.active .progress-label {
    color: var(--dark-teal);
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 10px 25px;
}

.form-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.schedule-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.schedule-form .required {
    color: var(--pink);
}

.schedule-form input[type="text"],
.schedule-form input[type="tel"],
.schedule-form select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.schedule-form input:focus,
.schedule-form select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(164, 201, 25, 0.1);
}

.schedule-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.schedule-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.schedule-checkbox-group {
    margin: 0;
}

.schedule-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    color: #333;
    margin: 0;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-checkbox-label:hover {
    border-color: var(--green);
    background: rgba(164, 201, 25, 0.05);
}

.schedule-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--green);
}

.schedule-checkbox-label span {
    font-weight: 500;
}

.form-navigation {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-next,
.btn-prev {
    padding: 14px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn-next {
    background-color: var(--green);
    color: white;
}

.btn-next:hover {
    background-color: #8fb015;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 201, 25, 0.3);
}

.btn-prev {
    background-color: white;
    color: var(--dark-teal);
    border: 2px solid var(--dark-teal);
}

.btn-prev:hover {
    background-color: var(--dark-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 65, 71, 0.2);
}

.schedule-form .btn-submit {
    background-color: var(--green);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.schedule-form .btn-submit:hover {
    background-color: #8fb015;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(164, 201, 25, 0.3);
}

.schedule-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.bg-image-section {
    width: 100%;
    height: 360px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

footer .widget.widget_nav_menu{
 ul{
     list-style: none;
     margin-left: 2rem;
     li{
         margin: 10px 0;

         a{
             font-size: 1.5rem;
         }
     }
 }
}
.footer-section .privacy-text-copy{
    font-size: 1.5rem;
    color: white!important;
}
/* Schedule Form Responsive */
@media (max-width: 768px) {
    .schedule-modal-content {
        max-width: 95%;
    }

    .form-progress {
        padding: 20px 15px 15px;
        gap: 0;
    }

    .progress-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .progress-label {
        font-size: 0.8rem;
    }

    .progress-line {
        width: 50px;
        margin: 0 5px 20px;
    }

    .schedule-options {
        gap: 12px;
    }

    .schedule-checkbox-label {
        font-size: 1rem;
        padding: 10px 12px;
    }

    .schedule-checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .btn-next,
    .btn-prev,
    .schedule-form .btn-submit {
        width: 100%;
        min-width: auto;
    }
}
@media (max-width: 476px) {

  body .footer-section a {
        color: white;
        line-height: 1.9;
        font-size: .9rem;
    }
    .footer-section .privacy-text-copy{
        font-size: 0.9rem;

    }
    .footer-section{
        padding-top: 10px;
    }
    .footer-section .container{
        width: 100%;
        max-width: 100%;
    }
    .footer-section .btn{
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
