/* Denmark Activities - style.css */
/* modified="2025-11-12:17:00+08:00" */

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

/* ------------------------------------------------------------------ */
/* HEADER & FOOTER                                                    */
/* ------------------------------------------------------------------ */
header, footer {
  background: #C1F5C1;
  color: #2e5033;               /* dark-green text for contrast */
  text-align: center;
  padding: 1em 0;
}

/* Container that centers everything */
header .container,
footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Site title */
header h1 {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
  color: #2e5033;
}

/* ------------------------------------------------------------------ */
/* NARROW BANNER IMAGE                                                */
/* ------------------------------------------------------------------ */
.header-banner {
  margin: 0.75rem 0;
}

.header-banner img {
  width: 100%;
  max-width: 800px;     /* change if you want a wider banner */
  height: auto;
  max-height: 100px;    /* keeps it narrow */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: block;
  margin: 0 auto;
}

/* ------------------------------------------------------------------ */
/* NAVIGATION                                                         */
/* ------------------------------------------------------------------ */
header nav {
  margin-top: 0.5rem;
}

header nav a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: #2e5033;
  font-weight: 600;
  font-size: 1.05rem;
}

header nav a:hover {
  text-decoration: underline;
  color: #1a3b1e;
}

/* ------------------------------------------------------------------ */
/* MAIN CONTENT                                                       */
/* ------------------------------------------------------------------ */
main {
  padding: 2em;
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h1, h2, h3 {
  color: #2e5033;
}

/* ------------------------------------------------------------------ */
/* INSTRUCTORS                                                            */
/* ------------------------------------------------------------------ */
.instructor {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;          /* space between image and text */
  margin-bottom: 2.5rem; /* space between instructors */
}

.instructor img {
  width: 250px;
  max-width: 35%;      /* won't exceed 35% of the container */
  height: auto;        /* drop the fixed 300px height */
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.instructor .bio {
  flex: 1;
}

/* ------------------------------------------------------------------ */
/* BUTTONS                                                            */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-block;
  background: #3b6d4b;
  color: white;
  padding: 0.8em 1.2em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn:hover {
  background: #4f825f;
}

/* ------------------------------------------------------------------ */
/* OPTIONAL: nicer radio/checkbox alignment in schedule                */
/* ------------------------------------------------------------------ */
.timeslot label {
  display: block;
  margin: 0.4rem 0;
  font-size: 0.95rem;
}