/*
Theme Name:   Twenty Twenty-Five Child
Theme URI:    https://example.com/
Description:  CC Child Theme
Author:       Mimmi Svensson
Author URI:   https://example.com/
Template:     twentytwentyfive
Version:      1.0
*/

/* Här kan du lägga din egen CSS */

.mega-menu {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
}

.mega-menu.active {
  display: block;
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mega-menu-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #b30000;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 4rem;
}

.menu-column {
  display: flex;
  flex-direction: column;
}

.menu-title {
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #0074b8;
  padding-bottom: 0.25rem;
  color: #004477;
  text-transform: uppercase;
}

.mega-category {
  color: #004477;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list a {
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  color: #333;
  font-size: 0.9rem;
}

.menu-list a:hover {
  color: #0074b8;
  text-decoration: underline;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #a12a1c;
}

ul {
  list-style: none;
}