@charset "UTF-8";
/* CSS Document */
html, body {
  height: 100%;
  margin: 0;
}
html {
  font-size: 16px; /* oder was du als Basiswert willst */
}

/* Grundlegendes Layout */
body {
  font-family: 'Figtree', sans-serif;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-weight: 600;
	font-size:1.5rem;
/*font-size: clamp(1.5rem, 2vw + 1rem, 3rem);*/
	padding:0;
	margin:0;
}

p, a, li {
  font-weight: 400;
  font-size: 0.8rem;
	padding:0;
	margin:0;
}
a:hover, a:visited, a:focus{color:inherit;}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* Kopfbereich */
header {
	position: sticky;
	top: 0;
  	background-color: #fff;
  	z-index: 1000;
	padding:2rem;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
  	align-items:flex-end;
  	gap: 1rem;

}

header a {
  display: flex;
  align-items: center;
}
.logo {
  height: 1.5rem;
/*height: clamp(1vw, 1.5rem, 2rem);*/
  max-width: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

nav a, .download a{
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 1rem;
/*font-size: clamp(0.95rem 0.2vw + 1rem 2rem);*/
  padding-bottom: 2px;
}

nav a::after, .download a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: black;
  transition: width 0.4s ease;
}

nav a:hover::after, .download a:hover::after {
  width: 100%;
}

.container {
  flex: 1; /* Nimmt den verfügbaren Platz zwischen header und footer ein */
  padding: 0 1rem;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
}





/* Ausstellungen mit Grid */
.exhibitions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.exhibition {
  text-align: center;
}

.exhibition h1{
	
padding-top: 10rem;
padding-bottom: 2rem;
font-size: 1.3rem;
}

.exhibition h2{
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: normal;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  /*padding-top: 1rem;  Platz für Linie */
  transition: color 0.3s ease;
}

/*.exhibition h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}*/

.exhibition a:hover h2{ color:#aaa;}

.exhibition p{
  font-size: 1rem;
  margin: 0;
}
.exhibition p.download a{
  font-size: 0.8rem;
 
}
*.arrow-link {
  display: inline-flex;
  margin-top: 1rem;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: black;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

*.arrow-icon {
  transition: transform 0.3s ease;
}

*.arrow-link:hover .arrow-icon {
  transform: translateX(8px); /* Pfeil bewegt sich nach rechts */
}

.exhibition img {
  width: auto;
  height: auto;
  object-fit: contain;
  padding-top:1rem;
  max-width: 100%;
 max-height: 80vh;
}

.exhibition .datum {padding-top:1rem;}

p.gap{
margin-top:6rem;
	font-size:0.9rem;
	font-weight: 600;
}

.text-box{
text-align: left;
  max-width: 700px;
  margin: 3rem auto 3rem auto;
	
}
/*     Works           */

.exhibition-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  /*justify-content: center;   zentriert Grid */
  justify-items: center;    /* zentriert Items innerhalb der Zellen */
  gap: 2rem;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product img {
  height: auto;
 max-height:none;
  max-width: 690px;
min-width: 400px;
width: 100%;
  
  object-fit: cover;
  margin-top:2rem;
}

.work-info{ width: 90%;}
.work-info p{
  margin: 0;
  font-size: 0.95rem;
  color: #333;
	text-align: left;
	padding-left:1rem;
	
}
.product-id, .work-info span{
	font-weight: 600;
}

.work-info p:first-child{
	margin-top: 1rem;
}
button.enquire-btn {
display: block;
}

.work-info span.arrow-link{
display: block;
padding-left: 1rem;
margin-top: 1rem;
}

/* Newsletter-Formular */

.subscribe {
  text-align: left;
  max-width: 410px;
  margin: 8rem auto 4rem auto;
}

.subscribe h3 {
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 1rem;
}

.subscribe form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid #eee;
  max-width: 100%;
}

.subscribe input[type="email"] {
  flex: 1;
  padding: 1rem;
	margin:0;
  border: none;
  font-size: 1rem;
  outline: none;
}

.subscribe form button {
  padding: 0.5rem 1.5rem;
  background-color: #000!important;
	transition: background-color 0.3s ease;
  color: #fff;
  font-size: 1rem;
  font-weight: normal;
  border: none!important;
  cursor: pointer;
border-radius: 0!important;
}
.subscribe form button:hover {
background-color: #555!important;	
}
.subscribe p {
  font-size: 0.85rem;
  color: #444;
  margin-top: 1rem;
  line-height: 1.5;
}


/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #555;
  margin-top: 4rem;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-right {
  flex-shrink: 0;
}

.instagram-icon {
  height: 24px;
  width: 24px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.instagram-icon:hover {
  filter: none;
}

