/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 28 2025 | 17:10:02 */
/* ================================
   TRIA – SAMLET STYLE SHEET
   ================================ */

/* --- Farver og generelle variabler --- */
:root {
  --tria-orange: #f48a00;
  --tria-purple: rgb(68,47,93);
  --text-dark: #222;
}

/* =================================
   1) HEADER & MENU
   ================================= */
.site-header .col-full {
  max-width: 100% !important;
  padding-left: 8px !important;
  padding-right: 24px !important;
}
.site-branding { margin: 0 !important; padding: 0 !important; }
.site-branding img { max-height: 90px; height: auto; width: auto; }

/* Global menu design + underline animation */
.main-navigation a {
  position: relative;
  color: var(--text-dark);
  text-decoration: none;
  transition: color .25s ease;
}
.main-navigation a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px; width: 0;
  background: var(--tria-orange);
  transition: width .25s ease;
}
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
  width: 100%;
}
.main-navigation ul ul a::after { display: none; }

/* Forside header over video */
.home .site-header {
  position: absolute !important;
  top: 0; left: 0; right: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: 100 !important;
}
.home .site-header a,
.home .main-navigation a,
.home .site-header-cart a { color: #fff !important; }
.home .main-navigation a:hover { color: var(--tria-orange) !important; }
.home .site-header-cart .cart-contents:before { color: #fff !important; }
.home .main-navigation ul ul {
  background: rgba(0,0,0,.65) !important; border: 0 !important;
}
.home .main-navigation ul ul a { color: #fff !important; }

/* Undersider: hvid header */
body:not(.home) .site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
body:not(.home) .site-header a { color: var(--text-dark); }

/* =================================
   2) HERO VIDEO (#front-hero)
   ================================= */
#front-hero {
  position: relative;
  width: 100vw !important;
  left: 50% !important; right: 50% !important;
  margin-left: -50vw !important; margin-right: -50vw !important;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}
#front-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
#front-hero::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.45); z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
}
.hero-content { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.hero-content h1 {
  color: #fff; font-weight: 800; line-height: 1.1; margin: 0;
  font-size: clamp(2rem,5vw,3.8rem);
  text-shadow: 0 3px 15px rgba(0,0,0,.6);
}
.hero-cta {
  display: inline-block;
  background: var(--tria-purple); color: #fff; font-weight: 700;
  text-decoration: none; padding: 14px 34px; border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.hero-cta:hover { background: rgb(55,36,78); transform: translateY(-2px); }

/* =================================
   3) MOBIL BURGERMENU
   ================================= */
.menu-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: none;
  z-index: 300;
}
.menu-toggle:hover { color: var(--tria-orange); }

.handheld-navigation {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.9);
  color: #fff;
  text-align: center;
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.handheld-navigation.toggled { display: flex; }

.handheld-navigation ul { list-style: none; padding: 0; margin: 0; }
.handheld-navigation li { margin: 20px 0; }
.handheld-navigation a {
  color: #fff; font-size: 1.5rem;
  text-decoration: none;
  transition: color .2s ease;
}
.handheld-navigation a:hover { color: var(--tria-orange); }

/* Luk-knap */
.luk-menu {
  position: absolute;
  top: 25px; right: 25px;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease;
}
.luk-menu:hover { transform: rotate(90deg); color: var(--tria-orange); }

/* =================================
   4) MOBIL HEADER (layout)
   ================================= */
@media (max-width:782px){
  .site-header .col-full {
    display:flex; align-items:center; justify-content:center;
    position:relative; padding:8px 0 !important;
  }
  .site-branding img {
    max-height:60px !important; height:auto !important;
    object-fit:contain !important; display:block !important;
  }
  .site-header { padding-bottom:6px; }
}
