/* AR Interior Design Visualization App - Main Styles */
/* Bootstrap 5 Integration - No Overrides */

:root {
  /* AR Interior Design Color Palette - 5 Primary Colors */
  --primary-blue: #3b82f6;
  --secondary-purple: #8b5cf6;
  --accent-teal: #14b8a6;
  --warm-orange: #f97316;
  --soft-pink: #ec4899;
  
  /* Light/Dark Shades */
  --light-bg: #f8fafc;
  --dark-text: #1e293b;
  --medium-gray: #64748b;
  --light-gray: #f1f5f9;
  --dark-bg: #0f172a;
  
  /* Conservative Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-spacing: 2rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--light-bg);
}

/* Conservative Font Sizes */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--dark-text);
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--dark-text);
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--dark-text);
}

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

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

.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-decorative {
  position: relative;
  overflow: hidden;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-teal);
  opacity: 0.1;
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: -1;
}

.hero-decorative::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--soft-pink);
  opacity: 0.1;
  border-radius: 30px;
  bottom: -30px;
  left: -30px;
  z-index: -1;
  transform: rotate(45deg);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  border: 1px solid var(--light-gray);
  height: 100%;
}

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

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-blue);
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary-purple);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--light-gray);
  position: relative;
  height: 100%;
}

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

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

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border-left: 4px solid var(--accent-teal);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

/* Case Study Cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  height: 100%;
}

/* Process Cards */
.process-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  position: relative;
  height: 100%;
}

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

/* Timeline Cards */
.timeline-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 4px solid var(--warm-orange);
  margin-bottom: 1.5rem;
}

/* Career Cards */
.career-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  margin-bottom: 1.5rem;
}

/* Core Info Cards */
.coreinfo-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--light-gray);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--medium-gray);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background: var(--primary-blue);
  color: white;
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-info h3 {
  color: white;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  height: 100%;
}

.blog-card .card-body {
  padding: 1.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #2563eb;
  border-color: #2563eb;
}

.btn-outline-primary {
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

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

/* Custom animations are restricted per rules */
.fade-in {
  opacity: 0;
}

.fade-in.sal-animate {
  opacity: 1;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 2rem 0;
}

/* Breadcrumb - Image Only */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

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

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


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

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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