/* Pop-up Plant Markets - Main CSS */

/* Color Palette Variables */
:root {
    --primary-mint: #a8e6cf;
    --primary-sage: #b8c5a6;
    --primary-cream: #f5f3e7;
    --primary-lavender: #d4c5f9;
    --primary-peach: #ffb3ba;
    
    /* Light/Dark Shades */
    --mint-light: #c8f2df;
    --mint-dark: #7fd1a9;
    --sage-light: #d0dbc0;
    --sage-dark: #9aac85;
    --cream-light: #faf9f1;
    --cream-dark: #ede9d5;
    --lavender-light: #e6dafb;
    --lavender-dark: #bfa9f5;
    --peach-light: #ffd1d4;
    --peach-dark: #ff95a0;
    
    /* Text Colors */
    --text-dark: #2c3e2d;
    --text-light: #6b7c6d;
    --text-muted: #8a9b8c;
}

/* Base Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

/* Conservative Font Sizes */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-sage) !important;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
}

h5 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Header Styles */
#header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-sage);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--mint-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    padding-top: 125px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape-blob-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: var(--primary-lavender);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: var(--primary-peach);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styles */
section {
    position: relative;
}

.bg-light {
    background-color: var(--cream-light) !important;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card i {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

.feature-card:hover {
    background: var(--mint-light);
}

/* Service Cards */
.service-card {
    background: white;
    transition: all 0.3s ease;
}

.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 .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-sage);
    margin-top: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.service-card ul li:before {
    content: "✓ ";
    color: var(--primary-sage);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Features Section */
.feature-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.feature-item i {
    color: var(--primary-mint);
    margin-bottom: 1rem;
}

.feature-item:hover {
    background: var(--cream-light);
    border-radius: 12px;
}

/* Price Plan Cards */
.price-card {
    position: relative;
    transition: all 0.3s ease;
}

.price-card.featured {
    border: 2px solid var(--primary-sage);
    transform: scale(1.05);
}

.price-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.85rem;
    font-weight: 600;
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-sage);
    margin-top: 1.5rem;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--cream-dark);
}

/* Team Section */
.team-member {
    padding: 1rem;
    transition: all 0.3s ease;
}

.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--mint-light);
    transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    border-color: var(--primary-sage);
    transform: scale(1.05);
}

/* Review Cards */
.review-card {
    background: white;
    border-left: 4px solid var(--primary-mint);
}

.review-card .card-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-light);
}

.review-card .blockquote-footer {
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Gallery Section */
#gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.03);
}

/* FAQ Cards */
.faq-card {
    background: white;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-lavender);
}

.faq-card .card-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(184, 197, 166, 0.25);
}

.btn-primary {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    text-align: center;
}

.contact-item i {
    color: var(--primary-sage);
    display: block;
    margin: 0 auto 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
#footer {
    background-color: var(--text-dark) !important;
}

#footer h5 {
    color: var(--mint-light);
    margin-bottom: 1rem;
}

#footer p, #footer li {
    color: var(--cream-light);
}

#footer a {
    color: var(--cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--mint-light);
}

#footer hr {
    border-color: var(--text-light);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Additional Page Specific Styles */
.care-item, .indoor-care, .trouble-item, .expert-tip,
.location-card, .upcoming-location, .event-card, .request-option {
    transition: all 0.3s ease;
}

.care-item:hover, .indoor-care:hover, .trouble-item:hover, .expert-tip:hover,
.location-card:hover, .upcoming-location:hover, .event-card:hover, .request-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.seasonal-care, .schedule-day {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.seasonal-care:hover, .schedule-day:hover {
    background: var(--cream-light);
    border-radius: 12px;
}

.seasonal-care i, .schedule-day i {
    color: var(--primary-sage);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape-blob-1, .shape-blob-2 {
        animation: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background-color: var(--primary-mint);
    color: var(--text-dark);
}

/* Focus States */
.btn:focus, .form-control:focus {
    outline: 2px solid var(--primary-sage);
    outline-offset: 2px;
}

/* Loading States */
.img-fluid {
    transition: opacity 0.3s ease;
}

.img-fluid[data-loaded="false"] {
    opacity: 0.7;
}

/* Print Styles */
@media print {
    .hero-shapes, .shape-blob-1, .shape-blob-2 {
        display: none;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
