﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    color: #333;
}

body {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size:50px;
    line-height:64px;
    color:#222;
}
h2 {
    font-size: 45px;
    line-height: 54px;
    color: #222;
}
h3 {
    font-size: 30px;
    line-height: 44px;
    color: #222;
}
h4 {
    font-size: 20px;
    color: #222;
}
h5 {
    font-size: 20px;
    color: #222;
}
h6 {
    font-size: 12px;
    font-weight: 700;
}

p {
    font-size:12px;
    color:#465b52;
    margin:15px 0 20px 0;
}
button.normal {
    font-size:14px;
    font-weight:600;
    padding:15px 30px;
    color:#000;
    background-color:#fff;
    border-radius:4px;
    cursor:pointer;
    border:none;
    outline:none;
    transition:0.2s;
}
.section-p1 {
    padding:40px 80px;
}
.section-m1 {
    margin:40px 0;
}
#header {
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 2px 2px 2px 2px;
    background: #fff;
    z-index: 99;
    position: sticky;
    top: 0;
    left: 0;
}
#header div{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#header #mlogo {
}
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}
#navbar li{
    list-style:none;
    padding:0 10px;
    position:relative;
}
#navbar li a{
    text-decoration:none;
    font-size:14px;
    color:#1a1a1a;
    transition:0.3s ease;
}
#navbar li a:hover,
#navbar li a.active{
    color: #088178;
}
#navbar li a:hover::after,
#navbar li a.active::after {
    content: "";
    width: 50%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 10px;
}
.slider {
    width:1300px;
    max-width:98vw;
    height:500px;
    margin:auto;
    position:relative;
    overflow:hidden;
}
.list {
    position:absolute;
    top:0;
    left:0;
    height:100%;
    display:flex;
    width:max-content;
    transition:1s;
}
.list img {
    width:1300px;
    max-width:100vw;
    height:100%;
    object-fit:cover;
}
.buttons {
    position:absolute;
    top:45%;
    left:5%;
    width:90%;
    display:flex;
    justify-content:space-between;
}
.buttons button {
    width:50px;
    height:50px;
    border-radius:50%;
    background-color:#fff5;
    color:#fff;
    border:none;
    font-family:monospace;
    font-weight:bold;
}
.dots {
   position:absolute;
   bottom:10px;
   color:#fff;
   left:0;
   width:100%;
   margin:0;
   padding:0;
   display:flex;
   justify-content:center;
}
.dots li {
    list-style:none;
    width:10px;
    height:10px;
    background-color:#fff;
    margin:20px;
    border-radius:20px;
    transition: 1s;
}
.dots li.active {
    width:30px;
}

/* =======================================================
   SALON STYLES START
   ======================================================= */

/* =======================================================
   GOOGLE FONT VARIABLES
   ======================================================= */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --pink-lightest: #ffe6ec;
    --pink-lighter: #ffd0dc;
    --pink-light: #ffb3c1;
    --pink-medium: #ff8aa9;
    --pink-strong: #ff6699;
    --gray-light: #f4f4f4;
    --text-dark: #333;
    --text-light: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
}
.HeadInfo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--pink-strong);
    margin: 0 auto,5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* =======================================================
   TOP BANNER
   ======================================================= */
