/*
Theme Name: Beauty Home Services Pro
Theme URI: https://beautyhomeservices.in
Author: Deepti Kuthari
Author URI: https://beautyhomeservices.in
Description: Premium WordPress Theme for Beauty Salon at Home, Spa, Makeup, Hair, Bridal and Home Services. Responsive, Bootstrap 5, Gutenberg Compatible.
Version: 1.0.0
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: beauty-home-services-pro
Tags: custom-logo, custom-menu, featured-images, full-width-template, one-column, two-columns, right-sidebar, left-sidebar, editor-style, translation-ready, bootstrap, responsive, blog, ecommerce
*/

/*==================================================
    CSS VARIABLES
==================================================*/

:root{

    --primary:#E91E63;
    --secondary:#6C63FF;
    --success:#22C55E;
    --warning:#F59E0B;
    --danger:#EF4444;

    --dark:#111827;
    --gray:#6B7280;
    --light:#F9FAFB;
    --white:#ffffff;

    --border:#E5E7EB;

    --radius:16px;
    --radius-lg:24px;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/*==================================================
    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    "Inter",
    "Segoe UI",
    sans-serif;

    font-size:16px;
    line-height:1.7;

    color:var(--dark);
    background:#fff;

    overflow-x:hidden;

}

img{

    max-width:100%;
    height:auto;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;
    transition:var(--transition);

}

ul{
    list-style:none;
}

button,
input,
select,
textarea{

    font-family:inherit;
    outline:none;

}

/*==================================================
    CONTAINER
==================================================*/

.container{

    width:100%;
    max-width:1320px;

    margin:auto;

    padding-left:15px;
    padding-right:15px;

}

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;
    margin-bottom:50px;

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:var(--dark);

}

.section-title p{

    color:var(--gray);
    margin-top:12px;

}

/*==================================================
    BUTTONS
==================================================*/

.btn{

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

    padding:14px 30px;

    border-radius:50px;

    cursor:pointer;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--primary);
    color:#fff;

}

.btn-primary:hover{

    background:#c2185b;

}

.btn-outline{

    border:2px solid var(--primary);
    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);
    color:#fff;

}

/*==================================================
    CARDS
==================================================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.4s;

}

.card:hover{

    transform:translateY(-8px);

}

/*==================================================
    SPACING
==================================================*/

.mt-5{
    margin-top:3rem;
}

.mb-5{
    margin-bottom:3rem;
}

.py-5{
    padding:5rem 0;
}

/*==================================================
    UTILITIES
==================================================*/

.text-center{
    text-align:center;
}

.text-white{
    color:#fff;
}

.bg-light{
    background:var(--light);
}

.bg-primary{
    background:var(--primary);
}

.rounded{
    border-radius:var(--radius);
}

/*==================================================
    ANIMATIONS
==================================================*/

.fade-up{

    animation:fadeUp .7s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:991px){

    .section{

        padding:70px 0;

    }

    .section-title h2{

        font-size:34px;

    }

}

@media(max-width:767px){

    body{

        font-size:15px;

    }

    .section{

        padding:50px 0;

    }

    .section-title{

        margin-bottom:35px;

    }

    .section-title h2{

        font-size:28px;

    }

    .btn{

        width:100%;

    }

}