/*
Theme Name: Butler Page
Theme URI: https://butler.mymeal.ma
Author: Butler Team
Author URI: https://butler.mymeal.ma
Description: A custom theme for Butler restaurant booking application
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: butlerpage
Tags: restaurant, booking, multilingual, responsive
*/

:root {
  --primary: #4b7355;
  --secondary: #333333;
  --shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Steps Section Styling */
.steps-container {
  position: relative;
  height: 100%;
  padding: 2rem 0;
}

.step-item {
  position: relative;
  transition: all 0.3s ease;
  padding: 1rem;
  margin-bottom: 2rem;
}

.step-item:hover {
  transform: translateX(10px);
  background: rgba(75, 115, 85, 0.05);
  border-radius: 12px;
}

.step-icon {
  filter: drop-shadow(0 4px 6px rgba(75, 115, 85, 0.2));
}

.step-content h3 {
  background: linear-gradient(90deg, var(--primary) 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-container::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(75, 115, 85, 0.2) 100%);
  animation: lineGrow 2s ease;
}

/* Download Card */
.download-card {
  background: linear-gradient(135deg, var(--primary) 0%, #5c8b68 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  padding: 2rem;
}

.download-card:hover {
  transform: translateY(-5px);
}

/* Community Card */
.community-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.community-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* Grid Layout */
.grid-cols-1.lg\:grid-cols-3 {
  gap: 2.5rem;
  align-items: stretch;
  min-height: 600px;
}

/* Animations */
@keyframes lineGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .steps-container {
    padding: 0 1rem;
  }
  
  .download-card {
    margin: 2rem 0;
  }
  
  .community-card img {
    height: 200px;
  }
  
  .grid-cols-1.lg\:grid-cols-3 {
    min-height: auto;
  }
  
  .step-item:hover {
    transform: none;
  }
}
