/* base.css */

/* Basic Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #36454F, #000000); /* Charcoal gray to black */
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, #ffce58 0%, #f5a623 100%);
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Section and Content Styles */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #444;
}

.content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Contact Form Styles */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form label {
  font-weight: 500;
  color: #ffce58;
}

form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background-color: #f4b400;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

/* Button Alignment */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffce58 0%, #f5a623 100%);
  color: #222;
  padding: 0.8rem 1.5rem;
  margin: 2rem auto 0;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-align: center;
}

.btn:hover {
  opacity: 0.85;
}

/* Footer Styles */
footer {
  background-color: #fff;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}
