/* Base styles for ResumeProKit */

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f7f9;
  color: #333;
}

header {
  background: #4a63e7;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav li {
  position: relative;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

/* Dropdown menu */
nav li:hover > ul {
  display: block;
}

nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #4a63e7;
  padding: 0.5rem 0;
  min-width: 180px;
  border-radius: 4px;
}

nav li ul li {
  width: 100%;
}

nav li ul a {
  display: block;
  padding: 0.5rem 1rem;
}

section.hero {
  background: linear-gradient(135deg, #4a63e7, #6f86d6);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

section.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section.hero p {
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 700px;
}

.cta-button {
  display: inline-block;
  background: #ffb347;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 2rem;
  font-weight: bold;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #ffcf70;
}

section.content {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

section.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.package {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  width: 280px;
  text-align: center;
}

.package h3 {
  margin-top: 0;
}

.package .price {
  font-size: 1.6rem;
  color: #4a63e7;
  margin: 1rem 0;
}

.package button {
  background: #4a63e7;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

/* Styles for secondary call‑to‑action buttons and package notes */
.package-note {
  font-size: 0.85rem;
  margin: 0.75rem 0 0.25rem;
  color: #555;
}

.cta-button.secondary {
  background: #fff;
  color: #4a63e7;
  border: 1px solid #4a63e7;
}

.cta-button.secondary:hover {
  background: #f0f2fc;
}

.package button:hover {
  background: #3b52c8;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Image gallery for homepage */
.images {
  /* This class was previously used for large stock images. It is left
     empty here because we’ve replaced the image gallery with a features
     section. Keeping the class defined prevents unused selectors from
     throwing errors if referenced elsewhere. */
  display: none;
}

.images img {
  display: none;
}

/* Features section on the home page */
.features {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.feature {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  flex: 1 1 260px;
  max-width: 280px;
  text-align: center;
}

.feature i {
  font-size: 2rem;
  color: #4a63e7;
  margin-bottom: 0.5rem;
}

.feature h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Templates page styling */
.template {
  margin-bottom: 2rem;
}

.template h3 {
  margin-top: 0;
  color: #4a63e7;
}

.template pre {
  white-space: pre-wrap;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  font-family: inherit;
  overflow-x: auto;
}

label {
  font-weight: bold;
}

input, textarea, select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="submit"] {
  width: fit-content;
  align-self: flex-start;
  background: #4a63e7;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background: #3b52c8;
}