:root {
  --primary-color: #8e6c88;
  --secondary-color: #d4b8c7;
  --accent-color: #a78a7f;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

.navbar {
  padding: 15px 0;
  transition: all 0.3s;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  color: var(--dark-color);
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: -10px;
  left: 0;
  background-color: var(--secondary-color);
}

.card-service {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.card-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-logo {
  max-height: 70px;
  margin-bottom: 20px;
}

.footer-links h5 {
  margin-bottom: 20px;
  position: relative;
}

.footer-links h5:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-in-left {
  animation: slideInLeft 1s;
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-right {
  animation: slideInRight 1s;
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Product Card Styles */
.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  height: 100%;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.product-details {
  padding: 20px;
}

.product-details h5 {
  color: var(--primary-color);
  font-weight: 700;
}

.product-details p {
  margin: 4px 0;
  font-size: 0.92rem;
}