/* EcoStationery - Sustainable Office Supplies Template */
/* Color Palette: Pastel high-contrast colors */
:root {
    --primary-color: #8FBC8F;
    --secondary-color: #F0E68C;
    --accent-color: #DDA0DD;
    --info-color: #87CEEB;
    --success-color: #98FB98;
    --primary-light: #E6F3E6;
    --secondary-light: #FEFCDB;
    --accent-light: #F5EBFF;
    --info-light: #E6F8FF;
    --success-light: #F0FFF0;
    --primary-dark: #556B2F;
    --secondary-dark: #B8860B;
    --accent-dark: #8B008B;
    --info-dark: #4682B4;
    --success-dark: #00FF00;
}

/* Typography */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--info-color);
    border-radius: 30%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@media (prefers-reduced-motion: reduce) {
    .shape-1, .shape-2 {
        animation: none;
    }
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
    .card {
        transition: none;
    }
    .card:hover {
        transform: none;
    }
}

/* Service Cards */
.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: var(--primary-light);
    height: 100%;
    transition: background-color 0.3s ease;
}

.feature-card:hover {
    background: var(--secondary-light);
}

.feature-card i {
    color: var(--primary-color);
}

/* Feature Items */
.feature-item {
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--info-light);
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--info-color);
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid var(--primary-light);
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Review Cards */
.review-card {
    background: var(--accent-light);
    border-left: 4px solid var(--accent-color);
}

.author {
    font-style: italic;
    color: var(--accent-dark);
    margin-top: 1rem;
}

/* Case Study Cards */
.case-study-card {
    background: var(--success-light);
    border-top: 4px solid var(--success-color);
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    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 */
.timeline-item {
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: var(--secondary-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 10px 10px 0;
}

/* Job Cards */
.job-card {
    background: var(--info-light);
    border-left: 4px solid var(--info-color);
}

/* Info Cards */
.info-card {
    background: var(--primary-light);
    border-top: 4px solid var(--primary-color);
}

/* Blog Cards */
.blog-card {
    background: var(--secondary-light);
    border-bottom: 4px solid var(--secondary-color);
}

/* FAQ Cards */
.faq-card {
    background: var(--accent-light);
    border-left: 4px solid var(--accent-color);
}

/* Contact Section */
.contact-form {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.contact-info {
    background: var(--info-light);
    padding: 2rem;
    border-radius: 10px;
}

/* Form Styling */
.form-control {
    border: 2px solid var(--primary-light);
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(143, 188, 143, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input.is-invalid {
    border-color: #dc3545;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    color: var(--primary-color);
}

.nav-link {
    color: var(--primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--primary-dark);
}

footer h5 {
    color: var(--primary-light);
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    #gallery img {
        transition: none;
    }
    #gallery img:hover {
        transform: none;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 0.5rem 0;
}

.breadcrumb-image {
    max-height: 30px;
    height: auto;
    opacity: 0.7;
}

/* Utilities */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
} 

.hero-section h1 {
    padding-top: 100px;
}


/* 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);
}

.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;
    }
}
