html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #ff7a00;
  --primary-dark: #e66e00;
  --secondary-color: #fdf2e9;
  --text-main: #333;
  --text-light: #555;
  --text-muted: #777;
  --white: #fff;
  --transition-smooth: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-main);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-link {
  font-weight: 500;
  color: var(--text-main) !important;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.section-bg-light {
  background-color: var(--secondary-color);
}

.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.badge-diet {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-weight: 600;
}

.hero-img {
  transition: var(--transition-smooth);
}

.hero-img:hover {
  transform: scale(1.02);
}

.step-number {
  font-size: 6rem;
  color: #eee;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.gallery-img {
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Utilities */
.text-orange { color: var(--primary-color) !important; }
.bg-orange { background-color: var(--primary-color) !important; }

.transition-smooth {
  transition: var(--transition-smooth);
}

.hover-orange:hover {
  color: var(--primary-color) !important;
}

.hover-opacity-75:hover {
  opacity: 0.75;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.opacity-10 {
  opacity: 0.1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .step-number {
    font-size: 4rem;
  }
}
