/* Virtual Coworking Café - Main CSS */

/* CSS Variables for Color Palette */
:root {
    --primary-purple: #8B5FBF;
    --primary-teal: #4ECDC4;
    --primary-coral: #FF6B6B;
    --primary-sage: #95D5B2;
    --primary-cream: #F7E7D1;
    
    /* Light shades */
    --light-purple: #B19CD9;
    --light-teal: #7FDDD7;
    --light-coral: #FFB3B3;
    --light-sage: #B8E6D4;
    --light-cream: #FBF3E8;
    
    /* Dark shades */
    --dark-purple: #6A4C93;
    --dark-teal: #2D9CDB;
    --dark-coral: #E74C3C;
    --dark-sage: #52B788;
    --dark-cream: #E6CFA7;
    
    /* Additional colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-purple);
}

h2 {
    font-size: 2rem;
    color: var(--primary-teal);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-coral);
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-sage);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--medium-gray);
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--dark-purple);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-sage) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--light-purple) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-top: 200px;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: var(--dark-gray);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 95, 191, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 95, 191, 0.15);
}

.feature-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(78, 205, 196, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, var(--light-teal), var(--light-sage));
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--primary-coral);
    margin-bottom: 0.75rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-sage);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-align: center;
    margin-top: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
}

.form-control {
    border: 2px solid var(--light-cream);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    outline: none;
}

.form-check-input:checked {
    background-color: var(--primary-sage);
    border-color: var(--primary-sage);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-coral), var(--primary-purple));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--dark-coral), var(--dark-purple));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Sections */
section {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light-gray);
}

/* Resource Items for Additional Pages */
.resource-item, .feature-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(149, 213, 178, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.resource-item:hover, .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(149, 213, 178, 0.15);
}

.resource-item h4, .feature-item h4 {
    color: var(--primary-coral);
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

footer h5 {
    color: var(--primary-cream);
    margin-bottom: 1rem;
}

footer p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-teal);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(139, 95, 191, 0.2);
}

/* Space Page Specific */
#space {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-teal) 50%, var(--light-sage) 100%);
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#space h1 {
    font-size: 4rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-teal), var(--primary-sage));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dark-teal), var(--dark-sage));
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-coral);
    outline-offset: 2px;
}

/* Step numbers for process section */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-coral), var(--primary-purple));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Team member styling */
.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 95, 191, 0.2);
}

/* Blog post styling */
.feature-card:hover img {
    transform: scale(1.05);
}

/* Gallery images */
.gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Blog post images */
.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Team member images consistent sizing */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} 


/* 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);
}

.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;
    }
}
