/* ===== ETHICAL LIFESTYLE INFLUENCER AGENCY - MAIN CSS ===== */

/* Color Variables */
:root {
    /* Primary Colors */
    --primary-color: #6c9a8b;
    --primary-light: #8fb3a6;
    --primary-dark: #4a7c6d;
    
    /* Secondary Colors */
    --secondary-color: #e8b4b8;
    --secondary-light: #f0c8cc;
    --secondary-dark: #d19ca1;
    
    /* Accent Colors */
    --accent-color: #f4e4c1;
    --accent-light: #f7ebd0;
    --accent-dark: #e6d1a3;
    
    /* Neutral Colors */
    --neutral-light: #f8f9fa;
    --neutral-dark: #343a40;
    
    /* Additional Colors */
    --tertiary-color: #b8d4e3;
    --tertiary-light: #c7dce8;
    --tertiary-dark: #a1c4d6;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-light: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Border Radius */
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
}

/* Bootstrap Color Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

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

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

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: var(--tertiary-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
}

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

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

/* Card Styles */
.card {
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Service Cards */
.services .card {
    height: 100%;
}

.services .card-body {
    padding: 2rem;
}

/* Team Section */
.team img {
    transition: transform 0.3s ease;
}

.team img:hover {
    transform: scale(1.1);
}

/* Testimonials */
.reviews .card {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-light) 100%);
    border-left: 4px solid var(--primary-color);
}

/* FAQ Section */
.faq .card {
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
}

/* Gallery */
.gallery img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: var(--border-radius);
}

.gallery img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Contact Form */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 154, 139, 0.25);
}

/* Button Styles */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer */
#footer {
    background: linear-gradient(135deg, var(--neutral-dark) 0%, var(--text-primary) 100%);
}

#footer a {
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-color) !important;
}

/* Pricing Plans */
.priceplan .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.priceplan .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.priceplan .border-primary {
    border: 3px solid var(--primary-color) !important;
    position: relative;
}

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

/* Process Steps */
.process .bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
}

/* Features Section */
.features i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.features i:hover {
    transform: scale(1.1);
}

/* Breadcrumbs */
nav.breadcrumb-nav {
    background: var(--accent-light);
    border-bottom: 1px solid var(--accent-dark);
}

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

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Animation Enhancements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Decorative Elements */
.hero-decoration {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-decoration:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
}

.hero-decoration:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    #footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