.banner {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .banner-overlay h1 {
        color: var(--text-light);
        font-size: 3rem;
        font-family: var(--font-heading);
        text-shadow: 1px 1px 4px var(--shadow);
        padding: 0 20px;
    }

@media (min-width: 768px) {
    .banner-overlay h1 {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .banner-overlay h1 {
        font-size: 5rem;
    }
}

/* =======================================================
   INTRO SECTION (2–3 LINES ABOUT THE SALON)
   ======================================================= */
.intro {
    max-width: 800px;
    margin: 30px auto 20px;
    padding: 0 20px;
    text-align: center;
}

    .intro p {
        font-size: 1.125rem;
        font-family: var(--font-body);
        color: var(--text-dark);
        margin-bottom: 8px;
    }

@media (min-width: 768px) {
    .intro p {
        font-size: 1.25rem;
    }
}

/* =======================================================
   SECTION TITLE
   ======================================================= */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-family: var(--font-heading);
    color: var(--pink-strong);
    margin: 40px 0 20px 0;
    font-weight: 600;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

/* =======================================================
   SERVICES: FULL-WIDTH ROWS (IMAGE + TEXT)
   ======================================================= */
.services-section {
    width: 100%;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

    .service-row .image-container {
        flex: 0 0 40%;
        max-width: 40%;
        position: relative;
    }

        .service-row .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .service-row .text-container {
        flex: 0 0 60%;
        max-width: 60%;
        background-color: var(--pink-lightest);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .service-row .text-container h2 {
            font-size: 1.75rem;
            font-family: var(--font-heading);
            color: var(--pink-strong);
            margin-bottom: 12px;
            font-weight: 600;
        }

        .service-row .text-container ul {
            list-style: none;
            margin-bottom: 12px;
        }

            .service-row .text-container ul li {
                position: relative;
                padding-left: 24px;
                margin-bottom: 6px;
                font-size: 1.125rem;
                font-family: var(--font-body);
                color: var(--text-dark);
            }

                .service-row .text-container ul li::before {
                    content: '✔';
                    position: absolute;
                    left: 0;
                    color: var(--pink-strong);
                    font-size: 1rem;
                    line-height: 1;
                }

        .service-row .text-container p {
            font-size: 1rem;
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.6;
        }

    .service-row:nth-of-type(odd) .text-container {
        background-color: var(--pink-lighter);
    }

    .service-row:nth-of-type(even) .text-container {
        background-color: var(--pink-light);
    }

/* =======================================================
   FOOTER INFO (Location, Contact, Hours, Appointment)
   ======================================================= */
.footer-info {
    background-color: var(--gray-light);
    padding: 30px 20px;
}

    .footer-info .info-column {
        max-width: 800px;
        margin: 0 auto 20px;
        padding: 0 10px;
        text-align: center;
    }

        .footer-info .info-column h3 {
            font-size: 1.5rem;
            font-family: var(--font-heading);
            color: var(--pink-strong);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .footer-info .info-column p {
            font-size: 1rem;
            font-family: var(--font-body);
            color: var(--text-dark);
            margin-bottom: 6px;
        }

    .footer-info .appointment p {
        font-size: 1.125rem;
        font-family: var(--font-body);
        color: var(--pink-strong);
        margin-top: 12px;
        font-weight: 600;
    }

/* =======================================================
   RESPONSIVE BREAKPOINTS
   ======================================================= */
@media (min-width: 768px) {
    .banner {
        height: 900px;
    }

    .intro p {
        font-size: 1.25rem;
    }

    .service-row {
        height: 400px;
    }

        .service-row .image-container,
        .service-row .text-container {
            height: 100%;
        }
}

@media (max-width: 767px) {
    .banner {
        height: 220px;
    }

    .banner-overlay h1 {
        font-size: 2.25rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-row {
        flex-direction: column;
        height: auto;
    }

        .service-row .image-container,
        .service-row .text-container {
            flex: 0 0 100%;
            max-width: 100%;
            height: auto;
        }
}


@media screen and (max-width:768px) {
    .slider {
        height: 400px;
    }
}
#hero {
    background-image:url("../assets/img/banner1.png");
    height:90vh;
    width:100%;
    background-size:cover;
    background-position:top 0 right 0;
    padding:0 40px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}
#hero h4 {
    padding-bottom:15px;
}
#hero h1 {
    color:#088178;
}
#hero button {
    background-color:transparent;
    color:#088178;
    border:none;
    padding:14px 40px 14px 30px;
    background-repeat:no-repeat;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
}
#feature {
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}
#feature .fe-box {
    width:180px;
    text-align:center;
    padding:25px 15px;
    box-shadow: 20px 20px 34px rgba(0,0,0,0.03);
    border:1px solid #cce7d0;
    border-radius:4px;
    margin:15px 0;
}
#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(70,62,221,0.1);
}
#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
}
#feature .fe-box:nth-child(2) h6 {
    background-color: #cdebbc;
}
#feature .fe-box:nth-child(3) h6 {
    background-color: #d1e8f2;
}
#feature .fe-box:nth-child(4) h6 {
    background-color: #cdd4f8;
}
#feature .fe-box:nth-child(5) h6 {
    background-color: #f6dbf6;
}
#feature .fe-box:nth-child(6) h6 {
    background-color: #fff2e5;
}
#feature .fe-box img {
    width:100%;
    margin-bottom:10px;
}
#product1 {
    text-align:center;
}
#product1 .pro-container {
    display:flex;
    justify-content:space-between;
    padding-top:20px;
    flex-wrap:wrap;
}
#product1 .pro {
    width:23%;
    min-width:250px;
    padding: 10px 12px;
    border:1px solid #cce7d0;
    border-radius:25px;
    cursor:pointer;
    box-shadow:20px 20px 30px rgba(0,0,0,0.02);
    margin: 15px 0;
    transition:0.2s ease;
    position:relative;
}
#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0,0,0,0.06);
}
#product1 .pro img {
    width:100%;
    border-radius:20px;
}
#product1 .pro .des{
    text-align:start;
    padding: 10px 0;
}
#product1 .pro .des span{
    color:#606063;
    font-size:12px;
}
#product1 .pro .des h5 {
    color: #1a1a1a;
    padding-top:7px;
    font-size:14px;
}
#product1 .pro .des i {
font-size:12px;
color:rgba(243,181,25);
}
#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight:700;
    color: #088178;

}
#product1 .pro .cart {
    width:40px;
    height:40px;
    line-height:40px;
    border-radius:50px;
    background-color:#e8f6ea;
    font-weight:500;
    color:#088178;
    border:1px solid #cce7d0;
    position:absolute;
    bottom:20px;
    right:10px;
}

#banner{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background-image:url("/assets/img/banner1.png");
    width:100%;
    height:40vh;
    background-size:cover;
    background-position:center;
}
#banner h4 {
    color:#fff;
    font-size:16px;
}
#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span{
    color: #ef3636;
}
#banner button:hover {
background:#088178;
color:#fff;

}
