/* Urban Garden Pro - Main CSS */
/* Color Palette - 5 primary colors with light/dark shades */
:root {
    /* Primary Colors */
    --primary-green: #4A7C59;
    --secondary-sage: #87A96B;
    --accent-earth: #C5A572;
    --neutral-cream: #F5F3E7;
    --dark-forest: #2D3E2B;
    
    /* Light Shades */
    --light-green: #6B9C7A;
    --light-sage: #A3C088;
    --light-earth: #D4B88A;
    --light-cream: #F9F7F0;
    --light-forest: #4A5E48;
    
    /* Dark Shades */
    --dark-green: #3A6249;
    --dark-sage: #6F8B56;
    --dark-earth: #A68C5B;
    --dark-cream: #E8E5D8;
    --dark-forest: #1F2B1D;
    
    /* Bootstrap Override Variables */
    --bs-primary: var(--primary-green);
    --bs-secondary: var(--secondary-sage);
    --bs-success: var(--primary-green);
    --bs-light: var(--neutral-cream);
    --bs-dark: var(--dark-forest);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-forest);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
}

h1, .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-forest);
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5, .h5 {
    font-size: 1.1rem;
    font-weight: 500;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 500;
}

p.lead {
    font-size: 1.1rem;
    font-weight: 400;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.btn-outline-secondary {
    color: var(--secondary-sage);
    border-color: var(--secondary-sage);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-sage);
    border-color: var(--secondary-sage);
    color: white;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: var(--light-sage);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

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

.hero-cta .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.price-tag {
    background: var(--light-cream);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

/* Feature Items */
.feature-item {
    padding: 1.5rem 0;
}

.feature-icon {
    flex-shrink: 0;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pricing-card.border-primary {
    border-color: var(--primary-green);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Team Members */
.team-member img {
    object-fit: cover;
    border: 3px solid var(--light-cream);
}

/* Reviews */
.review-card {
    border: none;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.rating {
    margin-top: 0.5rem;
}

/* Case Study Cards */
.case-study-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
}

.step-number {
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-title, .timeline-subtitle, .timeline-desc,
.career-title, .career-subtitle, .career-desc,
.coreinfo-title, .coreinfo-subtitle, .coreinfo-desc {
    text-align: center;
}

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

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

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 1.5rem;
}

/* Footer */
#footer {
    background-color: var(--dark-forest);
    color: var(--light-cream);
}

#footer a {
    color: var(--light-sage);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Additional Page Styles */
.curriculum-item, .resource-item, .schedule-item,
.prerequisite-item, .certification-step, .transformation-story,
.before-after-item, .statistic-card, .testimonial-detailed,
.success-cta {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-item:hover, .resource-item:hover, .schedule-item:hover,
.prerequisite-item:hover, .transformation-story:hover,
.statistic-card:hover, .testimonial-detailed:hover,
.success-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.week-number, .step-icon {
    background-color: var(--primary-green);
}

.stat-number {
    color: var(--primary-green);
}

/* Responsive Media Queries for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
    
    .feature-card:hover,
    .service-card:hover,
    .case-study-card:hover,
    .blog-card:hover,
    .curriculum-item:hover,
    .resource-item:hover,
    .schedule-item:hover,
    .prerequisite-item:hover,
    .transformation-story:hover,
    .statistic-card:hover,
    .testimonial-detailed:hover,
    .success-cta:hover {
        transform: none;
    }
    
    #gallery img:hover {
        transform: none;
    }
} 

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


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
