/* Bootstrap 5 CDN Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.4/css/lightbox.min.css');

/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-wood: #8B4513;
  --primary-warm: #D2691E;
  --primary-cream: #F5F5DC;
  --primary-forest: #228B22;
  --primary-burgundy: #800020;
  
  /* Light Shades */
  --light-wood: #CD853F;
  --light-warm: #F4A460;
  --light-cream: #FFFACD;
  --light-forest: #90EE90;
  --light-burgundy: #DC143C;
  
  /* Dark Shades */
  --dark-wood: #654321;
  --dark-warm: #A0522D;
  --dark-cream: #F0E68C;
  --dark-forest: #006400;
  --dark-burgundy: #4B0000;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-wood);
  background-color: var(--light-cream);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-wood), var(--dark-wood));
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cream) !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--light-cream) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-warm) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--light-warm) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/imw_hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-wood);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--dark-warm);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--dark-wood);
  margin-bottom: 2rem;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-wood);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-warm);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--dark-wood);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background-color: var(--primary-cream);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card h4 {
  color: var(--primary-wood);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--dark-wood);
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.service-card h5 {
  color: var(--primary-wood);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-bottom: 1rem;
}

.service-features {
  font-size: 0.9rem;
  color: var(--dark-warm);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background-color: var(--light-cream);
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.team-card h5 {
  color: var(--primary-wood);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-warm);
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-wood), var(--dark-wood));
  color: white;
}

.review-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--light-cream);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: var(--primary-cream);
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-cream);
  border-radius: 10px;
  padding: 0.8rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-warm);
  box-shadow: 0 0 0 0.2rem rgba(210, 105, 30, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-warm), var(--dark-warm));
  border: none;
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 0;
  background-color: var(--light-cream);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--primary-cream);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
  background-color: var(--light-cream);
  color: var(--primary-wood);
  font-weight: 600;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-warm);
  color: white;
}

.accordion-body {
  overflow-x: hidden;
  background-color: white;
  color: var(--dark-wood);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-wood), var(--primary-wood));
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-warm);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-warm);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: var(--light-cream);
}

.breadcrumb img {
  height: 24px;
  width: auto;
}

/* Utilities */
.text-wood {
  color: var(--primary-wood);
}

.text-warm {
  color: var(--primary-warm);
}

.bg-wood {
  background-color: var(--primary-wood);
}

.bg-warm {
  background-color: var(--primary-warm);
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
  background-color: var(--primary-warm);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-warm);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
} 