:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --color-primary: #C89F91;
    --color-dark: #2E282A;
    --color-light: #FDFBF8;
    --color-text: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: 500px; 
  object-fit: cover;
  border-radius: 0;
}


.fade {
  animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.services {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.services h2 {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px; 
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}

.decor-package {
  text-align: center;
  margin-bottom: 20px; 
}

.service-item {
  background: #fff;
  border: 2px solid #eee;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px; 
  margin: 0 auto;
  margin-bottom: 15px; 
}

.service-item img {
  width: 100%;
  height: 300px; 
  object-fit: contain; 
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #f8f9fa; 
}

.service-item .frame {
  margin-bottom: 0; 
}

.service-description {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  color: var(--color-text, #333);
  padding: 0 10px;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}

.service-price {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary, #C89F91);
  margin-top: 10px;
}


@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .slide img {
        height: 400px; 
    }
}


@media (max-width: 600px) {
    .services {
        padding: 20px 10px;
        min-height: auto;
    }

    .slideshow-container {
        padding-top: 50px; 
    }

    .slide img {
        height: 250px; 
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item {
        max-width: 100%; 
        padding: 10px;
    }
    
    .service-item img {
        height: 200px; 
    }
}