/* =======================
   REMOTE TEAM-BUILDING EVENT MARKETPLACE
   Main CSS - Bootstrap 5 Compatible
   ======================= */

/* CSS Variables - 5 Primary Colors + Light/Dark Shades */
:root {
    /* Primary Colors - Pastel High-Contrast */
    --primary-color: #8669ff;        /* Soft Purple */
    --secondary-color: #ff6d64;      /* Coral Red */
    --accent-color: #46b4bb;         /* Teal */
    --warning-color: #eeca68;        /* Soft Yellow */
    --success-color: #98dcca;        /* Mint Green */
    
    /* Light Shades */
    --primary-light: #d0d2ff;
    --secondary-light: #ebe3e4;
    --accent-light: #d9fcff;
    --warning-light: #fffefe;
    --success-light: #F0FDF9;
    
    /* Dark Shades */
    --primary-dark: #644cc7;
    --secondary-dark: #fd637c;
    --accent-dark: #279b8d;
    --warning-dark: #d7d64e;
    --success-dark: #8bd5d1;
    
    /* Neutral Colors */
    --text-primary: #333c47;
    --text-secondary: #667493;
    --text-light: #99a3b7;
    --background-light: #F7FAFC;
    --background-white: #FFFFFF;
    --border-color: #d2dbef;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 0.95rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
}

/* =======================
   GLOBAL STYLES
   ======================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
}

/* Conservative Typography */
h1, .h1 {
    font-size: 2.30rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h2, .h2 {
    font-size: 1.94rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.89rem;
}

h3, .h3 {
    font-size: 1.41rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.84rem;
}

h4, .h4 {
    font-size: 1.30rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.70rem;
}

h5, .h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.60rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* =======================
   HEADER STYLES
   ======================= */

.navbar {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.53rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-size: 1.01rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* =======================
   HERO SECTION
   ======================= */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
}

.hero-title {
    font-size: 2.83rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.60rem;
}

.hero-subtitle {
    font-size: 1.34rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.70rem;
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

/* =======================
   SECTION STYLES
   ======================= */

.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.23rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0.97rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =======================
   CARD STYLES
   ======================= */

.card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-white);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.27rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.02rem;
}

.card-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* =======================
   BUTTON STYLES
   ======================= */

.btn {
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* =======================
   SERVICES SECTION
   ======================= */

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.66rem;
}

.service-title {
    font-size: 1.36rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.04rem;
    color: var(--text-secondary);
    margin-bottom: 1.71rem;
}

.service-price {
    font-size: 1.56rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 1.57rem;
}

/* =======================
   TEAM SECTION
   ======================= */

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
    transition: border-color 0.3s ease;
}

.team-member:hover .team-photo {
    border-color: var(--primary-color);
}

.team-name {
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.71rem;
}

.team-role {
    font-size: 0.96rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* =======================
   FORM STYLES
   ======================= */

.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
    font-size: 1.08rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(111, 84, 255, 0.25);
}

.form-label {
    font-size: 1.00rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.66rem;
}

/* =======================
   FOOTER STYLES
   ======================= */

.footer {
    background-color: var(--text-primary);
    color: var(--background-light);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-light);
    font-size: 0.93rem;
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--background-white);
}

/* =======================
   UTILITY CLASSES
   ======================= */

.text-primary-custom {
    color: var(--primary-color);
}

.text-secondary-custom {
    color: var(--secondary-color);
}

.bg-light-custom {
    background-color: var(--background-light);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.rounded-custom {
    border-radius: var(--border-radius-md);
}

/* =======================
   ANIMATIONS
   ======================= */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* =======================
   ACCESSIBILITY
   ======================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-shape-1,
    .hero-shape-2 {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =======================
   RESPONSIVE HELPERS
   ======================= */

.section-spacer {
    height: 2rem;
}

.mb-custom {
    margin-bottom: 2rem;
}

.mt-custom {
    margin-top: 2rem;
}

.p-custom {
    padding: 2rem;
}

.text-center-mobile {
    text-align: center;
}

@media (min-width: 768px) {
    .text-center-mobile {
        text-align: left;
    }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
