/* Grundlayout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a:link, a:visited {
 color: #003366;
}
a:hover, a:active {
 color: #DE8703;
}

body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #222;
  padding-top: 60px;
  font-family: 'Open Sans', sans-serif !important;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* nav container */
.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;   /* logo left, right-side content right */
  max-width:1200px;
  margin:0 auto;
  padding:0.5em 1em;
}

/* right side (menu + flag) */
.nav-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{ height:40px; margin-right:1em; }

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 1em;
  position: relative;
}

.flag img {
  height: 16px;
  margin-left: 1em;
  cursor: pointer;
}

nav a {
  text-decoration: none;
  color: #003366;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #DE8703;
}

/* Submenu styling */
nav ul li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  list-style: none;
  padding: 0.5em 0;
  margin: 0;
  flex-direction: column;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav ul li:hover ul.submenu {
  display: flex;
}

nav ul li ul.submenu li {
  margin: 0;
}

nav ul li ul.submenu a {
  padding: 0.5em 1em;
  white-space: nowrap;
  font-weight: normal;
}

nav ul li ul.submenu a:hover {
  color: #007acc;
}

/* Burger-Menu */


/* burger icon hidden on desktop */
#menu-toggle{ display:none; }
.menu-icon{
  display:none;
  flex-direction:column;
  cursor:pointer;
  padding:.75em;
}


.menu-icon span{
  height:3px; width:24px; background:#222; margin:4px 0; transition:.3s;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background: #222;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive */



@media (max-width: 768px){
  /* show burger */
  .menu-icon{ display:flex; }
  /* hide the right side by default on mobile */
  .nav-right{
    display:none;
    position:absolute;
    top:100%;           /* directly under the fixed nav bar */
    right:0;
    left:0;
    background:#fff;
    box-shadow:0 2px 4px rgba(0,0,0,.1);
    padding:.5em 1em;
  }
  /* when checked, show it */
  #menu-toggle:checked ~ .nav-right{
    display:flex;
    flex-direction:column;
    align-items:flex-start;  /* left-align items in dropdown */
    gap:0;
  }

  /* stack menu items vertically in dropdown */
  nav ul.menu{
    flex-direction:column;
    width:100%;
    padding:0;
    margin:0 0 .5em 0;
  }
  nav li{ margin:.5em 0; }

  /* submenu in dropdown: show as inline list (tap friendly) */
  nav ul li ul.submenu{
    position:static;
    display:none;
    box-shadow:none;
    padding:.25em 0 0 1em;
  }
  /* simple tap-to-open: expand submenu when parent item is focused/active */
  nav ul li:focus-within > ul.submenu{
    display:block;
  }

  /* flag sits under the menu items inside the dropdown */
  .flag img{ height:20px; }
}





/* Header */
header {
  text-align: center;
  padding: 40px 20px 40px;
  background : #cedbf4;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

/* Sections */
section {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
}

section img {
  max-width: 100%;
  height: auto;
  margin-top: 1em;
  border-radius: 4px;
}

/* Galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  width: calc(33% - 10px);
  height: auto;
}

.image-button {
  background-color: #efb63f;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.image-button:hover {
  background-color: #d9a732;
}

.image-button img {
  height: 24px;
  width: 24px;
}

.image-button span {
  font-family: sans-serif;
  font-size: 16px;
  color: #000;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #222;
  color: #fff;
}

/* ===== Accordion ===== */
.accordion {
  margin: 24px 0 12px;
  display: grid;
  gap: 10px;
}

/* Reset default details triangle */
.accordion details {
  border: 1px solid #dbe5ff;               /* light AHK-ish blue tint */
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  overflow: hidden;
}

.accordion summary {
  list-style: none;                         /* remove default marker */
  cursor: pointer;
  padding: 16px 48px 16px 20px;
  /* font-weight: 700;*/
  color: #0a3871;                           /* deep blue close to #003366 but warmer */
  display: flex;
  align-items: center;
  position: relative;
}

.accordion summary::-webkit-details-marker { display: none; }

/* Chevron */
.accordion summary::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 12px; height: 12px;
  border-right: 2px solid #7a8aa6;
  border-bottom: 2px solid #7a8aa6;
  transform: rotate(45deg);                 /* looks like › */
  transition: transform .25s ease;
}

/* Open state rotates to ˅ */
.accordion details[open] > summary::after {
  transform: rotate(135deg);                /* looks like ˄ */
}

.accordion-panel {
  padding: 22px 30px 28px 30px;
  color: #3a3a3a;
  line-height: 1.55;
  border-top: 1px solid #eef3ff;
  background: #f9fbff;
}

/* Hover/focus states for better a11y */
.accordion summary:hover { color: #DE8703; }
.accordion summary:focus {
  outline: 3px solid #cfe0ff;
  outline-offset: 2px;
}

/* Mobile tweaks (optional—works fine without) */
@media (max-width: 600px) {
  .accordion summary { padding: 14px 44px 14px 16px; }
  .accordion-panel { padding: 10px 16px 14px 16px; }
}
.h1 {
}
