/* ================================
   CreativeMentor - Main Stylesheet
   ================================ */

/* CSS Variables for Color Palette */
:root {
    --primary-color: #5e69ff;
    --primary-light: #7b98e3;
    --primary-dark: #406bc2;
    --secondary-color: #7d58b9;
    --secondary-light: #9c6cbe;
    --secondary-dark: #5f3291;
    --accent-color: #ef97f1;
    --accent-light: #f2c0fa;
    --accent-dark: #e882ff;
    --success-color: #53d5cf;
    --success-light: #85dcd4;
    --success-dark: #48baa4;
    --warning-color: #fff278;
    --warning-light: #fff3a5;
    --warning-dark: #cba040;
    --light-gray: #f8f9fa;
    --medium-gray: #5d636c;
    --dark-gray: #34383f;
    --white: #ffffff;
    --black: #000000;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    font-size: 16px;
}

/* Typography Adjustments */
.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-color) !important;
}

h1, .display-1, .display-2, .display-3, .display-4 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

/* Bootstrap Color Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

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

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Header Styles */
.navbar {
    backdrop-filter: none;
    background-color: rgba(255, 255, 255, 1) !important; /* Changed to solid color */
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    padding: 0.5rem 1rem !important;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: none; /* Removed for performance */
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    /* Removed transitions */
}

.card:hover {
    /* Removed transform */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    /* Removed transition */
}

.card:hover .card-img-top {
    /* Removed transform */
}

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

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Icon Styles */
.fas, .far, .fab {
    /* Removed transition */
}

.text-center .fas:hover,
.text-center .far:hover,
.text-center .fab:hover {
    /* Removed transform */
    color: var(--primary-dark) !important;
}

/* Team Member Images */
.rounded-circle {
    /* Removed transition */
}

.rounded-circle:hover {
    /* Removed transform */
}

/* Footer Styles */
footer {
    background-color: var(--dark-gray) !important;
}

footer a {
    /* Removed transition */
}

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

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e6e6e6;
    /* Removed transition */
    font-size: 16px;
}

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

.form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Animation Classes - Removing completely */
.fade-in {
    opacity: 1; /* Force visible */
}

/* Removed fadeIn keyframes */

.slide-up {
    transform: none;
    opacity: 1; /* Force visible */
}

/* Removed slideUp keyframes */

/* Custom Spacing */
.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.my-6 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

/* Accessibility & Reduced Motion - Apply to all */
*, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}
    
.card:hover {
    transform: none;
}

.rounded-circle:hover {
    transform: none;
}

.text-center .fas:hover,
.text-center .far:hover,
.text-center .fab:hover {
    transform: none;
}

.card:hover .card-img-top {
    transform: none;
}

/* Gallery Styles */
.gallery img {
    /* Removed transition */
    cursor: pointer;
}

.gallery img:hover {
    /* Removed transform */
}

/* Process Steps */
.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: -1;
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}

/* Custom Utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Loading States - Simplified */
.btn-loading {
    pointer-events: none;
    opacity: 0.6;
}

.btn-loading::after {
    display: none; /* Removed loading animation */
}

/* Removed spin keyframes */

.hero-section h1 {
    padding-top: 225px;
}


/* Team Social Links - Neon Style - Simplified */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    display: none; /* Removed blur effect */
}

.social-link:hover::before {
    display: none; /* Removed hover effect */
}

.social-link:hover {
    /* Removed transform and effects */
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

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

.x-link i {
    display: none;
}

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