﻿/* ==================================
   Scrollbar immer anzeigen
===================================== */

html {
    overflow-y: scroll;
}


/* ==================================
   CONTAINER ZUFALL-Featured Links
===================================== */

body { font-family: sans-serif; padding: 5px; background-color: #f4f4f9; }
     .link-container { 
     margin-bottom: 5px; 
     padding: 7px; 
     background: black; 
     border-radius: 6px; 
     box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
     .random-link {
	font-weight: normal;
	color: #3366FF;
	text-decoration: underline;
	font-size: 0.7em;
}
     .random-link:hover { 
     color: #4f548f; 
     text-decoration: underline; }
     .description { 
     margin-top: 0px; 
     color: #999; 
     font-size: 0.65em; }
     h1 { 
     color: #333; }
     button {
	padding: 10px 25px;
	cursor: pointer;
	background: #556BCA;
	color: withe;
	border: none;
	border-radius: 5px;
}
     button:hover { 
     background: #218838; }



/* =========================
   CONTAINER ZUFALLS-ZITATE
========================= */

body { font-family: sans-serif; padding: -100px; }
        #text-container {
	font-size: 0.75em;
	font-style: italic;
	border: 0px solid #ccc;
	padding: -100px;
	margin-top: 0px;
	background-color: transparent;
	text-align: right;
	color: #999999;
    line-height: 1.4;

}


/* =========================
   GLOBAL
========================= */
body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: radial-gradient(circle at 50% 0%, #1a2233 0%, #0b0f18 65%), repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 6px);
	color: #808080;
	scroll-behavior: smooth;
}

.wrapper {
    max-width:980px;
    margin:10px auto;
    background:#15161e;
    border:1px solid #1c2435;
    box-shadow:0 0 40px rgba(0,0,0,0.9);
}

/* =========================
   HEADER TOP-BAR METALL PREMIUM
========================= */
.header-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    height:70px;
    background: linear-gradient(to bottom, #000000 0%, #17243e 100%);
    position: relative;
    box-shadow: inset 0 2px 3px rgba(255,255,255,0.25);
}

.header-top::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0));
    background-size: 200% 100%;
    animation: shine 5s infinite linear;
}

.header-top::after {
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:1px;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0));
}

.header-top .logo img {
    height:50px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.6);
    transition: transform 0.1s, box-shadow 0.1s;
}
.header-top .logo img:hover { 
    transform: scale(1.08) rotate(0deg); 
    box-shadow: 3px 3px 15px rgba(0,0,0,0.7);
}

.header-top .search-container {
    display:flex;
    align-items:center;
}

.header-top .search-container img {
    height:50px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.5);
    transition: transform 0.1s, box-shadow 0.1s;
}
.header-top .search-container img:hover { 
    transform: scale(1.08) rotate(0deg); 
    box-shadow: 3px 3px 15px rgba(0,0,0,0.7);
}

.header-top .search-container input[type=text] {
    height:28px;
    padding:0 8px;
    border-radius:4px;
    border:1px solid #555;
    margin-left:10px;
    min-width:150px;
    background:#222;
    color:#eee;
}

/* =========================
   NAVBAR (2. Abschnitt)
========================= */
.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    padding:5px 20px;
    background: linear-gradient(#4167d6,#000000);
    height:32px;
    border-top:1px solid #6f8fff;
    border-bottom:1px solid #000;
    box-shadow: inset 0 1px rgba(255,255,255,0.2);
}

.navbar .menu-links {
    display:flex;
    gap:20px;
}

.navbar a {
    color:white;
    text-decoration:none;
    font-size:13px;
    transition: color 0.2s, text-shadow 0.2s;
}

.navbar a:hover {
    color:#aaddff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.navbar .date {
    font-size:12px;
    color:#cfd8ff;
    font-style:italic;
}

/* =========================
   HEADER CONTENT-BAR (3. Abschnitt)
========================= */
.header-content {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0px;
    background: linear-gradient(to bottom, #1c2435 0%, #141b2a 100%);
    min-height:120px;
    position: relative;
    
}

.header-content::before {
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:1px;
    background: linear-gradient(to right, rgba(255,255,255,0.35), rgba(255,255,255,0));
    background-size: 200% 100%;
    animation: shine 0s infinite linear;
}

.header-content::after {
    content:"";
    position:absolute;
    bottom:0; left:0;
    width:100%; height:1px;
    background: rgba(255,255,255,0.15);
}

.header-content img {
    height:100px;
    max-width:100%;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.6);
    transition: transform 0.1s, box-shadow 0.1s;
}

.header-content img:hover {
    transform: scale(1.08) rotate(0 deg);
    box-shadow: 4px 4px 18px rgba(0,0,0,0.7);
}

