/* BotaniSpark - Botanical Soda Theme CSS */

/* Color Variables */
:root {
    --primary-green: #4a7c59;
    --secondary-mint: #7fb069;
    --accent-sage: #a4b494;
    --light-botanical: #e8f5e8;
    --cream-white: #fdfdf9;
    --deep-forest: #2d5016;
    --bright-green: #6ab04c;
    --soft-blue: #74b9ff;
    --warm-gold: #fdcb6e;
    --earth-brown: #6c5ce7;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--cream-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--deep-forest);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    color: #666;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green);
}

.navbar-nav .nav-link {
    color: var(--deep-forest);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-botanical) 0%, var(--cream-white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23a4b494" opacity="0.3"/><circle cx="80" cy="80" r="3" fill="%237fb069" opacity="0.2"/><circle cx="60" cy="30" r="1" fill="%234a7c59" opacity="0.4"/></svg>');
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card, .service-card, .price-card, .review-card, .case-study-card, .info-card, .career-card, .blog-card, .faq-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--light-botanical);
    height: 100%;
}

.feature-card:hover, .service-card:hover, .price-card:hover, .review-card:hover, .case-study-card:hover, .info-card:hover, .career-card:hover, .blog-card:hover, .faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card i, .feature-item i {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card img {
    border-radius: 10px;
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .price {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Price Cards */
.price-card.featured {
    border: 3px solid var(--primary-green);
    position: relative;
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 1rem;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--light-botanical);
}

/* Process Section */
.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-item .year {
    background: var(--secondary-mint);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Contact Section */
.contact-info {
    background: var(--light-botanical);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

/* Form Styles */
.form-control {
    border: 2px solid var(--light-botanical);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.25);
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--deep-forest);
    border-color: var(--deep-forest);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--deep-forest);
}

footer h5 {
    color: var(--secondary-mint);
    margin-bottom: 1rem;
}

footer p, footer li {
    color: #ccc;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-mint);
}

/* Breadcrumb */
.breadcrumb-section {
    padding-top: 120px;
}

.breadcrumb-icon {
    height: 30px;
    width: auto;
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Background Variations */
.bg-light {
    background-color: var(--light-botanical);
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Utility Classes */
.text-botanical {
    color: var(--primary-green);
}

.bg-botanical {
    background-color: var(--primary-green);
}

.border-botanical {
    border-color: var(--primary-green);
}

/* Space for index_space.html */
#space {
    background: linear-gradient(135deg, var(--light-botanical) 0%, var(--cream-white) 100%);
    position: relative;
}

/* Additional Page Elements */
.ingredient-card, .flavor-card, .method-card, .benefit-card, .partner-card, 
.mission-card, .values-card, .facility-card, .certification-card, .vision-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--light-botanical);
    height: 100%;
}

.ingredient-card:hover, .flavor-card:hover, .method-card:hover, .benefit-card:hover, .partner-card:hover,
.mission-card:hover, .values-card:hover, .facility-card:hover, .certification-card:hover, .vision-card:hover {
    transform: translateY(-3px);
}

/* Ensure no custom overrides of Bootstrap grid */
/* Using Bootstrap 5 grid system as-is without modifications */ 

.hero-section h1 {
    padding-top: 275px;
}


/* 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;
    }
}
