/* Custom styles for Omnifood */
:root {
  --primary-color: #e67e22;
  --primary-dark: #cf711f;
  --bg-peach: #fdf2e9;
  --bg-gray: #fdfdfd;
  --text-dark: #333;
  --text-light: #555;
  --text-lighter: #888;
}

body {
  font-family: 'Rubik', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .text-dark-heading {
  color: var(--text-dark);
}

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

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

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

.text-light-gray {
  color: #ddd;
}


.header {
  background-color: var(--bg-peach);
}

.logo {
  height: 22px;
}


.hero-description {
  max-width: 500px;
}

.face-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  transition: transform 0.3s;
}

.face-img:hover {
  transform: scale(1.1);
  z-index: 10;
}


.subheading {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.75px;
}

.step-number {
  font-size: 5.5rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 12px;
}

.step-img-bg {
  width: 60%;
  padding-bottom: 60%;
  z-index: 0;
}

.step-img {
  width: 35%;
  z-index: 1;
}

.step-img-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background-color: #fae5d3;
  border-radius: 50%;
  z-index: -1;
}


.meal-card {
  transition: all 0.4s;
}

.meal-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.06) !important;
}

.bg-success-light {
  background-color: #51cf66;
}

.bg-warning-light {
  background-color: #ffd43b;
}

.list-icons li i {
  width: 1.25rem;
}

.link-hover:hover {
  color: var(--primary-dark) !important;
  border-bottom-color: transparent !important;
}


.section-testimonials {
  display: flex;
  align-items: center;
}

.testimonial-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
}

.gallery-img {
  transition: all 0.4s;
}

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


.social-links a {
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--text-dark) !important;
}

.link-hover-dark {
  transition: color 0.3s;
}

.link-hover-dark:hover {
  color: var(--text-dark) !important;
}
