/* ═══════════════════════════════
   COURSE FOOTER
   Desktop: logo left | nav cols | location+socials right
   Mobile: centered stacked
═══════════════════════════════ */
.course-footer {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 48px 20px 32px;
}

.course-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  margin-bottom: 40px;
}

/* Logo */
.course-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.footerlogophoto {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}

/* Nav columns */
.course-footer-nav-cols {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.course-footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.course-footer-nav-col a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  line-height: 1.8;
}

.course-footer-nav-col a:hover { color: #ffffff; }

/* Location + Socials */
.course-footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.course-footer-location {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.course-footer-socials {
  display: flex;
  gap: 12px;
}

.course-footer-social {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.2s;
}

.course-footer-social:hover { border-color: #ffffff; }
.course-footer-social svg { width: 20px; height: 20px; fill: #ffffff; }

/* Copyright */
.course-footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── TABLET ── */
@media (min-width: 768px) {
  .course-footer { padding: 60px 40px 32px; }
  .course-footer-nav-cols { flex-direction: row; gap: 48px; align-items: flex-start; }
  .course-footer-nav-col { align-items: flex-start; }
}

/* ── Mid ── */
@media (min-width: 769px) and (max-width: 1199px) {
  .course-footer { padding: 60px 60px 32px; }
}

/* ── 800–900 ── */
@media (min-width: 800px) and (max-width: 900px) {
  .course-footer { padding: 56px 48px 32px; }
}

/* ── 1000–1199 (iPad landscape) ── */
@media (min-width: 1000px) and (max-width: 1199px) {
  .course-footer { padding: 60px 72px 32px; }
}

/* ── DESKTOP ── */
@media (min-width: 1200px) {
  .course-footer { padding: 64px 60px 32px; }
  .course-footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    gap: 60px;
  }
  .course-footer-logo { align-items: flex-start; }
  .course-footer-right { align-items: flex-start; }
  .course-footer-nav-cols { flex-direction: row; gap: 64px; }
  .course-footer-copy { text-align: left; }
}

/* ── Small desktop ── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .course-footer { padding: 56px 48px 28px; }
}
