@charset "UTF-8";
/* Modern CSS Document */

/* CSS VARIABLES */
:root {
  --primary-color: #000;
  --secondary-color: #797978;
  --accent-color: #fff;
  --text-color: #fff;
  --link-color: #ccc;
  --link-hover: #666;
  --font-family: "Lucida Grande", Arial, Verdana, sans-serif;
  --font-size-base: 1em;
  --line-height-base: 1.571em;
  --border-radius: 4px;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* GRUNDLEGENDES */

/* CSS RESET - Modern Approach */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--text-color);
	background-color: var(--primary-color);
	text-align: center;
	margin: 0;
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
/* MODERN TYPOGRAPHY */
img {
	max-width: 100%;
	height: auto;
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

ol, ul {
	list-style: none;
}

a {
	color: var(--link-color);
	text-decoration: underline;
	transition: var(--transition);
}

a:hover, a:focus {
	color: var(--link-hover);
	text-decoration: none;
}

a:focus {
	outline: none;
}

em {
	color: var(--primary-color);
	background: inherit;
	font-style: italic;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-family);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.5em;
}

h1 {
	font-size: 1.8em;
	font-weight: 400;
}

h2 {
	font-size: 1.25em;
	font-weight: 400;
	margin-bottom: 0.8em;
}

h3 {
	font-size: 1em;
	font-weight: 400;
}

