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

:root {
    /* Color palette */
    --primary-color: #726fff;      /* Main brand color */
    --secondary-color: #f7958c;    /* Secondary brand color */
    --accent-color: #5ba7b4;       /* Accent color */
    --neutral-color: #F5F5FA;      /* Background/neutral color */
    --dark-color: #423d59;         /* Dark text/elements */
    
    /* Shades */
    --primary-light: #a298e2;
    --primary-dark: #5652b6;
    --secondary-light: #ffb89f;
    --secondary-dark: #e95b48;
    --accent-light: #74d2e7;
    --accent-dark: #40bbad;
    --neutral-light: #FFFFFF;
    --neutral-dark: #dad9ef;
    --dark-light: #606182;
    --dark-darker: #2c2f52;
}

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(157, 130, 249, 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: 175px;
}

/* 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 - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

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

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

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

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

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

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

.x-link i {
    display: none;
}

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