/* Global styling */
:root {
  --header-font: 'Roboto Black', cursive;
  --paragraph-font: 'Monsterrat', cursive;
  --main-color: #282c34;
  --secondary-color: #ffcc00;
  --accent-color: rgba(255, 255, 255, 0.2);
  --background-color: #f4e3c1;
  --container-background-color: #f2f2f2;
  --border-color: #ccc;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--paragraph-font);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font);
}

/* ====================== NAVIGATION PAGE ====================== */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  background-color: var(--main-color);
}

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

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
}

nav ul li a:hover {
  background: var(--accent-color);
}

nav ul li a.active {
  background: var(--secondary-color);
  color: #000;
  border-radius: 5px;
}

/* ====================== CONTACT PAGE ====================== */
/* Style inputs with type="text", select elements and textareas */
input[type='text'],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

/* Style the submit button with a specific background color etc */
input[type='submit'],
button {
  background-color: var(--secondary-color);
  color: #000;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type='submit']:hover {
  opacity: 0.7;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: var(--container-background-color);
  padding: 20px;
}

/* ====================== WELCOME PAGE ====================== */
.welcome-container {
  text-align: center;
  padding: 50px;
  max-width: 800px;
  margin: auto;
}

.welcome-container h1 {
  font-size: 2.8rem;
  color: #333;
}

.welcome-container p {
  font-size: 1.2rem;
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

.features {
  background-color: #f8f9fa;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.features h2 {
  font-size: 1.8rem;
  color: #222;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  font-size: 1.2rem;
  color: #444;
  margin: 10px 0;
}
