/* AR Art Installations Template - Main CSS */

/* Color Palette - 5 primary colors + shades */
:root {
  --primary-purple: #8e65cb;
  --primary-cyan: #35b7b0;
  --primary-coral: #ff727a;
  --primary-amber: #f0e64d;
  --primary-mint: #50bc5f;
  
  /* Light shades */
  --light-purple: #a292d1;
  --light-cyan: #7dd3d8;
  --light-coral: #ffa1a0;
  --light-amber: #ffdc85;
  --light-mint: #ace7b4;
  
  /* Dark shades */
  --dark-purple: #684689;
  --dark-cyan: #288b8f;
  --dark-coral: #b9484d;
  --dark-amber: #caa730;
  --dark-mint: #52a267;
  
  /* Neutral colors */
  --white: #FFFFFF;
  --black: #232122;
  --gray-light: #F8F9FA;
  --gray-medium: #888e92;
  --gray-dark: #363c3f;
}

/* Base styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Conservative font sizes */
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p { font-size: 1rem; margin-bottom: 1rem; }

/* Navbar conservative sizing */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
}

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

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: var(--primary-amber);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 150px;
}

/* Section spacing */
section {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--white);
  border: 2px solid var(--light-cyan);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-cyan);
}

/* Services section */
.services-section {
  background: linear-gradient(45deg, var(--light-mint) 0%, var(--light-amber) 100%);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--light-purple);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 10px 30px rgba(167, 117, 209, 0.20);
}

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

/* Features section */
.features-section {
  background-color: var(--white);
}

.feature-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: 15px;
  margin-bottom: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary-mint);
  background: var(--light-mint);
}

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

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 3px solid var(--light-amber);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-coral);
  transform: scale(1.05);
}

.price-value {
  color: var(--primary-purple);
  font-size: 2.5rem;
  font-weight: 700;
}

/* Team section */
.team-section {
  background-color: var(--gray-light);
}

.team-member {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--light-cyan);
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-mint);
  margin-bottom: 20px;
}

/* Reviews section */
.reviews-section {
  background: linear-gradient(45deg, var(--light-amber) 0%, var(--light-coral) 100%);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--light-purple);
  margin-bottom: 30px;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: var(--primary-purple);
  font-weight: 700;
}

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

.case-card {
  background: var(--gray-light);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--light-mint);
  transition: all 0.3s ease;
  height: 100%;
}

.case-card:hover {
  border-color: var(--primary-mint);
  background: var(--light-mint);
}

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

.process-step {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--light-coral);
  position: relative;
  margin-bottom: 30px;
}

.process-step::before {
  content: counter(process-counter);
  counter-increment: process-counter;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-coral);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-container {
  counter-reset: process-counter;
}

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

.timeline-item {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  border-left: 5px solid var(--primary-purple);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-left-color: var(--primary-coral);
  transform: translateX(10px);
}

/* Career section */
.career-section {
  background: linear-gradient(45deg, var(--light-purple) 0%, var(--light-amber) 100%);
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--light-mint);
  transition: all 0.3s ease;
  height: 100%;
}

.career-card:hover {
  border-color: var(--primary-mint);
  box-shadow: 0 10px 30px rgba(81, 185, 110, 0.20);
}

/* Core Info section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-item {
  background: var(--gray-light);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--light-cyan);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  border-color: var(--primary-cyan);
  background: var(--light-cyan);
}

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

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid var(--light-purple);
}

.form-control {
  border: 2px solid var(--light-mint);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(122, 229, 149, 0.25);
}

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
}

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

/* Blog section */
.blog-section {
  background-color: var(--gray-light);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--light-amber);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  border-color: var(--primary-amber);
  transform: translateY(-5px);
}

/* FAQ section */
.faq-section {
  background: linear-gradient(45deg, var(--light-mint) 0%, var(--light-purple) 100%);
}

.faq-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px;
  border: 2px solid var(--light-coral);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: var(--primary-coral);
  box-shadow: 0 5px 15px rgba(247, 84, 104, 0.20);
}

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

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

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--light-cyan);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.gallery-item:hover {
  border-color: var(--primary-cyan);
  transform: scale(1.05);
}

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

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

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

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

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Animations - ScrollReveal Integration */
[data-sal] {
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  [data-sal] {
    transition: none !important;
  }
}

/* Utility classes */
.text-primary-purple { color: var(--primary-purple); }
.text-primary-cyan { color: var(--primary-cyan); }
.text-primary-coral { color: var(--primary-coral); }
.text-primary-amber { color: var(--primary-amber); }
.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-amber { background-color: var(--primary-amber); }
.bg-primary-mint { background-color: var(--primary-mint); }

/* Custom spacing */
.py-section { padding: 80px 0; }
.my-section { margin: 80px 0; } 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
