/* VR Dance Academy - Main Styles */

:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-color: #6f42c1;
    --primary-light: #b19cd9;
    --primary-dark: #4a2c85;
    
    --secondary-color: #20c997;
    --secondary-light: #7edcc4;
    --secondary-dark: #0f6b5a;
    
    --accent-color: #fd7e14;
    --accent-light: #ffa866;
    --accent-dark: #c55a0a;
    
    --neutral-color: #6c757d;
    --neutral-light: #adb5bd;
    --neutral-dark: #495057;
    
    --background-color: #f8f9fa;
    --background-light: #ffffff;
    --background-dark: #e9ecef;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --element-margin: 1.5rem;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: var(--line-height-base);
    color: var(--neutral-dark);
    padding-top: 76px;
    overflow-x: hidden;
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-light);
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

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

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--background-light);
    border: 1px solid var(--background-dark);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.price-tag {
    background: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: auto;
}

/* Team Section */
.team-member {
    padding: 1.5rem;
}

.member-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.05);
}

/* Pricing Cards */
.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card .card-header {
    border: none;
}

.pricing-card .price {
    margin: 1rem 0;
}

/* Review Cards */
.review-card {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.stars {
    font-size: 1.1rem;
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 10px;
}

#gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* FAQ Cards */
.faq-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid var(--background-dark);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    padding: 2rem 1rem;
}

.contact-info i {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--neutral-dark);
}

footer h5 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Additional Page Styles */
.breadcrumb-section {
    padding-top: 100px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Style Cards */
.style-card {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
}

.style-icon {
    margin-bottom: 1.5rem;
}

/* Equipment Items */
.equipment-item {
    padding: 2rem 1rem;
    background: var(--background-light);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.equipment-icon {
    margin-bottom: 1.5rem;
}

/* Support Features */
.support-feature {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* Process Steps */
.process-step {
    padding: 1.5rem;
}

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

/* Success Stories */
.success-story {
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.success-story:hover {
    transform: translateY(-3px);
}

/* Requirements and Installation */
.requirement-item,
.installation-step,
.troubleshoot-item {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-item:hover,
.installation-step:hover,
.troubleshoot-item:hover {
    transform: translateY(-3px);
}

/* Tech Features */
.tech-feature {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border-top: 3px solid var(--accent-color);
}

/* Utility Classes */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Text Colors */
.text-primary {
    color: var(--primary-color);
}

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

/* Conservative Typography */
h1, .display-4 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2, .display-5 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

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

.lead {
    font-size: var(--font-size-lg);
    font-weight: 400;
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

/* Card Shadows */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: currentColor;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Case Study Cards */
.case-study-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.case-study-card:hover {
    transform: translateY(-3px);
}

/* Blog Cards */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* Additional Page Specific Styles */
.style-card,
.equipment-item,
.tech-feature,
.getting-started-step,
.support-feature,
.requirement-item,
.installation-step,
.troubleshoot-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card:hover,
.equipment-item:hover,
.getting-started-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Timeline Styles */
.timeline-item {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.career-card:hover {
    transform: translateY(-3px);
}

/* Core Info Items */
.coreinfo-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-5px);
}

.coreinfo-icon {
    margin-bottom: 1.5rem;
} 

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


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

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

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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