/*##############################
  WANDERKARTE-SIMPLE-BASIS.css
################################*/

.container-map { 
    grid-template-columns: 1fr 5fr 1fr; 
    gap: 20px; 
    max-width: 1400px; /* Diese Breite begrenzt jetzt auch das Hero-Bild */
    margin: 20px auto; 
    padding: 0 20px; 
}
div.HikingMap { height: 80dvh;margin-right:15px; width:100%; margin-top: 1em;}
div.CopyRight {font-size:0.75em; !important;}
	.CopyRight.unsichtbar {display:none;}
div.SpacerSehrKlein{height:1.5em;clear:both}


/*-----------------------------*/        			
/* ARTIKEL INHALT*/
/*-----------------------------*/
.main-content-map {
	grid-area: content; 
	background-color: #fff; 
	padding: 10px 10px 10px 10px; 
	border-radius: 8px; 
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	/*min-height: 200vh; */
	max-width: 1200px; 
	margin-left: auto; 
	margin-right: auto;
}



/*---------------Eigene----------------------*/
.emo-gross {font-size:1.2em; margin-right:0.5rem}   
       

a:hover {
  color: #000;
  background: #f3f3f3;
}
/*##############################
   MAIN.css
################################*/

/* Vaiablen, die für die gesamte Webseite gelten
* header
* Hamburger Menue
*/

 :root {
    --color-bg: #f9faf9;
    --color-bg-card: #fff;
    --color-text: #222;
    --color-text-light: #666;
   --color-accent: #005128;
    --color-accent-light: #4b8e6c;
    --shadow: 0 4px 22px rgba(0,0,0,0.08);
    --radius: 12px;
    --max-width: 1200px;
    --font: system-ui, "Segoe UI", Roboto, sans-serif;
  }


body {
    margin: 0; padding: 0; font-family: var(--font); background: var(--color-bg);
    color: var(--color-text); line-height: 1.6; font-size:1em;
}

h1, h2, h3, h4 { color: var(--color-accent); }
/* ------------------------------ */
/* HEADER & NAVIGATION            */
/* ------------------------------ */
header { background: var(--color-bg-card); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 50000; }
.nav { max-width: var(--max-width); margin: 0 auto; padding: 0.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-logo h1 { margin: 0; font-size: 1.2rem; color: var(--color-accent); important!}
.nav-menu { display: flex; gap: 2rem; }
.nav-menu a { color: var(--color-text); text-decoration: none; font-weight: 500; transition: .2s; }
.nav-menu a:hover { color: var(--color-accent); }
#nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle-label span { height: 3px; background: var(--color-text); width: 100%; }
#nav-toggle-checkbox:checked ~ .nav-menu { display: flex; }
/*############################
* 	CTA-BUTTON_INFO-BOX.css
##############################*/


/* --- CSS für die Informationsbox --- */
        .info-box {
             /*--bg-color: #f0f8ff; Hintergrundfarbe (hellblau) */
            --border-color: #007bff; /* Rahmenfarbe (blau) */
            --text-color: #333; /* Textfarbe */
            --icon-color: #007bff; /* Icon-Farbe */

            padding: 15px 20px;
            margin: 20px 0; /* Abstand oben und unten */
            border: 2px solid var(--border-color);
            border-radius: 8px; /* Abgerundete Ecken */
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: sans-serif;
            display: flex; /* Für Icon und Text nebeneinander */
            align-items: flex-start;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
			
        }
.info-box.unsichtbar{display:none;}

        .info-box .icon {
            font-size: 2rem;
            color: var(--icon-color);
            margin-right: 15px;
            /* Zentriert das Icon visuell */
            line-height: 1;
            padding-top: 3px;
        }

        .info-box .content {
            flex-grow: 1;
        }

        .info-box p {
            margin: 0 0 10px 0; /* Abstand zwischen Absätzen */
            line-height: 1.4;
        }

        .info-box p:last-child {
            margin-bottom: 0; /* Kein Abstand nach dem letzten Absatz */
        }

        .info-box a {
            color: var(--border-color);
            text-decoration: underline;
        }

        /* --- Optional: Eine Warn-Variante (gelb) --- */
        .info-box.warning {
           /* --bg-color: #f4c63a52;*/
            --border-color: #ff8707;
            --icon-color: #ffc107;
	
			font-size:0.7em;
			text-align:left;
        }

        .info-box.warning a {
            color: blue;
            text-decoration: underline;
        }

        
         /* --- CSS für die Schaltfläche --- */
        .cookie-button {
            background-color: var(--button-bg);
            color: var(--button-text);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .cookie-button:hover {
            background-color: #0056b3; /* Dunklerer Blauton beim Hover */
        }

/* ------------------------------ */
/* CTA Sektion Buttons            */
/* ------------------------------ */
.cta-section {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--color-bg); /* Hintergrundfarbe leicht abweichend */
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(59, 118, 91, 0.2);
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: var(--shadow);
}

.cta-primary { /* Download GPX */
    background-color: var(--color-accent);
    color: white;
}

.cta-primary:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
}

.cta-secondary { /* Weitere Suchen */
    background-color: var(--color-bg-card);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.cta-secondary:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}


/*############################
* 	CTA-BUTTON_INFO-BOX.css
*           ENDE
##############################*//*##############################
   WANDERKARTE-SIMPLE-MEDIA.css
################################*/


@media (max-width: 900px) {
    .nav-toggle-label { display: flex; }
    .nav-menu {
        display: none; position: absolute; top: 70px; right: 2rem;
        flex-direction: column; background: white; padding: 1rem 2rem;
        box-shadow: var(--shadow); border-radius: var(--radius); min-width: 200px;
    }
}

 @media only screen and (max-width:600px) {
	.leaflet-control-layers-expanded {font-size:1.5em}
	.leaflet-control-layers-selector {width:50px;height:50px;}
 }
 
 @media only screen and  (max-width:799px){

	
}/* ------------------------------ */
/* FOOTER.css                        */
/* ------------------------------ */
footer {
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

footer a {
    color: #dfffe9;
    text-decoration: none;
    transition: .2s;
}

footer a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
}/*##############################
   NORMALIZE.css
################################*/


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
