/* ===== AUGMENTED REALITY ART INSTALLATIONS TEMPLATE ===== */
/* Bootstrap 5 Compliant - No Overrides */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-1: #d7c2ec;          /* Soft lavender */
  --primary-2: #d8f2da;          /* Mint green */
  --primary-3: #ffead5;          /* Warm peach */
  --primary-4: #d0e0f0;          /* Sky blue */
  --primary-5: #efd6e3;          /* Rose pink */
  
  /* Light/Dark Shades */
  --primary-1-light: #F5ECFF;
  --primary-1-dark: #dac4ff;
  --primary-2-light: #e1ffe3;
  --primary-2-dark: #a6e4a3;
  --primary-3-light: #f6f2eb;
  --primary-3-dark: #ffd493;
  --primary-4-light: #f0f0f1;
  --primary-4-dark: #8db8f3;
  --primary-5-light: #e7d6dd;
  --primary-5-dark: #ff9ddd;
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-medium: #707b8a;
  --neutral-dark: #1b1d21;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  
  /* Conservative Font Sizes */
  --fs-navbar-brand: 0.9rem;     /* Reduced size for logo */
  --fs-h1: 2.2rem;               /* Conservative h1 */
  --fs-h2: 1.8rem;
  --fs-h3: 1.5rem;
  --fs-h4: 1.25rem;
  --fs-h5: 1.1rem;
  --fs-h6: 1rem;
  --fs-body: 0.95rem;            /* Conservative body text */
  --fs-small: 0.85rem;
  --fs-nav-link: 0.8rem;         /* Added for nav links */
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-margin: 1.5rem;
  
  /* Border Radius */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 0.75rem;
  --border-radius-lg: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ===== GENERAL STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.navbar-brand {
  font-size: 10px !important;
  font-weight: var(--font-weight-bold);
  color: var(--neutral-dark);
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: var(--element-margin);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: var(--element-margin);
}

h3 {
  font-size: var(--fs-h3);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.83rem;
}

h5 {
  font-size: var(--fs-h5);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

h6 {
  font-size: var(--fs-h6);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 0.59rem;
}

p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--neutral-medium);
}

.lead {
  font-size: 1.12rem;
  font-weight: var(--font-weight-light);
}

/* ===== SECTIONS ===== */
section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-1-dark);
  margin-bottom: 0.66rem;
}

.section-subtitle {
  color: var(--primary-2-dark);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--neutral-medium);
  margin-bottom: 2.72rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1-light) 0%, var(--primary-4-light) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
    padding-top: 175px;
}

.hero-decorative {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-2);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: var(--primary-5);
  border-radius: 50%;
  opacity: 0.5;
}

/* ===== CARDS ===== */
.custom-card {
  background: var(--neutral-white);
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon i {
  font-size: 1.63rem;
  color: var(--primary-1-dark);
}

/* ===== SERVICES ===== */
.service-card {
  background: var(--neutral-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-1-dark);
  margin-top: 1rem;
}

/* ===== TEAM ===== */
.team-member {
  text-align: center;
  background: var(--neutral-white);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.team-member: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-2-light);
}

/* ===== TESTIMONIALS (STATIC CARDS ONLY) ===== */
.testimonial-card {
  background: var(--neutral-white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-3);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--neutral-medium);
  margin-bottom: 1.66rem;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: var(--font-weight-medium);
  color: var(--neutral-dark);
}

/* ===== FAQ (STATIC CARDS ONLY) ===== */
.faq-card {
  background: var(--neutral-white);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-1-light);
}

.faq-question {
  font-weight: var(--font-weight-medium);
  color: var(--neutral-dark);
  margin-bottom: 0.92rem;
  font-size: 1.19rem;
}

.faq-answer {
  color: var(--neutral-medium);
  font-size: 1.01rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--neutral-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-control {
  border: 2px solid var(--primary-1-light);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  font-size: var(--fs-body);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.2rem rgba(224, 203, 255, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-sm);
  font-weight: var(--font-weight-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-1-dark), var(--primary-2-dark)) !important;
  border: none !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.64rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, #010101 100%);
  color: var(--neutral-light);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--primary-1-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-2-light);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--primary-1-light);
  text-align: center;
}

.breadcrumb-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

/* ===== UTILITIES ===== */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary-1-light), var(--primary-4-light));
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--primary-2-light), var(--primary-5-light));
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-1-dark), var(--primary-2-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR SCROLL EFFECT ===== */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

/* ===== LAZY LOADING ===== */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.fade-in,
.lazy.loaded {
  opacity: 1;
}

.lazy-bg {
  background-image: none !important;
  transition: background-image 0.3s ease;
}

.lazy-bg.loaded {
  background-image: var(--bg-image) !important;
}

/* ===== NOTIFICATION TOASTS ===== */
.notification-toast {
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== SPACE DIV (FOR AR CONTENT) ===== */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--primary-4-light) 0%, var(--primary-1-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 80px; /* Account for fixed navbar */
}

#space::before {
  content: 'AR Space Ready';
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  color: var(--primary-1-dark);
  text-align: center;
  opacity: 0.5;
}

/* ===== BACK TO TOP BUTTON ===== */
#b0a4b7k-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#baa1d9k-to-top:hover {
  transform: translateY(-3px);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-1);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== FORM VALIDATION STATES ===== */
.is-invalid {
  border-color: #c63e38 !important;
}

.is-valid {
  border-color: #107842 !important;
}

.invalid-feedback {
  display: block;
  color: #e73341;
  font-size: 0.94rem;
  margin-top: 0.32rem;
}

/* ===== NANOBAR PROGRESS ===== */
.nanobar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
}

.nanobar .bar {
  background: linear-gradient(90deg, var(--primary-1), var(--primary-2));
  height: 100%;
  transition: width 0.3s ease;
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .custom-card:hover,
  .service-card:hover,
  .team-member:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .notification-toast {
    animation: none;
  }
  
  .lazy {
    transition: none;
    opacity: 1;
  }
} 


/* 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;
}

.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;
    }
}