.header-content .banner-text {
    color:#ddd;
    font-size:24px;
    max-width:600px;
    line-height:1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* =========================
   QUOTE BAR
========================= */
.quote {
	background: url('../images/indemedia_old/sub_banner.jpg') repeat-x;
    /*background: linear-gradient(#0f1626,#0c1220);*/
	text-align: center;
	padding: 16px;
	font-style: italic;
	color: #aab6ff;
	border-bottom: 0px solid #1f2b44;
}

/* =========================
   MAIN
========================= */
.main {
    display:flex;
    flex-wrap:wrap;
    padding-left:10px;
}

.sidebar {

    width:180px;
    height:350px;
    background:#0f1626;
    background_old:#0f1626;
    border:1px solid #1f2b44;
    padding-bottom:1px;
    padding-left:10px;
    padding-right:10px;
    flex-shrink:0;
}

.sidebar h3 {
	font-size: 12px;
	font-style: normal;
	color: #CCCCCC;
	border-bottom: 2px solid #2b3b60;
	padding-bottom: 8px;
	text-align: center;
}


.sidebar a {
	display: block;
	font-size: 12px;
	color: #556bca;
	text-decoration: none;
	margin: 6px 0;
	position: relative;
	transition: color 0.3s, left 0.3s;
}

.sidebar a:hover {
    color:#839bc6;
    left:5px;
}

.content {
    flex:1;
    margin-left:20px;
    background:#15161e;
    border:0px solid #1f2b54;
    padding:20px;
    box-sizing:border-box;
    font-size:11px;
    line-height:1.5;
}

.big-logo img {
    max-width:80%;
    height:80%;
    box-shadow: 0px 0px 0px rgba(0,0,0,0.7);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.big-logo img:hover {
    transform: scale(1.02) rotate(0.0deg);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

/* =========================
   FOOTER
========================= */
.footer {
    text-align:center;
    padding:10px;
    background:#0e1524;
    border-top:1px solid #1f2b44;
    font-size:11px;
    color:#777;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 700px) {

    .header-top, .navbar, .header-content {
        flex-direction: column;
        align-items: flex-start;
        height:auto;
    }

    .header-top .search-container, .header-content {
        justify-content:flex-start;
        margin-top:10px;
    }

    .navbar {
        justify-content:flex-start;
        gap:10px;
    }

    .navbar .date {
        margin-top:5px;
    }

    .main {
        flex-direction: column;
    }

    .sidebar {
        width:100%;
        margin-bottom:20px;
    }

    .content {
        margin-left:0;
    }

    .header-content .banner-text {
        font-size:20px;
        margin-top:10px;   
    }
    
    
}
/* =========================
   SHINE ANIMATION
========================= */
@keyframes shine {
  0% { background-position: -1000px 0px; }
  100% { background-position: 1000px 0px;}
}

.auto-style1 {
	font-size: xx-large;
}

/* =========================
   KONTAKTSEITE
========================= */

.contact-grid {
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.contact-info-box,
.contact-map-box {
    flex:1;
    min-width:260px;
    background:#0f1626;
    border:1px solid #1f2b44;
    padding:20px;
}

.contact-button {
    display:inline-block;
    margin-top:10px;
    padding:8px 14px;
    background:#2b3b60;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:12px;
}

.contact-button:hover {
    background:#3d5385;
}

.map-placeholder {
    background:#111827;
    padding:20px;
    text-align:center;
    border:1px solid #2b3b60;
}

.map-placeholder button {
    margin-top:10px;
    background:#4167d6;
    color:#fff;
    padding:6px 14px;
    border:none;
    border-radius:4px;
    cursor:pointer;
}

.map-placeholder button:hover {
    background:#5a7ff0;
}

.map-note {
    font-size:11px;
    color:#aaa;
    margin-top:8px;
}

.contact-form {
    margin-top:20px;
    display:flex;
    flex-direction:column;
}

.contact-form label {
    margin-top:15px;
    font-size:12px;
    color:#ccc;
}

.contact-form input,
.contact-form textarea {
    background:#0f1626;
    border:1px solid #2b3b60;
    color:#fff;
    padding:8px;
    font-size:12px;
}

.contact-form textarea {
    min-height:120px;
}

.privacy-check {
    margin-top:15px;
    font-size:11px;
    display:flex;
    gap:8px;
    align-items:flex-start;
}

.contact-submit {
    margin-top:20px;
    padding:8px 16px;
    background:#4167d6;
    border:none;
    color:white;
    cursor:pointer;
    border-radius:4px;
    font-size:12px;
}

.contact-submit:hover {
    background:#5a7ff0;
}


