/* AR-enabled Interior Décor Catalog - Main Styles */

/* Color Palette */
:root {
  --primary-sage: #87A96B;
  --primary-cream: #F5F2E8;
  --primary-terracotta: #D4A574;
  --primary-navy: #2C3E50;
  --primary-blush: #E8C5B5;
  
  /* Light & Dark Shades */
  --sage-light: #A8C487;
  --sage-dark: #6B8A4F;
  --cream-light: #FFFFFF;
  --cream-dark: #EDE8DC;
  --terracotta-light: #E3BC8E;
  --terracotta-dark: #C49660;
  --navy-light: #34495E;
  --navy-dark: #1B2631;
  --blush-light: #F0D4C7;
  --blush-dark: #E0B5A3;
  
  /* Text Colors */
  --text-primary: var(--navy-dark);
  --text-secondary: var(--navy-light);
  --text-light: var(--cream-light);
}

/* Base Typography */
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--cream-light);
    overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Header */
#header {
  background-color: var(--cream-light);
  border-bottom: 1px solid var(--cream-dark);
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-blush);
  opacity: 0.1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  background: var(--primary-sage);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* About Section */
#about {
  background-color: var(--cream-light);
}

.feature-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Services Section */
#services {
  background-color: var(--primary-cream);
}

.service-card {
  background: var(--cream-light);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-image {
  height: 200px;
  background-color: var(--cream-dark);
  background-size: cover;
  background-position: center;
}

.service-body {
  padding: 1.5rem;
}

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

/* Features Section */
#features {
  background-color: var(--cream-light);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--primary-cream);
}

.price-card {
  background: var(--cream-light);
  border: 2px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

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

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

/* Team Section */
#team {
  background-color: var(--cream-light);
}

.team-card {
  background: var(--cream-light);
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-image {
  height: 250px;
  background-color: var(--cream-dark);
  background-size: cover;
  background-position: center;
}

/* Reviews Section */
#reviews {
  background-color: var(--primary-cream);
}

.review-card {
  background: var(--cream-light);
  border-left: 4px solid var(--primary-sage);
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
}

/* Case Studies Section */
#casestudy {
  background-color: var(--cream-light);
}

.case-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.case-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Process Section */
#process {
  background-color: var(--primary-cream);
}

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

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

/* Timeline Section */
#timeline {
  background-color: var(--cream-light);
}

.timeline-item {
  padding: 1.5rem 0;
  border-left: 2px solid var(--primary-sage);
  padding-left: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-sage);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 2rem;
}

/* Career Section */
#career {
  background-color: var(--primary-cream);
}

.career-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

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

/* Core Info Section */
#coreinfo {
  background-color: var(--cream-light);
}

.info-card {
  background: var(--primary-cream);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: background-color 0.3s ease;
}

.info-card:hover {
  background: var(--cream-dark);
}

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

/* Contact Section */
#contacts {
  background-color: var(--primary-cream);
}

.contact-form {
  background: var(--cream-light);
  border-radius: 0.5rem;
  padding: 2rem;
}

.form-control {
  border: 1px solid var(--cream-dark);
  background-color: var(--cream-light);
  color: var(--text-primary);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  color: var(--cream-light);
}

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

/* Blog Section */
#blog {
  background-color: var(--cream-light);
}

.blog-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.blog-image {
  height: 200px;
  background-color: var(--cream-dark);
  background-size: cover;
  background-position: center;
}

/* FAQ Section */
#faq {
  background-color: var(--primary-cream);
}

.faq-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Gallery Section */
#gallery {
  background-color: var(--cream-light);
  padding: 3rem 0;
}

.gallery-item {
  height: 250px;
  background-color: var(--cream-dark);
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* Footer */
#footer {
  background-color: var(--navy-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

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

.footer-link:hover {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-sage { color: var(--primary-sage); }
.text-terracotta { color: var(--primary-terracotta); }
.bg-sage { background-color: var(--primary-sage); }
.bg-cream { background-color: var(--primary-cream); }

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

/* Custom Utilities (minimal use) */
.shadow-soft {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.rounded-lg {
  border-radius: 0.75rem;
}



/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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