:root {
    --primary-mint: #ecdce6;
    --dark-teal: #e1aacc;
    --accent-green: #e4c7d9;
    --slate-text: #2c3e50;  
    /* The deep pink shade sampled directly from the logo lines */
    --button-text:#355C7D;
    --button-text-hover:#27445D;   

    /* Section Label Color */ 
    --section-title-color: #8d0459;   

    --section-space: 80px;

}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
}  

img,
video {
    max-width: 100%;
    height: auto;
}

.object-fit-cover {
    object-fit: cover;
}

body {
    font-family: 'Inter', sans-serif;  
    /* font-family: cursive; */
    color: var(--slate-text);
    scroll-behavior: smooth;
    background-color: #fbfdfb;
}   

h2, h3, h4 { color:#345f98;}

.h2 { color:#345f98;}  

.section-label { 
    color: var(--section-title-color); 
    font-weight: 700; 
    letter-spacing: 1px; 
    font-size: 1rem;
} 

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand{
    padding:0;
    margin-right:2rem;
}

.navbar-brand .sub-title {
    font-size: 0.85rem;
    display: block;
}   

.logo-img{
    height:75px;
    width:auto;
    display:block;
    object-fit:contain;
}  

.nav-link { 
    font-size: 17px; 
    font-weight: 500; 
}

@media (max-width: 992px) {
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 45px;
    }
}

/* Hero & Section Styling */
.hero-section {
    background: linear-gradient(135deg, var(--primary-mint) 0%, #ffffff 100%);
    padding: 120px 0 80px 0;
}

.section-padding {
    padding: var(--section-space) 0;
}  
/* 
@media (max-width: 768px) { 
    :root { 
        --section-space:48px;
    }
} */

.bg-mint-light {
    background-color: var(--primary-mint);
}

/* Custom Cards styling for "Herbal/Organic" soft feel */
.care-card {
    border: none;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(225, 170, 204, 0.12);
}

.btn-pill-primary {
    background-color: var(--dark-teal);
    color: var(--button-text);
    border-radius: 50px; /* Makes it a pill shape */
    padding: 12px 30px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 10px rgba(225, 170, 204, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-pill-primary:hover {
    background-color: #cd8ba8;
    /* color: #ffffff; */ 
    color: var(--button-text-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 170, 204, 0.25);
}

.btn-pill-outline {
    background-color: transparent;
    color: var(--button-text);
    border: 2px solid var(--dark-teal);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-pill-outline:hover {
    background-color: var(--dark-teal); 
    color: var(--button-text-hover); /* Using the sampled deep pink shade from the logo */
    transform: translateY(-2px);
}

/* Media Gallery Placeholder */
.media-box {
    background: var(--primary-mint);
    border-radius: 12px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* QR Section Box */
.qr-card {
    background: #ffffff;
    border: 2px dashed var(--accent-green);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.tip-box {
    background-color: #fff9db;
    border-left: 4px solid #fcc419;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}     

/* ===========================
   Mobile Responsive (<=768px)
=========================== */
@media (max-width: 768px) {

    /* Hero */
    .hero-section {
        padding: 110px 0 45px;
    }

    /* Reduce section spacing */
    .section-padding {
        padding: 55px 0;
    }

    /* Reduce row gaps */
    .g-5 {
        --bs-gutter-y: 1.5rem;
    }

    .g-4 {
        --bs-gutter-y: 1.25rem;
    }

    /* Reduce heading margins */
    h1,
    .h2 {
        margin-bottom: 1rem !important;
    }

    h2,
    h3 {
        margin-bottom: .75rem !important;
    }

    /* Reduce section title spacing */
    .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }

    /* Buttons */
    .btn-pill-primary,
    .btn-pill-outline {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Hero buttons */
    .hero-section .d-flex {
        flex-direction: column;
        gap: 12px !important;
    }

    /* Images */
    .hero-section img,
    #About img {
        margin-top: 20px;
    }

    /* Cards */
    .care-card {
        padding: 1.25rem;
    }

    /* Gallery */
    .media-box {
        height: 220px;
    }

    /* QR Card */
    .qr-card {
        margin-top: 20px;
    }

    /* Footer */
    footer {
        padding-top: 3rem !important;
        padding-bottom: 2rem !important;
    }
}