/*
Theme Name: Webworq ApS Child
Theme URI: https://webworq.dk
Description: Child theme for Webworq ApS
Author: Sebastian Thiemann
Author URI: https://webworq.dk
Template: Divi
Version: 1.0
*/

/* Import parent theme's CSS */
@import url("../divi/style.css");


/* 00. General Stuff */

/* 
-------------------------------------------------------
01. Webworq Custom Footer (Mobile First)
-------------------------------------------------------
Tilpasset mobilvenligt layout som standard, skalerer op til desktop
*/

.custom-footer {
  background-color: #02000a;
  text-align: center;
  padding: 20px 16px; /* God mobil-padding */
}

.custom-footer-divider {
  width: 60px; /* Kortere streg til mobil */
  height: 1px;
  background-color: #9b9b9b;
  margin: 0 auto 15px auto;
}

.custom-footer-content {
  font-family: 'Source Code Pro', monospace;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.custom-footer-content a {
  color: #ffffff;
  text-decoration: none;
  padding: 0 2px; /* Let padding mellem links */
}

.custom-footer-content a:hover {
  text-decoration: underline;
}

/* ---------------------------------------
   Tablet og desktop forbedringer
---------------------------------------- */
@media (min-width: 768px) {
  .custom-footer {
    padding: 25px 24px;
  }

  .custom-footer-divider {
    width: 80px;
  }

  .custom-footer-content {
    font-size: 16px;
    max-width: none;
  }
}

