/* M Pose Salon - Custom Styles */

/* CSS Variables */
:root {
    --primary: #ff6b6d;        /* main beauty pink */
    --primary-light: #ffd6d6;  /* soft blush pink */
    --primary-dark: #e0484a;   /* deep rose */

    --secondary: #fff5f5;      /* soft salon background */
    
    --text-main: #3a3a3a;      /* elegant dark text */
    --text-light: #8a8a8a;     /* subtle text */

    --accent: #d4af37;         /* luxury gold */
    
    --background: #ffffff;     /* clean white */
    --beige: #fff5f5;          /* beauty nude tone */
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-main);
}

/* Navbar Styles */
nav {
    background-color: var(--background) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    z-index: 1000 !important;
    position: fixed;
}

nav .brand-logo {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.3rem !important;
    color: var(--primary) !important;
    /* padding-left: 15px; */
}

nav ul li a {
    color: var(--text-main) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
}

nav ul li a:hover {
    color: var(--primary) !important;
    background-color: transparent !important;
}

.sidenav {
    background-color: var(--background);
    padding-top: 57px !important;
}

.sidenav li > a {
    color: var(--text-main) !important;
    font-weight: 500 !important;
}

.sidenav li > a:hover {
    background-color: var(--beige) !important;
}

.sidenav .sidenav-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: sticky;
    top: 0;
    padding: 20px;
    z-index: 1;
}
.teal-text{
    color: var(--primary) !important;
}

.sidenav .sidenav-header h5 {
    color: var(--text-main) !important;
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background-image: url('../images/about-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,248,245,0.9) 100%);
    pointer-events: none;
}

.hero-row {
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 60px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-highlights {
    margin: 30px 0;
}

.hero-highlights .highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-main);
}

.hero-highlights .highlight-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 35px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-description {
    margin: 20px 0;
    color: #666;
}


/* Section Styles */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--beige);
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.title-underline.left-align {
    margin-left: 0;
    margin-right: auto;
}

/* About Section */
#about{
    background-color: var(--beige);
}

.about-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.doctor-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.doctor-name i {
    margin-right: 8px;
    font-size: 20px;
}

/* Treatment Cards */
#treatments .row {
    display: flex;
    flex-wrap: wrap;
}

#treatments .col {
    display: flex;
}


.treatment-card {
     background: var(--background);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.treatment-card-content {
    flex-grow: 1;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 166, 154, 0.15);
    border-color: var(--primary-light);
}

.treatment-card .icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.treatment-card .icon-circle i {
    font-size: 32px;
    color: white;
}

.treatment-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.treatment-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.treatment-card .btn-small {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
    margin-top: auto;
}

.treatment-card .btn-small:hover {
    background-color: var(--primary);
    color: white;
}

/* Why Choose Us */
#features {
    background-color: var(--beige);}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary);
}

.feature-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}


/* Review Cards */
/* Make review row flex */
#reviews .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make columns stretch */
#reviews .col {
    display: flex;
}

.review-card {
    background: var(--background);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    /* height: 100%; */
    margin-bottom: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-top: 45px;
}

.review-card::before {
    content: '\201C';
    font-size: 60px;
    color: var(--primary-light);
    position: absolute;
    top: 5px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.review-card .stars {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.review-card .stars i {
    color: var(--accent);
    font-size: 18px;
}

.review-card p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-card .reviewer-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* services Section */

#services .row {
    display: flex;
    flex-wrap: wrap;
}

#services .col {
    display: flex;
}

.services-card {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(38, 166, 154, 0.15);
}

.services-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.services-card:hover .services-image img {
    transform: scale(1.08);
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 116, 141, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-card:hover .services-overlay {
    opacity: 1;
}

.services-overlay i {
    color: white;
    font-size: 36px;
}

.services-content {
    padding: 20px;
    text-align: center;
}

.services-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 8px;
}

.services-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}


/* Contact Section */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-item .icon-box i {
    color: white;
    font-size: 24px;
}

.contact-info-item .info-content h6 {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-item .info-content p {
    color: var(--text-main);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.contact-info-item .info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item .info-content a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Footer */
.page-footer {
    background-color: var(--text-main) !important;
    padding-top: 50px;
}

.page-footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.page-footer p, .page-footer li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}



.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
    color: var(--primary-light);
}


.page-footer a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-copyright {
    background-color: rgba(0,0,0,0.2) !important;
    padding: 15px 0;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
}

/* Floating Action Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.call {
    background-color: var(--primary);
}

.floating-btn i {
    color: white;
    font-size: 26px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary) !important;
    border-radius: 25px !important;
    padding: 0 30px !important;
    height: 45px !important;
    line-height: 45px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 15px rgba(38, 166, 154, 0.3) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    box-shadow: 0 6px 20px rgba(38, 166, 154, 0.4) !important;
}

.btn-outline {
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    border-radius: 25px !important;
    padding: 0 30px !important;
    height: 45px !important;
    line-height: 41px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    font-size: 1rem !important;
    box-shadow: none !important;
}

.btn-outline:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Utility Classes */
.flex-wrap {
    flex-wrap: wrap;
}

/* Responsive Styles */
@media only screen and (max-width: 1024px) {

    nav .brand-logo {
        font-size: 1.1rem !important;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    nav ul.right {
        display: none !important;
    }

    .sidenav-trigger {
        display: block !important;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}



@media only screen and (max-width: 992px) {
    nav .brand-logo {
        font-size: 1.1rem !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    
    .hero-row {
       display: flex;
        flex-direction: column;   /* stack vertically */
        align-items: center;
        text-align: center;
    }

    .hero-text {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-image-wrapper {
        order: 2;
        margin-top: 20px;
        width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 600px) {
    nav .brand-logo {
        font-size: 0.81rem !important;
        width: 75%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        /* line-height: 1.3; */
        white-space: normal;
    }

    
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .treatment-card {
        margin-bottom: 20px;
    }

    #reviews .col {
        margin-bottom: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .floating-btns {
        bottom: 20px;
        right: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn i {
        font-size: 22px;
    }
}

/* Scroll Offset for Fixed Navbar */
section[id] {
    scroll-margin-top: 70px;
}
