/* style.css — Omnient Enterprises */

/* Global typography */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  background: #f9fafb;
  color: #1f2937;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}
header nav a {
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.2s ease;
}
header nav a:hover {
  color: #2563eb;
}

/* Hero section */
.hero {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero a {
  background: white;
  color: #1e40af;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}
.hero a:hover {
  background: #f1f5f9;
}

/* Cards (pricing, features) */
.card {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Footer */
footer {
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn:hover {
  background: #1d4ed8;
}

/* Contact Form Styling */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  border-color: #0077ff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,119,255,0.3);
}

form button {
  padding: 0.75rem;
  font-size: 1rem;
  background: #0077ff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: #005fcc;
}
