/* Home Décor Store Template - Main CSS */
:root {
  /* Primary Color Palette - 5 colors plus light/dark shades */
  --primary-1: #8B4513; /* Saddle Brown */
  --primary-1-light: #A0522D;
  --primary-1-dark: #654321;
  
  --primary-2: #2F4F4F; /* Dark Slate Gray */
  --primary-2-light: #708090;
  --primary-2-dark: #1C1C1C;
  
  --primary-3: #DAA520; /* Goldenrod */
  --primary-3-light: #FFD700;
  --primary-3-dark: #B8860B;
  
  --primary-4: #8FBC8F; /* Dark Sea Green */
  --primary-4-light: #98FB98;
  --primary-4-dark: #2E8B57;
  
  --primary-5: #F5DEB3; /* Wheat */
  --primary-5-light: #FFFAF0;
  --primary-5-dark: #DEB887;
  
  /* Gradients */
  --gradient-1: linear-gradient(135deg, var(--primary-1), var(--primary-3));
  --gradient-2: linear-gradient(45deg, var(--primary-2), var(--primary-4));
  --gradient-3: linear-gradient(180deg, var(--primary-5-light), var(--primary-5));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-2-dark);
  font-size: 16px; /* Conservative root font size */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.25rem !important; /* Conservative logo size */
  font-weight: 600;
  color: var(--primary-1) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--primary-2) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-3) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-5-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 2.5rem; /* Conservative h1 size */
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.1rem; /* Conservative paragraph size */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem; /* Conservative section title size */
  font-weight: 600;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary-2);
  margin-bottom: 2rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--primary-2);
  margin-bottom: 3rem;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid var(--primary-5);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  color: var(--primary-1);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--primary-2);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-3);
}

/* About Features */
.feature-item {
  background: var(--gradient-3);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid var(--primary-5-dark);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.feature-item h5 {
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-3);
}

.team-member h5 {
  color: var(--primary-1);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-2);
  font-style: italic;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  border-left: 4px solid var(--primary-3);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-1);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--primary-5);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-5-light);
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-1);
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 1rem;
  background: white;
  color: var(--primary-2);
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--gradient-3);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--primary-5-dark);
}

.form-control {
  border: 2px solid var(--primary-5);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-3);
  box-shadow: 0 0 0 0.2rem rgba(218, 165, 32, 0.25);
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-1);
}

/* Footer */
.footer {
  background: var(--primary-2-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-3);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--primary-5-light);
}

.breadcrumb-section img {
  height: 24px;
}

/* Price Plans */
.price-card {
  background: white;
  border: 2px solid var(--primary-5);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-3);
  transform: translateY(-5px);
}

.price-card h4 {
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--primary-5);
}

.price-card li:last-child {
  border-bottom: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 50px;
  height: 2px;
  background: var(--primary-3);
  display: none;
}

.process-step:not(:last-child)::after {
  display: block;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--primary-3);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  background: var(--primary-3);
  border-radius: 50%;
}

/* Career Items */
.career-item {
  background: white;
  border: 1px solid var(--primary-5);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.career-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Case Studies */
.case-study-item {
  background: var(--gradient-3);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--primary-5-dark);
}

/* Core Info */
.core-info-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.core-info-item i {
  font-size: 2rem;
  color: var(--primary-1);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.blog-card h5 {
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--primary-3);
  text-decoration: none;
  font-weight: 600;
}

.blog-card a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-light-custom {
  background-color: var(--primary-5-light) !important;
}

.bg-primary-custom {
  background: var(--gradient-1) !important;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-3);
  border-radius: 12px;
  margin: 2rem 0;
} 