p {
	font-family: var(--font-family);
	line-height: var(--line-height-base);
}
/* HEADER STARTSEITE */
.header {
	width: 400px;
	height: 470px;
	margin: 10px auto 0 auto;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header img {
	width: 400px;
	height: 470px;
	object-fit: cover;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}
/* NAVIGATION STARTSEITE */
.navigation {
	margin: 0 auto 10px auto;
	width: 600px;
	height: 100px;
	background: var(--primary-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.navigation-links {
	width: 300px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.navigation-rechts {
	width: 300px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.navigation-links li {
	width: 298px;
	height: 28px;
	background-image: url(images/navi-links-298x1.jpg);
	background-repeat: repeat-y;
	font-size: 16px;
	line-height: 26px;
	margin-right: 1px;
	margin-bottom: 2px;
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.navigation-rechts li {
	width: 298px;
	height: 28px;
	background-image: url(images/navi-rechts-298x1.jpg);
	background-repeat: repeat-y;
	font-size: 16px;
	line-height: 26px;
	margin-left: 1px;
	margin-bottom: 2px;
	text-align: left;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.navigation-links ul a {
	color: var(--secondary-color);
	text-decoration: none;
	margin: 2px;
	padding: 8px;
	text-align: right;
	transition: var(--transition);
}

.navigation-rechts li a {
	color: var(--secondary-color);
	text-decoration: none;
	margin: 2px;
	padding: 8px;
	text-align: left;
	transition: var(--transition);
}
* html ul#navigation a {
	width:auto;
}
.navigation-links li a:hover, 
.navigation-rechts li a:hover, 
.navigation-horizontal li a:hover {
	color: var(--accent-color);
	transform: translateY(-1px);
}
.navi-header {
	margin:10px auto 0 auto;/*original margin-top:25px*/
	width:880px;
	height:100px;
}

.header-subsites {
	width:397px;
	float:right;
}
.header-subsites img {
	height:100px;
	width:483;
}
.navigation-horizontal {
	width:483px;
	height:100px;
	display:block;
	clear:both;
	background-image:url(images/michael-naseband-quernavi-483x100.jpg);
	background-repeat:no-repeat;
	font-size:16px;
	float:left;
}
.navigation-horizontal ul {
	margin-left:-20px;
	padding-top:75px;
}
.navigation-horizontal li {
	display:inline;
	margin-left:10px;
}
/** html .navigation-horizontal li {
	margin-left:10px;
}
* + html .navigation-horizontal li {
	margin-left:10px;
}*/
.navigation-horizontal li a {
	display:inline;
	margin-left:9px;
	color:#797978;
	text-decoration:none;
}
/* CONTENT */
.content {
	margin:0 auto 0 auto;
	width:880px;
	height:524px;
	background-color:#000;
}

.content-full {
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
	background-color: var(--primary-color);
	min-height: auto;
	padding: 20px 0;
}

.contentkontakt {
	margin:0 auto 0 auto;
	width:880px;
	height:559px;
	background-color:#000;
}
.textseite {
	width:483px;
	float:left;
	background-color:#000;
}
.bildseite {
	width:397px;
	float:right;
}
.bildseite img {
	width:397px;
	height:511px;
	margin-top:13px;
	object-fit:cover;
	object-position:center;
}
.textlinks {
	width:260px;
	height:559px;
	float:left;
	overflow:auto;
	overflow-x:hidden;
}
.textlinksbreit {
	width:650px;
	height:559px;
	float:left;
	overflow:auto;
	overflow-x:hidden;
}
.textrechts {
	width:400px;
	height:559px;
	margin-left:480px;
	overflow:auto;
	overflow-x:hidden;
}
* html .textrechts {
	margin-top:-559px;
}
.mitte {
	width:220px;
	height:559px;
	float:left;
}
.mitte img {
	width:220px;
}
.textkasten {
	width:483px;
	height:511px;
	background-image:url(images/michael-naseband-textbox-bg-483x1.jpg);
	background-repeat:repeat-y;
	margin-top:13px;
	overflow:auto;
	overflow-x:hidden;
}
.textkasten p, .textlinks p, .textrechts p {
	font-size:13px;
	font-family:Verdana, "Lucida Grande", Arial, sans-serif;
	line-height:20px;
	margin:20px;
	text-align:left;
}
.textkasten h1 {
	margin:20px auto auto 20px;
	text-align:left;
}

.textkasten h2, .textkasten h3 {
	text-align:left;
	margin:20px 20px 15px 20px;
}
.textlinks h2 {
	margin:20px auto auto 0px;
	text-align:left;
}
.textlinks p {
	margin:20px 30px auto 0px;
}
.textrechts h2 {
	margin:20px auto auto 41px;
	text-align:left;
}
.textrechts p {
	margin:20px 20px 20px 41px;
}
.textrechts form {
	margin:20px auto 20px 41px;
}
.textkasten table {
	border-collapse:collapse;
	margin:20px 0 auto 20px;
}
.textkasten td {
	font-size:14px;
	font-family:"Lucida Grande", Arial, Verdana, sans-serif;
	line-height:20px;
	padding-bottom:27.5px;
}
.kleingedrucktes p {
	font-size:10px;
	line-height:14px;
}
.kleingedrucktes p strong {
	font-size:10px;
	line-height:14px;
	text-decoration:underline;
}
/* HAUPTTEIL */		
			
.hauptteil {
	margin:3px auto 0 auto;
	border-bottom:none;
	display:block;
	clear:both;
	width:960px;
	height:auto;
	min-height:200px;
	color:#000;
	background-color:white;
	font-family:"Lucida Grande", Arial, Verdana, sans-serif;
}
* html .hauptteil {
	margin: 0.5em auto 0.5em auto;
}
/* ZENTRALBEREICH */

.zentral {
	font-size:1em;
	line-height:1.571em;
}
.zentral p {
	font-size:0.875em;				/* 14px */
	margin:0em 20px 0em 20px;
	padding-bottom:2em;
}
.zentral h1 {
	padding-top:1em;
	background-color:inherit;
	text-align:center;
}
* html .zentral h1 {
	font-weight:600;
}
*:first-child+html h1 {
	font-weight:600;
}
.zentral h2 {
	padding-top:1em;
	text-align:center;
}
.zentral h3 {
	margin:0em 20px auto 20px;
	padding-top:1em;
}
.zentral h4 {
	font-size:1.25em;
	text-align:left;
	padding-left:1.25em;
	padding-top:1.5em;
	margin-bottom:-0.75em;
}
.zentral h6 {
	font-size:1em;
	text-align:left;
	padding-left:1.5em;
	padding-top:1.5em;
	margin-bottom:-0.75em;
}
.zentral p em {
	font-weight:700;
}
.zentral table {
	font-size:0.875em;				/* 14px */
	margin:0 20px 0px 20px;
	border:1px solid black;
	border-collapse:collapse;
	width:920px;
}
.zentral td, .zentral th {
	padding:6px;
	border:1px solid black;
	border-collapse:collapse;
}
.zentral th {
	font-weight:600;
}
td#name {
	width:15%;
}
.zentral ol, .zentral ul {
	list-style:disc outside;
	font-size:0.875em;				/* 14px */
	padding-bottom:1em;
}
.zentral ul {
	margin:20px 20px 0 40px;
}
.zentral ul:first-line {
	text-decoration:underline;
}
p em.kleingedrucktes {
	font-size:11px;
	line-height:1.2em;
	font-weight:500;
}
td#link img {
	width:150px;
}
/* FOOTER */

.footer {
	margin: 0 auto;
	background-color: var(--primary-color);
	width: 100%;
	max-width: 600px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.footer-links ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.footer-links li {
	list-style-type: none;
}

.footer-links li a {
	display: flex;
	align-items: center;
	transition: var(--transition);
}

.footer-links li a:hover {
	transform: scale(1.05);
}

.footer hr {
	width: 100%;
	border: none;
	border-top: 1px solid var(--secondary-color);
	margin: 10px 0;
}

.footer-legal {
	text-align: center;
}

.footer-legal p {
	font-size: 12px;
	font-weight: 300;
	color: var(--secondary-color);
	margin: 5px 0;
}

/* MASONRY GALLERY LAYOUT */
#thumbs {
	columns: 3;
	column-gap: 15px;
	padding: 20px;
	max-width: 880px;
	margin: 0 auto;
}

#thumbs a {
	display: block;
	width: 100%;
	height: auto;
	transition: var(--transition);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-bottom: 15px;
	break-inside: avoid;
	position: relative;
}

#thumbs a:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

#thumbs a:hover::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: var(--transition);
}

#thumbs a:hover::before {
	content: '🔍';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
	color: white;
	z-index: 10;
	opacity: 1;
}

#thumbs img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Gallery Item Container */
.gallery-item {
	position: relative;
	display: inline-block;
	width: 100%;
	break-inside: avoid;
	margin-bottom: 15px;
}

/* Copyright Overlay */
.copyright-overlay {
	position: absolute;
	bottom: 8px;
	left: 8px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 4px 8px;
	font-size: 11px;
	font-weight: bold;
	border-radius: 3px;
	z-index: 10;
	pointer-events: none;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Spezielle Größen für bestimmte Bilder */
#thumbs a:nth-child(6) { 
	/* Das große Tattoo-Bild - nimmt 2 Spalten */
	column-span: 2;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
	.header {
		width: 100%;
		max-width: 100%;
		height: auto;
		margin: 0;
		padding: 0 10px;
	}
	
	.header img {
		width: 100%;
		height: auto;
		max-width: 400px;
		margin: 0 auto;
		display: block;
	}
	
	.navigation {
		width: 100%;
		max-width: 100%;
		flex-direction: row;
		height: auto;
		padding: 20px 10px;
		margin: 0;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	
	.navigation-links,
	.navigation-rechts {
		width: auto;
		justify-content: center;
		margin: 0;
		flex-wrap: wrap;
		display: flex;
	}
	
	.navigation-links li,
	.navigation-rechts li {
		width: auto;
		justify-content: center;
		text-align: center;
		margin: 0 2px;
		height: 40px;
		font-size: 14px;
		font-weight: 600;
		padding: 0 6px;
	}
	
	.footer {
		width: 90%;
		padding: 15px;
	}
	
	.footer-links ul {
		flex-direction: column;
		gap: 15px;
	}
	
	/* Gallery responsive */
	#thumbs {
		columns: 2;
		column-gap: 10px;
		padding: 15px;
	}
	
	/* Tattoo-Bild auf mobilen Geräten normal groß */
	#thumbs a:nth-child(6) { 
		column-span: 1; 
	}
}

