:root {
    /* Color Palette - 5 primary colors with light/dark shades */
    --primary-color: #6c63ff;
    --primary-light: #8a84ff;
    --primary-dark: #4c46cc;
    
    --secondary-color: #ff6b9d;
    --secondary-light: #ff8bb3;
    --secondary-dark: #e54a7d;
    
    --accent-color: #4ecdc4;
    --accent-light: #6ed5ce;
    --accent-dark: #3ba59c;
    
    --warning-color: #ffd93d;
    --warning-light: #ffe066;
    --warning-dark: #e6c235;
    
    --success-color: #6bcf7f;
    --success-light: #85d895;
    --success-dark: #52a85f;
    
    /* Neutral colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Typography */
    --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    
    /* Border radius */
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Base styles */
body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Conservative typography sizes */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

h1, .display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5, .h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
}

p, .lead {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

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

.text-secondary {
    color: var(--secondary-color);
}

.text-success {
    color: var(--success-color);
}

.text-warning {
    color: var(--warning-color);
}

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

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

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

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.feature-card, .service-card, .review-card, .case-study-card, .blog-card, .faq-card, .career-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius-lg);
}

.feature-card:hover, .service-card:hover, .review-card:hover, .case-study-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.price-tag {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Price Plan Cards */
.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-plan {
    border: 2px solid var(--primary-color);
    position: relative;
}

.price-display {
    padding: var(--spacing-lg) 0;
}

/* Team Section */
.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Process Section */
.process-step {
    padding: var(--spacing-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 auto var(--spacing-md);
}

/* Timeline Section */
.timeline-item {
    padding: var(--spacing-lg);
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 auto var(--spacing-md);
}

/* Gallery Section */
.gallery img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.form-control {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    padding: 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

/* Contact Info */
.contact-info {
    padding: var(--spacing-lg);
}

/* Footer */
#footer {
    background-color: var(--dark-gray);
    color: var(--white);
}

#footer a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--white);
}

/* Additional Page Styles */
.workshop-item, .equipment-item, .business-item, .workflow-item, .schedule-item,
.gallery-category, .student-work, .location-item, .technique-example, .behind-scenes,
.info-card {
    padding: var(--spacing-lg);
    text-align: center;
}

.workshop-item i, .equipment-item i, .business-item i, .workflow-item i, .schedule-item i,
.info-card i {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    filter: opacity(0.7);
}

/* Stars for reviews */
.stars {
    color: var(--warning-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
    }
    
    .hero-section .container {
        text-align: center;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
    
    .feature-card:hover, .service-card:hover, .review-card:hover, 
    .case-study-card:hover, .blog-card:hover, .price-card:hover {
        transform: none;
    }
    
    .gallery img:hover {
        transform: none;
    }
} 

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


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

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

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

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

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

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