/*
* LOGO
*/
a.navbar-brand.fw-bold.logo {
  color: inherit;
}

a.navbar-brand.fw-bold.logo::first-letter {
  color: #f28c38;
}

a.navbar-brand.fw-bold.logo:hover {
  color: #e57725;
}

a.navbar-brand.fw-bold.logo:hover::first-letter {
  color: #f28c38;
}



/*
* *********  FORSIDEN **********
*/
/* ABOUT ME */
.about-section {
  background: #f8f9fa;
}

/* INFO CARD */
.about-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

/* SKILL CARD */
.skill-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
}

.skill-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 10px;
  padding: 5px 12px;

  font-size: 12px;
  font-weight: 500;

  border-radius: 20px;
  border: 1px solid transparent;
}

/* EKSPERT */
.skill-level-badge.ekspert {
  background: rgba(242, 140, 56, 0.15);
  color: #f28c38;
  border-color: rgba(242, 140, 56, 0.3);
}

/* ERFAREN */
.skill-level-badge.erfaren {
  background: #e9ecef;
  color: #333;
}

/* ØVET */
.skill-level-badge.ovet {
  background: #f3f4f6;
  color: #666;
}

/* IKON */
.skill-level-badge i {
  font-size: 12px;
}
.text-warning {
  color: #f28c38 !important;
}

/* Pagination ved erhvervserfaring på forsiden */
.cv-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cv-btn {
  background: transparent;
  color: #ff6b00;
  border: 1px solid #ff6b00;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cv-btn:hover {
  background: #ff6b00;
  color: #fff;
}

.cv-btn:disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

#page-info {
  font-size: 14px;
  color: #666;
  min-width: 50px;
  text-align: center;
}

/* MIT CV */
.cv-section {
  background: #f3f4f6;
}

/* DATO FARVE */
.cv-date {
  color: #f28c38;
  font-size: 14px;
}

/* TIMELINE */
.timeline-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* DOT */
.timeline-dot {
  width: 14px;
  height: 14px;
  background: #f28c38;
  border-radius: 50%;
  margin-bottom: 6px;
}

/* LINE */
.timeline-line {
  width: 2px;
  flex-grow: 1;
  background: #f28c38;
  min-height: 120px;
}
@media (max-width: 991px) {
  .timeline-col {
    display: none;
  }
}
/* MIT PORTFOLIO */
.portfolio-section {
  background: #f8f9fa;
}

/* CARD */
.portfolio-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* TAG */
.portfolio-tag {
  color: #f28c38;
  font-size: 12px;
  letter-spacing: 1px;
}

/* BUTTON THEME */
.btn-theme {
  background: #f28c38;
  color: #fff;
  border: none;
}

.btn-theme:hover {
  background: #e57725;
  color: #fff;
}

.btn-outline-theme {
  border: 1px solid #f28c38;
  color: #f28c38;
  background: transparent;
}

.btn-outline-theme:hover {
  background: #f28c38;
  color: #fff;
}

/* Portfolio */
.portfolio-btn {
  text-decoration: none !important;
}

/* KONTAKT */
.contact-section {
  background: #fff;
}

/* FORM */
.contact-form .form-control {
  border-radius: 8px;
  padding: 10px 12px;
}

/* FOCUS */
.contact-form .form-control:focus {
  border-color: #f28c38;
  box-shadow: 0 0 0 0.2rem rgba(242, 140, 56, 0.2);
}

/* BUTTON (genbrug fra før hvis du har den) */
.btn-theme {
  background: #f28c38;
  color: #fff;
  border: none;
}

.btn-theme:hover {
  background: #e57725;
  color: #fff;
}

/*
* Portfolio template side
*/
.portfolio-img {
  height: 350px;
  object-fit: cover;
}

.page-numbers {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;

  background: #f28c38;
  color: #fff;

  border-radius: 4px;
  text-decoration: none;
}

/* hover */
.page-numbers:hover {
  background: #e57725;
  color: #fff;
}

/* aktiv */
.page-numbers.current {
  background: #e57725;
}

/* prev/next hvis du vil */
.page-numbers.prev,
.page-numbers.next {
  font-weight: bold;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #1f1f1f;
  color: #ccc;
  padding: 30px 0 10px;
}

.site-footer h5,
.site-footer h6 {
  color: #fff;
  margin-bottom: 15px;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #f28c38;
}

/* Social icons */
.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.2s;
}

.footer-social a:hover {
  color: #f28c38;
}

/* Divider */
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

/* Bottom text */
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #888;
}
.footer-text {
  color: #ccc !important;
}

/* Wordpress editor */
.entry-content a {
  color: #f28c38 !important; /* din farve */
  text-decoration: none;
  font-weight: 500;
}

.entry-content a:hover {
  color: #e57725 !important;
  text-decoration: none !important;
}

/* 404 */
.btn-404 {
  background-color: #f28c38;
  border-color: #f28c38;
  color: #fff;
}

.btn-404:hover {
  background-color: #e57725;
  border-color: #e57725;
  color: #fff;
}
