/* 
 * MindfulLiving - Lifestyle & Self-development Theme
 * Main Stylesheet
 */

/* ---------- ROOT VARIABLES ---------- */
:root {
    /* Color Palette - Harmonious Pastels */
    --color-primary: #d38487;       /* Soft #ffeaf4 */
    --color-primary-light: #ffb6b7;
    --color-primary-dark: #dcbcad;
    
    --color-secondary: #97ffec;     /* Mint #009c0a */
    --color-secondary-light: #6bb187;
    --color-secondary-dark: #b4ffe8;
    
    --color-accent: #b4b4ad;        /* Warm Sand */
    --color-accent-light: #b4b4b4;
    --color-accent-dark: #c9c9c5;
    
    --color-neutral: #eab9fe;       /* Lavender #574040 */
    --color-neutral-light: #ffffff;
    --color-neutral-dark: #7e7c82;
    
    --color-contrast: #e8869e;      /* Dusty Rose */
    --color-contrast-light: #ffffff;
    --color-contrast-dark: #e3d3d1;
    
    /* Text Colors */
    --text-dark: #141414;
    --text-medium: #6e6663;
    --text-light: #ad848a;
    --text-white: #ffffff;
    
    /* Common Values */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ---------- RESET & BASE STYLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fdfcfa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--color-primary-dark);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul, ol {
    padding-left: 1rem;
}

/* ---------- UTILITIES ---------- */
.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header h4 {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--text-dark);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    color: var(--text-dark);
}

/* SVG Shape Decorations */
.shape-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.3;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 150px;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 120px;
}

/* ---------- HEADER ---------- */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide:nth-child(1) {
    background-image: url('../ECO_images/ehs_hero-1.jpg');
}

.hero-slide:nth-child(2) {
    background-image: url('../ECO_images/ehs_hero-2.jpg');
}

.hero-slide:nth-child(3) {
    background-image: url('../ECO_images/ehs_hero-3.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation-delay: 0.2s;
}

.hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    animation-delay: 0.4s;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-white);
    animation-delay: 0.6s;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-primary-light);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.about-feature-box {
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius-md);
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
}

.about-feature-box:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    color: var(--color-secondary-dark);
    font-size: 2rem;
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
    padding: 100px 0;
    position: relative;
}

.service-box {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--text-white);
    height: 100%;
}

.service-img {
    height: 230px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-box:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-content ul li {
    padding: 5px 0;
    margin-bottom: 5px;
    color: var(--text-medium);
}

.service-content ul li:before {
    content: 'âœ“';
    color: var(--color-primary);
    margin-right: 10px;
}

.price-tag {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--color-primary-light);
    color: var(--text-dark);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
}

/* ---------- FEATURES SECTION ---------- */
.features-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.feature-box {
    padding: 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: var(--color-accent-dark);
    font-size: 1.8rem;
}

/* ---------- PRICE PLAN SECTION ---------- */
.priceplan-section {
    padding: 100px 0;
    position: relative;
}

.price-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
    background-color: var(--text-white);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-header {
    background-color: var(--color-primary-light);
    padding: 25px;
    text-align: center;
}

.price-header h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-body {
    padding: 25px;
}

.price-body p {
    margin-bottom: 25px;
    color: var(--text-medium);
}

.price-body ul {
    list-style: none;
    padding-left: 0;
}

.price-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-medium);
}

.price-body ul li:before {
    content: 'âœ“';
    color: var(--color-primary);
    margin-right: 10px;
}

/* ---------- TEAM SECTION ---------- */
.team-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.team-member {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--text-white);
    height: 100%;
}

.member-img {
    position: relative;
    overflow: hidden;
}

.member-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h4 {
    margin-bottom: 5px;
}

.member-info p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
    padding: 100px 0;
    position: relative;
}

.reviews-swiper {
    padding-bottom: 50px;
}

.review-card {
    border-radius: var(--border-radius-md);
    padding: 30px;
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    margin: 20px 10px;
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-primary-light);
    margin-bottom: 20px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.review-card h5 {
    font-weight: 600;
    margin-bottom: 0;
}

/* ---------- CORE INFO SECTION ---------- */
.coreinfo-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.coreinfo-box {
    padding: 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
    transition: var(--transition);
}

.coreinfo-box:hover {
    transform: translateY(-10px);
}

.coreinfo-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-contrast-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.coreinfo-icon i {
    color: var(--color-contrast-dark);
    font-size: 1.8rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-form {
    background-color: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
}

.form-control, .form-select {
    height: 50px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #ffffff;
    padding: 10px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--color-primary);
    margin-right: 10px;
}

/* ---------- BLOG SECTION ---------- */
.blog-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.blog-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    background-color: var(--text-white);
    height: 100%;
}

.blog-img {
    height: 230px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
}

.read-more:hover {
    color: var(--color-primary-dark);
}

/* ---------- FOOTER ---------- */
footer {
    background-color: #f2f2f2;
    padding: 60px 0 30px;
    position: relative;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-medium);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.disclaimer {
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

small {
    display: block;
    text-align: center;
    color: var(--text-light);
}

/* ---------- ADDITIONAL PAGES ---------- */
.additional-page-section {
    padding: 100px 0;
    position: relative;
}

.additional-page-section:nth-child(even) {
    background-color: #f9f9f9;
}

.page-element-box {
    padding: 30px;
    border-radius: var(--border-radius-md);
    background-color: var(--text-white);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
    transition: var(--transition);
}

.page-element-box:hover {
    transform: translateY(-10px);
}

.page-element-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ---------- SPACE PAGE ---------- */
#space {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
} 