/* 
* Main Styles for Social Media Content Repurposing Agency
* Using Bootstrap 5 as base framework
* Copyright 2025
*/

:root {
    /* Color palette */
    --primary-color: #8c76f6;      /* Main brand color */
    --secondary-color: #fa8d70;    /* Secondary brand color */
    --accent-color: #59d6c9;       /* Accent color */
    --neutral-color: #F5F5FA;      /* Background/neutral color */
    --dark-color: #423f54;         /* Dark text/elements */
    
    /* Shades */
    --primary-light: #b9a9fa;
    --primary-dark: #4d51b6;
    --secondary-light: #ffbfac;
    --secondary-dark: #f18465;
    --accent-light: #7ed0c6;
    --accent-dark: #4ba7b4;
    --neutral-light: #FFFFFF;
    --neutral-dark: #f0f0f0;
    --dark-light: #6c6c87;
    --dark-darker: #2a2d4b;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-color);
    background-color: var(--neutral-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

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

/* Cards */
.card {
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Service Items */
.service-item {
    padding: 2rem;
    background-color: var(--neutral-light);
    border-radius: 0.75rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

/* Feature Items */
.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Team */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-member-role {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    background-color: var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ */
.faq-card {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background-color: var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.faq-question {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--neutral-light);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--neutral-dark);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(111, 76, 218, 0.25);
}

/* Header */
.navbar {
    padding: 1rem 0;
    background-color: var(--neutral-light);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--neutral-color);
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-light);
    opacity: 0.1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 250px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--neutral-light);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: var(--neutral-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: var(--neutral-light);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

#site-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    opacity: 0.7;
    text-align: center;
}

/* Breadcrumbs */
.breadcrumb-section {
    background-color: var(--neutral-color);
    padding: 1rem 0;
}

/* Process Steps */
.process-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--primary-color);
}

/* Gallery */
.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Career */
.career-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    background-color: var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Core Info */
.core-info-item {
    text-align: center;
    margin-bottom: 2rem;
}

.core-info-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Blog */
.blog-item {
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background-color: var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-item-image {
    height: 200px;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.05);
}

.blog-item-content {
    padding: 1.5rem;
}

.blog-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-item-excerpt {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Case Studies */
.casestudy-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    height: 300px;
}

.casestudy-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casestudy-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
}

.casestudy-title {
    color: white;
    margin-bottom: 0.5rem;
}

/* Utilities */
.section-title {
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.section-desc {
    max-width: 700px;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

/* Space page */
#space {
    min-height: calc(100vh - 140px); /* Account for header and footer */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-color);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
        scroll-behavior: auto !important;
    }
} 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
