@charset "utf-8";

html, body, div, span, object, iframe,  h1, h2, h3, h4, h5, h6, p, blockquote, pre,  abbr, address, cite, code,  del, dfn, em, img, ins, kbd, q, samp,  small, strong, sub, sup, var,  b, i,  dl, dt, dd, ol, ul, li,  fieldset, form, label, legend,  table, caption, tbody, tfoot, thead, tr, th, td,  article, aside, canvas, details, figcaption, figure,  footer, header, hgroup, menu, nav, section, summary,  time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
	background-color: #a38a86;
	font-family: 'Calibri', sans-serif;
	overflow-x: hidden;
}

article, aside, details, figcaption, figure,  footer, header, hgroup, menu, nav, section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,  q:before, q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

h1{
	font-size: 30px;
	color: #3B3B3B
}

p{
	font-size: 18px;
	color: #3B3B3B;
	padding-top: 10px;
	line-height: 1.2;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
img {
	position: relative;
}
/* Bild selbst */
.container img {
  opacity: 0; /* Anfangs unsichtbar */
  transition: opacity 2s ease-in-out; /* Übergangseffekt */
}

/* Klasse zum Einblenden des Bildes */
.container img.show {
  opacity: 1; /* Sichtbar */
}

.gallerie-container {
   display: flex;
   justify-content: center; /* Horizontal zentrieren */
   position: relative;
   width: 100%;
   
}

.gallerie {
  width: 80%;
  position: absolute;
  margin-top: 40px;
  padding: 20px;
  text-align: left;
  opacity: 0; /* Start mit voller Transparenz */
  animation: flyIn 2s ease-in-out forwards; /* Animation mit 2s Dauer */
  animation-delay: 1s; /* 2 Sekunden Verzögerung */
  background-color: #CDC0BE;
  box-shadow: 10px 10px 5px #cfbbb7;
  border-radius: 10px;
        }
@keyframes flyIn {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0%);
                opacity: 1;
            }
        }


/* Container für die Navigation */
nav {
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(242, 237, 236, 1), rgba(242, 237, 236, 0.6));
}

/* Liste der Navigationselemente */
nav ul {
  width: 90%;
  list-style-type: none;
  padding-right: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

/* Einzelne Navigationselemente */
nav ul li {
  display: inline;
}

/* Links in der Navigation */
nav ul li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #A75923;
}

/* Hover-Effekt für Links */
nav ul li a:hover {
  background-color: rgba(242, 237, 236, 0.8);
  color: #7C4200;
}


