/* EcoTech Accessories - Main CSS */
/* Color Variables */
:root {
    --primary-green: #2d5a27;
    --primary-green-light: #4a7c59;
    --primary-green-dark: #1a3d1a;
    --secondary-mint: #7fb069;
    --secondary-mint-light: #a8d1a0;
    --secondary-mint-dark: #5a8c4a;
    --accent-sage: #8fbc8f;
    --accent-sage-light: #b5d3b5;
    --accent-sage-dark: #6b8e6b;
    --neutral-cream: #f5f5dc;
    --neutral-cream-light: #fafaf2;
    --neutral-cream-dark: #e6e6c7;
    --earth-brown: #8b7355;
    --earth-brown-light: #a68b6b;
    --earth-brown-dark: #6b5a42;
}

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.navbar {
    background-color: var(--neutral-cream) !important;
    box-shadow: 0 2px 4px rgba(45, 90, 39, 0.1);
    padding: 0.75rem 0;
}

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

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-mint-dark) !important;
}

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

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    padding-top: 225px;
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-mint-dark);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: var(--primary-green-dark);
    margin-bottom: 2rem;
}

/* Hero Decorative Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: var(--accent-sage);
    border-radius: 50%;
    opacity: 0.1;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: var(--secondary-mint);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

section h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--secondary-mint-dark);
    margin-bottom: 1rem;
}

section p {
    font-size: 1rem;
    color: var(--primary-green-dark);
    margin-bottom: 1.5rem;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(45, 90, 39, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.15);
}

.card-body h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.card-body p {
    font-size: 0.95rem;
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--primary-green-dark);
    font-size: 0.9rem;
}

.service-card ul li:before {
    content: '✓';
    color: var(--secondary-mint-dark);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card h6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-mint-dark);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 6px rgba(45, 90, 39, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--primary-green-dark);
}

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

.team-member h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--secondary-mint-dark);
}

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

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

.process-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--primary-green-dark);
}

/* Timeline Items */
.timeline-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(45, 90, 39, 0.1);
}

.timeline-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--primary-green-dark);
}

/* Buttons */
.btn-success {
    background-color: var(--secondary-mint);
    border-color: var(--secondary-mint);
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--secondary-mint-dark);
    border-color: var(--secondary-mint-dark);
    transform: translateY(-2px);
}

.btn-outline-success {
    color: var(--secondary-mint-dark);
    border-color: var(--secondary-mint-dark);
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Forms */
.form-control {
    border: 2px solid var(--accent-sage-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-mint);
    box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

/* Contact Info */
.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(45, 90, 39, 0.1);
}

.contact-info i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--primary-green-dark) !important;
    color: var(--neutral-cream-light);
}

footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-sage-light);
    margin-bottom: 1rem;
}

footer p, footer li {
    font-size: 0.9rem;
    color: var(--neutral-cream);
    margin-bottom: 0.5rem;
}

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

footer a:hover {
    color: var(--neutral-cream-light);
}

/* Badges */
.badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.bg-success {
    background-color: var(--secondary-mint) !important;
}

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

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

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--neutral-cream) !important;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* Utility Classes */
.text-success {
    color: var(--secondary-mint-dark) !important;
}

.bg-light {
    background-color: var(--neutral-cream) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 225px;
}
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    padding-top: 225px;
}
    
    section {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
} 


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

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