@media (max-width: 480px) {
	:root {
		--font-size-base: 0.9em;
	}
	
	.header {
		padding: 0 5px;
	}
	
	.header img {
		max-width: 350px;
	}
	
	.navigation {
		padding: 15px 5px;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	
	.navigation-links,
	.navigation-rechts {
		margin: 0;
	}
	
	.navigation-links li,
	.navigation-rechts li {
		height: 35px;
		font-size: 12px;
		margin: 0 1px;
		padding: 0 4px;
	}
	
	.footer-legal p {
		font-size: 10px;
	}
	
	/* Gallery mobile */
	#thumbs {
		columns: 1;
		column-gap: 8px;
		padding: 10px;
	}
}
.footer-subsites {
	margin:0 auto 0 auto;
	width:880px;
	height:auto;
}
.footer-textseite {
	width:483px;
	float:left;
	font-size:14px;
	font-weight:100;
}
.footer-textseite ul {
	width:483px;
	float:left;
	margin-top:8px;
}
.footer-textseite ul li {
	display:inline;
}
.footer-textseite ul li a {
	color:#797978;
	text-decoration:none;
}
.footer-textseite ul li a:hover {
	color:#fff;
}
li#rechtsbuendig a {
	margin-left:210px;
	text-decoration:none;
}
* html li#rechtsbuendig a {
	margin-left:195px;
	text-decoration:none;
}
.footer-bildseite {
	width:397px;
	float:right;
	margin-top:16px;
}
.footer-bildseite p {
	font-size:8px;
	font-weight:100;
	text-align:right;
	color:#797978;
	background-color:inherit;
	font-weight:100;
}
.formularfeld {
	margin-bottom:5px;
	padding-left:3px;
	width:315px;
	font-size:11px;
	font-family:"Lucida Grande", Arial, Verdana, sans-serif;
}
textarea.formularfeld {
	width:317px;
	padding-left:5px;
	padding-top:3px;
}
.gross {
}
.button {
	margin-left:0px;
}
.kontakt {
	font-size:11px;
	font-family:"Lucida Grande", Arial, Verdana, sans-serif;
	color:#FFFFFF;
	margin-top:15px;
	margin-left:15px;
	margin-right:15px;
}
.umbruch {
margin-right:100px;	
}
a.footerlink {
text-decoration:none;
color:#797978;
	background-color:inherit;
}
img.facebook {
	padding-top:2px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 20px;
    justify-content: center;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #797978;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.social-links a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Kontakt-Seite mit Hintergrundbild */
.contentkontakt {
    background-image: url('galerie/michael-naseband-13.jpeg') !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    height: auto !important;
    min-height: 60vh !important;
    position: relative !important;
    width: 100% !important;
    max-width: 880px !important;
    margin: 0 auto !important;
    display: block !important;
}

/* Showreel-Seite mit Video über gesamte Breite */
.contentshowreel {
    width: 100% !important;
    max-width: 880px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background: #000 !important;
}

.contentshowreel .textkasten {
    width: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    margin: 0 !important;
}

.contentshowreel video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

.contentkontakt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Kompakter Text-Container für Kontakt-Seite */
.textlinksbreit {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 10 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    padding: 15px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    backdrop-filter: blur(5px) !important;
    max-width: 280px !important;
    text-align: left !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    max-height: none !important;
    height: auto !important;
}

.textlinksbreit h2 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
}

.textlinksbreit p {
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 0 !important;
}

.textlinksbreit a {
    color: #fff !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
    font-weight: 500 !important;
}

.textlinksbreit a:hover {
    color: #e0e0e0 !important;
}

/* Responsive Design für Kontakt-Seite */
@media (max-width: 768px) {
    .contentkontakt {
        min-height: 50vh !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .textlinksbreit {
        position: absolute !important;
        bottom: 15px !important;
        left: 15px !important;
        right: 15px !important;
        padding: 20px !important;
        max-width: none !important;
        width: calc(100% - 30px) !important;
        border-radius: 10px !important;
        box-sizing: border-box !important;
    }
    
    .textlinksbreit h2 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
        word-wrap: break-word !important;
    }
    
    .textlinksbreit p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .contentkontakt {
        min-height: 40vh !important;
    }
    
    .textlinksbreit {
        bottom: 10px !important;
        left: 10px !important;
        right: 10px !important;
        width: calc(100% - 20px) !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }
    
    .textlinksbreit h2 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
        word-wrap: break-word !important;
    }
    
    .textlinksbreit p {
        font-size: 12px !important;
        line-height: 1.4 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}