/* ElevateFast.dev New Professional Stylesheet */

body {
  font-family: 'Inter', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fafb; /* Soft light background */
  color: #111827; /* Almost black text */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: white;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

header h1 {
  display: inline-block;
  margin: 0;
  font-size: 1.8rem;
  color: #2563eb; /* Primary deep blue */
}

header .btn-primary {
  float: right;
  background: #2563eb;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

header .btn-primary:hover {
  background: #1d4ed8; /* Slightly darker blue on hover */
  transform: scale(1.05); /* Slight zoom */
}

/* Hero Section */
.hero {
  background: #f9fafb;
  color: #111827;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #4b5563; /* Soft dark grey text */
}

.hero a {
  display: inline-block;
  margin-top: 20px;
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero a:hover {
  background: #1d4ed8;
  transform: scale(1.05);
}

/* Features Section */
.features {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.features h3 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #111827;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.feature-icon {
  background: #2563eb;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-text {
  font-size: 1.2rem;
  color: #374151; /* darker neutral text */
  font-weight: 500;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2563eb;
  font-weight: 500;
}

/* Preview Section */
.preview {
  background: #f3f4f6; /* Light gray background */
  padding: 60px 20px;
  text-align: center;
}

.preview h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.preview img {
  max-width: 90%; /* <-- takes up almost full width */
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* slightly stronger shadow */
}


/* Footer */
footer {
  background: #e5e7eb;
  color: #6b7280;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
