/* Digital Detox & Mindfulness - Main CSS */

:root {
    /* Primary Color Palette - Harmonious Pastels */
    --primary-sage: #B4C7A9;        /* Sage green - primary */
    --primary-lavender: #D4C5E8;    /* Soft lavender - secondary */
    --primary-peach: #F5D5AE;       /* Warm peach - accent */
    --primary-cream: #F8F6F0;       /* Soft cream - light */
    --primary-earth: #8B7355;       /* Earthy brown - dark */
    
    /* Light/Dark Variations */
    --sage-light: #D3E0CC;
    --sage-dark: #9BB189;
    --lavender-light: #E8DDF3;
    --lavender-dark: #C3ABDB;
    --peach-light: #FAE4C7;
    --peach-dark: #F0C695;
    --cream-light: #FDFCF8;
    --cream-dark: #F3F0E7;
    --earth-light: #A68B6B;
    --earth-dark: #6F5940;
    
    /* Semantic Colors */
    --success: var(--primary-sage);
    --info: var(--primary-lavender);
    --warning: var(--primary-peach);
    --light: var(--primary-cream);
    --dark: var(--primary-earth);
    
    /* Typography */
    --font-size-base: 1rem;
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(139, 115, 85, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(139, 115, 85, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(139, 115, 85, 0.175);
    
    /* Border Radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
}

/* Bootstrap Color Overrides */
.text-primary { color: var(--primary-sage) !important; }
.bg-primary { background-color: var(--primary-sage) !important; }
.btn-primary {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
    color: white;
}
.btn-primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
}
.btn-outline-primary {
    color: var(--primary-sage);
    border-color: var(--primary-sage);
}
.btn-outline-primary:hover {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
overflow-x: hidden;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-earth);
    background-color: white;
    overflow-x: hidden;
}

.object-cover {
    object-fit: cover;
}

/* Header & Navigation */
.navbar {
    background-color: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-earth) !important;
}

.navbar-nav .nav-link {
    color: var(--primary-earth) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-sage) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Breadcrumb */
.breadcrumb-section {
    height: 80px;
    overflow: hidden;
    position: relative;
    margin-top: 76px;
}

.breadcrumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg img {
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(180, 199, 169, 0.8) 0%, rgba(212, 197, 232, 0.6) 100%);
}

.hero-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* animation: fadeInUp 1s ease-out; */
}

.hero-subtitle {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    /* animation: fadeInUp 1s ease-out 0.2s both; */
}

.hero-desc {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    /* animation: fadeInUp 1s ease-out 0.4s both; */
}

.hero-image-wrapper {
    /* animation: fadeInRight 1s ease-out 0.6s both; */
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
.section-title {
    color: var(--primary-earth);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--sage-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

.section-desc {
    color: var(--earth-light);
    font-size: 1.1rem;
}

/* About Section */
.about-feature {
    padding: 2rem 1rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.about-feature h5 {
    color: var(--primary-earth);
    font-weight: 600;
    margin: 1rem 0 0.5rem;
}

.about-feature p {
    color: var(--earth-light);
    font-size: 0.95rem;
}

/* Services Section */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-card .card-title {
    color: var(--primary-earth);
    font-weight: 600;
    font-size: 1.2rem;
}

.service-card .card-text {
    color: var(--earth-light);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--earth-light);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: bold;
}

.price-tag {
    color: var(--primary-sage);
    font-weight: 700;
}

/* Features Section */
.feature-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: var(--primary-earth);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--earth-light);
}

/* Price Plan Section */
.price-plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius-lg);
}

.price-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-plan-card.featured {
    border: 2px solid var(--primary-sage);
    position: relative;
}

.price-plan-card.featured:before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-sage);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    padding: 0;
}

.plan-features li {
    color: var(--earth-light);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: bold;
}

.price {
    color: var(--primary-sage);
    font-weight: 700;
}

/* Team Section */
.team-member {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--sage-light);
    transition: border-color 0.3s ease;
}

.team-member:hover .team-photo {
    border-color: var(--primary-sage);
}

.team-member h6 {
    color: var(--primary-earth);
    font-weight: 600;
    margin: 0.5rem 0;
}

/* Reviews Section */
.reviews-swiper {
    padding: 2rem 0;
}

.review-card {
    margin: 0 1rem;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: var(--primary-peach);
}

.review-text {
    color: var(--earth-light);
    font-style: italic;
    margin: 1rem 0;
}

.review-author {
    color: var(--primary-earth);
    font-weight: 600;
}

.swiper-pagination-bullet {
    background: var(--primary-sage);
}

.swiper-pagination-bullet-active {
    background: var(--sage-dark);
}

/* Core Info Section */
.coreinfo-item {
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.coreinfo-item h5 {
    color: var(--primary-earth);
    font-weight: 600;
}

.coreinfo-item p {
    color: var(--earth-light);
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--cream-dark);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(180, 199, 169, 0.25);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
}

/* Blog Section */
.blog-card {
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-card .card-title {
    color: var(--primary-earth);
    font-weight: 600;
}

.blog-card .card-text {
    color: var(--earth-light);
}

/* FAQ Section */
.accordion-item {
    border: 1px solid var(--cream-dark);
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-button {
    background-color: var(--cream-light);
    color: var(--primary-earth);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--sage-light);
    color: var(--primary-earth);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(180, 199, 169, 0.25);
}

.accordion-body {
overflow-x: hidden;
    background-color: white;
    color: var(--earth-light);
}

/* Gallery Section */
.gallery-img {
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-earth) 0%, var(--earth-dark) 100%);
}

.footer h5,
.footer h6 {
    color: var(--cream-light);
    font-weight: 600;
}

.footer p {
    color: var(--cream-dark);
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sage-light);
}

/* Additional Page Styles */
.experience-card,
.activity-card,
.support-card {
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.experience-card:hover,
.activity-card:hover,
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.schedule-item .time-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--lavender-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.wellness-item img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

/* Utility Classes */
.text-sage { color: var(--primary-sage) !important; }
.text-lavender { color: var(--primary-lavender) !important; }
.text-peach { color: var(--primary-peach) !important; }
.text-earth { color: var(--primary-earth) !important; }
.bg-sage { background-color: var(--primary-sage) !important; }
.bg-lavender { background-color: var(--primary-lavender) !important; }
.bg-peach { background-color: var(--primary-peach) !important; }
.bg-cream { background-color: var(--primary-cream) !important; }

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-shapes .shape {
        animation: none;
    }
} 