/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #f9fafc;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #23272a;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 1.75rem;
  font-style: italic;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: 'Orbitron', sans-serif; /* Orbitron for the title */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff4757;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #7289da, #5865f2);
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #ff4757;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #e84118;
  transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
  text-align: center;
  padding: 5rem 2rem;
}

.flat-rate {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Order Form */
.order-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-form input {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.order-form input:focus {
  border-color: #7289da;
  outline: none;
}

/* About & Contact */
.about, .contact {
  padding: 5rem 2rem;
  text-align: center;
  background: #f1f3f6;
}

.contact form {
  max-width: 520px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #5865f2;
  outline: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #23272a;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}
