/* Custom styles for Lemon Vitality website */
:root {
  --light-orange-100: #fef3c7; /* Bolder lemon-inspired orange */
  --light-orange-50: #fffbeb; /* Lighter lemon shade */
  --light-blue-500: #3b82f6; /* Vibrant blue for contrast */
  --light-blue-100: #dbeafe; /* Softer blue for backgrounds */
  --light-blue-50: #eff6ff; /* Lightest blue */
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: linear-gradient(to bottom, var(--light-orange-50), var(--light-blue-50));
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--light-blue-500);
  color: white;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, var(--light-blue-500), var(--light-blue-100));
}

footer {
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, var(--light-blue-500), var(--light-blue-100));
}

section {
  border-radius: 0.5rem;
  margin: 1rem;
}

@media (max-width: 640px) {
  nav ul {
    flex-direction: column;
    space-y-2;
  }

  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  iframe {
    height: 200px;
  }
}