/* Contact Form Styling */
.contact-form {
  background: var(--background);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  padding: 2rem;
  max-width: 500px;
  margin: 2rem auto;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--primary);
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-form button,
.contact-form input[type="submit"] {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  background-color: var(--accent);
}
/* Reset and base */
@font-face {
  font-family: 'Mollie';
  src: url('fonts/Mollie.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* To use Mollie in canvas, set font in JS: ctx.font = '24px Mollie, cursive'; */

@font-face {
  font-family: 'ITCFranklinGothic';
  src: url('fonts/ITCFranklinGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'LariesScript';
  src: url('fonts/LariesScript.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'LeagueSpartan';
  src: url('fonts/LeagueSpartan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Selima';
  src: url('fonts/Selima.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Canvas JS usage examples:
   ctx.font = '24px ITCFranklinGothic, sans-serif';
   ctx.font = '24px LariesScript, cursive';
   ctx.font = '24px LeagueSpartan, sans-serif';
   ctx.font = '24px Selima, cursive';
*/
body {
  --primary: #2E86AB;
  --secondary: #F6C85F;
  --accent: #6C3483;
  --background: #F4F4F4;
  --text: #222222;
  --success: #27AE60;
  --warning: #E67E22;
  --error: #C0392B;
  --brand-green: #23550a;
  --font-main: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  --font-accent: 'Montserrat', 'Segoe UI', 'Arial', sans-serif;
  border-bottom: 2px solid #2c3e50;
}

.logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,62,80,0.12);
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* Headings */
h1, h2, h3 {
  color: #2c3e50;
  margin-bottom: 0.5em;
}

/* Section spacing */
section {
  padding: 2rem;
  border-bottom: 1px solid #ddd;
}

.cover-image {
  display: block;
  margin: 2rem auto;
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(90deg, var(--background) 0%, var(--brand-green) 100%);
  border-radius: 2em;
  padding: 1em 2em;
  box-shadow: 0 4px 16px rgba(44,85,10,0.08);
}
button, input[type="submit"] {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* If these properties are meant for an element, add them to the correct selector, e.g.: */
/* Example for an image inside a button */
button img, input[type="submit"] img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s;
}

/* Badge strip styles */
.badge-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,85,10,0.10);
  transition: box-shadow 0.2s, transform 0.2s;
  margin: 0 0.2em;
  border: 2px solid var(--brand-green);
}
.badge-strip {
  display: flex;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(249,170,2,0.18);
  transform: scale(1.12);
  border-color: #f9aa02;
  margin-top: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.badge {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  width: 200px;
}

.badge img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

.badge p {
  font-size: 0.95rem;
  color: #2c3e50;
}

.site-footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: 1rem;
}