/*
Theme Name: Kiosko Child
Theme URI: https://ecotel.se/kiosko-child
Description: Child theme for Kiosko
Author: Ecotel
Author URI: https://ecotel.se/
Template: kiosko
Version: 1.0.0
Text Domain: kiosko-child
*/

/* Import parent theme styles */
@import url("../kiosko/style.css");

/* Add your custom styles below */

/* Footer Animation Styles */
.footer-section {
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-section:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

.footer-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-column {
  transition: transform 0.3s ease;
}

/* Add any other custom styles you need */

