/* Library-Inspired Home Decor Template - Main CSS */
:root {
  /* Color Palette - 5 primary colors with light/dark variations */
  --primary-burgundy: #774940;
  --primary-forest: #20381d;
  --primary-cream: #ffffde;
  --primary-gold: #c6aa19;
  --primary-sage: #8a9974;
  
  /* Light variations */
  --light-burgundy: #8f5753;
  --light-forest: #547457;
  --light-cream: #FAFAF7;
  --light-gold: #dcc443;
  --light-sage: #c1d8a5;
  
  /* Dark variations */
  --dark-burgundy: #531d20;
  --dark-forest: #355330;
  --dark-cream: #eef5c6;
  --dark-gold: #a48415;
  --dark-sage: #6a7e62;
  
  /* Typography */
  --font-primary: 'Georgia', serif;
  --font-secondary: 'Arial', sans-serif;
  
  /* Conservative font sizes */
  --font-size-base: 16px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.5rem;
  --font-size-navbar: 1rem;
  
  /* Shadows and effects */
  --shadow-soft: 0 4px 15px rgba(132, 65, 69, 0.10);
  --shadow-medium: 0 8px 25px rgba(48, 85, 50, 0.15);
  --gradient-warm: linear-gradient(135deg, var(--primary-cream), var(--light-gold));
  --gradient-forest: linear-gradient(135deg, var(--primary-forest), var(--primary-sage));
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-forest);
  background-color: var(--light-cream);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 0.56rem;
  color: var(--primary-burgundy);
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
  margin-bottom: 1.06rem;
  color: var(--dark-forest);
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-cream), rgba(217, 220, 204, 0.95));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: var(--font-size-navbar);
  font-weight: 700;
  color: var(--primary-burgundy) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--dark-forest) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-burgundy) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-warm);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../MUL_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-decorative-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decorative-shape:nth-child(1) {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative-shape:nth-child(2) {
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-image {
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  max-width: 100%;
  height: auto;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background-color: rgba(254, 255, 244, 0.50);
}

.section-title {
  text-align: center;
  margin-bottom: 3.23rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: 1.23rem;
  margin-bottom: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-gold);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.56rem;
}

.service-price {
  font-size: 1.84rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin: 1rem 0;
}

.service-features {
  text-align: left;
  margin: 1rem 0;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-sage);
  font-weight: bold;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 2.60rem;
  color: var(--primary-gold);
  margin-bottom: 1.06rem;
}

/* Price Plans */
.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.priceplan-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.priceplan-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-burgundy);
  box-shadow: var(--shadow-medium);
}

.priceplan-card.featured {
  background: var(--gradient-forest);
  color: white;
  transform: scale(1.1);
}

.priceplan-card.featured h3,
.priceplan-card.featured .priceplan-price {
  color: white;
}

.priceplan-price {
  font-size: 2.60rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin: 1.5rem 0;
}

.priceplan-features {
  text-align: left;
  margin: 2rem 0;
}

.priceplan-features ul {
  list-style: none;
  padding: 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.priceplan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-sage);
  font-weight: bold;
  font-size: 1.32rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.06rem;
  border: 4px solid var(--primary-cream);
}

.team-role {
  color: var(--primary-sage);
  font-style: italic;
  margin-top: 0.66rem;
}

/* Reviews Section */
.reviews-slider {
  margin-top: 3.24rem;
}

.review-item {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin: 0 1rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4.03rem;
  color: var(--primary-gold);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: Georgia, serif;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.56rem;
  font-size: 1.23rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-burgundy);
}

/* Process Section */
.process-timeline {
  position: relative;
  margin-top: 3.24rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-sage);
  transform: translateX(-50%);
}

.process-item {
  position: relative;
  margin-bottom: 3.23rem;
  display: flex;
  align-items: center;
}

.process-item:nth-child(odd) {
  flex-direction: row;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  width: 45%;
  position: relative;
}

.process-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary-burgundy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.32rem;
  z-index: 2;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.24rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 1.06rem;
}

.blog-excerpt {
  color: var(--dark-forest);
  margin-bottom: 1.06rem;
}

.blog-link {
  color: var(--primary-burgundy);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-gold);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1.06rem;
  background: white;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-size: 1.23rem;
  font-weight: 600;
  color: var(--primary-burgundy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-cream);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: var(--dark-forest);
}

.faq-answer.active {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-icon.active {
  transform: rotate(180deg);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3.24rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  margin-top: 3.24rem;
}

.form-group {
  margin-bottom: 1.56rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  font-size: 1.08rem;
  transition: all 0.3s ease;
  background-color: var(--light-cream);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
  background-color: white;
}

.form-label {
  display: block;
  margin-bottom: 0.56rem;
  color: var(--dark-forest);
  font-weight: 600;
}

.btn-primary {
  background: var(--gradient-forest);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.08rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
  background-color: #777777;
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 5.24rem;
}

.footer h5 {
  color: var(--light-gold);
  margin-bottom: 1.06rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.06rem;
  padding-top: 1.25rem;
  text-align: center;
}

/* Contact Info */
.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-top: 2.06rem;
}

.contact-info h4 {
  color: var(--primary-burgundy);
  margin-bottom: 1.56rem;
}

.contact-info p {
  margin-bottom: 0.56rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-sage);
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2.18rem;
}

.breadcrumb-item img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--gradient-warm);
  border-radius: 15px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.56rem; }
.mb-2 { margin-bottom: 1.06rem; }
.mb-3 { margin-bottom: 1.56rem; }
.mb-4 { margin-bottom: 2.18rem; }
.mb-5 { margin-bottom: 3.23rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.66rem; }
.mt-2 { margin-top: 1.22rem; }
.mt-3 { margin-top: 1.63rem; }
.mt-4 { margin-top: 2.06rem; }
.mt-5 { margin-top: 3.24rem; }

/* Animation classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(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;
}

.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;
    }
}
