/* Virtual Reality Art Exhibitions - Main CSS */

/* Root Variables - Pastel High-Contrast Color Palette */
:root {
  --primary-purple: #8B5FBF;
  --primary-cyan: #4ECDC4;
  --primary-coral: #FF6B6B;
  --primary-gold: #FFD93D;
  --primary-mint: #6BCF7F;
  
  /* Light shades */
  --light-purple: #B8A4D1;
  --light-cyan: #7FDCD6;
  --light-coral: #FF9999;
  --light-gold: #FFE66D;
  --light-mint: #98DBA3;
  
  /* Dark shades */
  --dark-purple: #5A3E79;
  --dark-cyan: #2E8B7C;
  --dark-coral: #CC5555;
  --dark-gold: #CCA82C;
  --dark-mint: #4A9B5F;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-light: #F8F9FA;
  --gray-medium: #6C757D;
  --gray-dark: #343A40;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--black);
  line-height: 1.6;
    overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 200px;
  height: 200px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0.1;
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* About Section */
.about-section {
  background: var(--gray-light);
}

.feature-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.feature-card .fa {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-mint) 0%, var(--light-gold) 100%);
}

/* Price Plan Section */
.priceplan-section {
  background: var(--gray-light);
}

.price-card {
  border: none;
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.price-card.featured {
  background: var(--primary-purple);
  color: var(--white);
  transform: scale(1.05);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1.5rem 0;
}

.price-card.featured .price {
  color: var(--white);
}

/* Team Section */
.team-section {
  background: var(--white);
}

.team-card {
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-cyan);
}

/* Reviews Section */
.reviews-section {
  background: var(--gray-light);
}

.review-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-purple);
}

/* Case Study Section */
.casestudy-section {
  background: var(--white);
}

.case-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-purple) 100%);
}

.process-step {
  text-align: center;
  padding: 2rem;
}

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

/* Timeline Section */
.timeline-section {
  background: var(--gray-light);
}

.timeline-item {
  padding: 2rem;
  border-left: 4px solid var(--primary-cyan);
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: 0 15px 15px 0;
}

/* Career Section */
.career-section {
  background: var(--white);
}

.career-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
.coreinfo-section {
  background: var(--gray-light);
}

.info-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.info-icon {
  font-size: 3rem;
  color: var(--primary-mint);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background: var(--white);
}

.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
  background: var(--gray-light);
}

.faq-card {
  border: none;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  background: var(--white);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
  background: var(--white);
  padding: 80px 0;
}

.gallery-img {
  border-radius: 15px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-mint) 100%);
}

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

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

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 95, 191, 0.25);
}

.btn-primary {
  background: var(--primary-purple);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-purple);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--gray-light);
  padding: 2rem 0;
}

.breadcrumb-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utilities */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-cyan { color: var(--primary-cyan); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-gold { color: var(--primary-gold); }
.text-primary-mint { color: var(--primary-mint); }

.bg-primary-purple { background-color: var(--primary-purple); }
.bg-primary-cyan { background-color: var(--primary-cyan); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-gold { background-color: var(--primary-gold); }
.bg-primary-mint { background-color: var(--primary-mint); }

.border-primary-purple { border-color: var(--primary-purple); }
.border-primary-cyan { border-color: var(--primary-cyan); }


.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;
    }
}
