/* Screenshot Section Styles */

.screenshot-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.screenshot-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0));
}

.featured-screenshots {
  margin-top: 3rem;
}

.feature-showcase {
  height: 100%;
  padding: 1.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.feature-showcase:hover {
  transform: translateY(-10px);
}

.screenshot-info {
  margin-bottom: 2rem;
}

.feature-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.05);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.screenshot-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #000, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.screenshot-info p {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
}

.screenshot-container {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

.screenshot-wrapper {
  position: relative;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.12),
    0 10px 20px rgba(0,0,0,0.08);
  transform: perspective(1000px) rotateX(2deg);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.screenshot-wrapper:hover {
  transform: perspective(1000px) rotateX(0);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.15),
    0 15px 25px rgba(0,0,0,0.1);
}

.feature-screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.screenshot-wrapper:hover .feature-screenshot {
  transform: translateY(-5px);
}

.screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0) 50%
  );
  pointer-events: none;
}

/* Layout helpers */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-lg-4, .col-md-6 {
  padding-left: 15px;
  padding-right: 15px;
}

.col-md-6 {
  width: 50%;
}

.col-lg-4 {
  width: 33.333%;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .screenshot-section {
    padding: 80px 0 60px;
  }
  
  .feature-showcase {
    margin-bottom: 2rem;
  }
  
  .col-lg-4 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .feature-showcase {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .col-lg-4, .col-md-6 {
    width: 100%;
  }
}
