/*
Theme Name: Nyffenegger Child
Theme URI: https://nyffenegger.ch
Description: Nyffenegger Child Theme basierend auf Kadence
Author: NAG IT
Template: kadence
Version: 1.0.0
Text Domain: nyffenegger-child
*/


/* ===== Produkt-Cards Hover-Animation ===== */

/* Schatten auf allen Cards */
.wp-block-group[style*="border-radius:8px"] {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Card hebt sich leicht beim Hover */
.wp-block-group[style*="border-radius:8px"]:hover {
  box-shadow: 0 8px 32px rgba(0, 57, 166, 0.15);
  transform: translateY(-4px);
}

/* Bild-Container: overflow hidden für Zoom-Effekt */
.wp-block-group[style*="border-radius:8px"] .wp-block-image {
  overflow: hidden;
}

/* Bild zoomt beim Hover sanft rein */
.wp-block-group[style*="border-radius:8px"]:hover .wp-block-image img {
  transform: scale(1.06);
  transition: transform 0.5s ease;
}

/* Transition auch im Normalzustand damit es smooth zurückgeht */
.wp-block-group[style*="border-radius:8px"] .wp-block-image img {
  transition: transform 0.5s ease;
}

/* Fix: Ensure logo has explicit height so Kadence sticky JS reads correct offsetHeight */
.site-branding .custom-logo {
    height: 40px;
    width: auto;
}

/* Mega Menu Styling */
.sub-menu {
    background-color: #f2f2f2 !important;
    border-top: 3px solid #0039a6 !important;
}

.sub-menu a {
    color: #000000 !important;
}

.sub-menu a:hover {
    color: #0039a6 !important;
}

/* Volle Breite - über gesamte Viewport-Breite */
.kadence-menu-mega-enabled > .sub-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 30px 40px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
