@font-face {
  font-family: 'Kalam';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/kalam-v16-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/kalam-v16-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}	
	*{
		margin: 0px;
		padding: 0px;
		box-sizing: border-box;
	}	
	
	/* kalam-regular - latin */

	
	body{
		font-family: sans-serif;
		font-size: 1em;
		background: #ebebeb;
		    background-image: url("../images/hintergrund3.png");
    background-attachment: fixed;

		
		
	}
	
	.wrapper {
		display: grid;
		grid-template-columns: repeat(16,1fr);
		grid-template-rows: 48px 250px 48px auto 50px;
		max-width: 1200px;
		min-height: 100vh;
		margin-left: auto;
		margin-right: auto;
		
		
		
	}
	
.headline {
		grid-column: 2 / 16;
		grid-row: 1 / 2;
		background:#4A4A4A;
		display: flex;
		place-items: center;
		border-radius: 50px 50px  0 0 ;
	}
	
	header{
		grid-column: 2 / 16;
		grid-row: 2 / 3;
		background-image: url("../images/IMG-20210514-WA0001.jpg");
		background-position: center center;
		border-radius: 0;
		background-repeat: no-repeat;
		background-size: cover;
        display:flex;
        place-items:center;

	}
	
	.header_text {
		width: 100%;
    	text-align: center;
		font-family: 'Kalam', cursive;
		color: white;
		font-size: 1.5em;
	
	}

	
	nav{
		grid-column: 2 / 16;
		grid-row: 3 / 4;
		background:#fff;
		
	}
	
	main{
		grid-column: 2 / 12;
		grid-row: 4 / 5;
		background-color: white;
		display: flex;
		flex-direction: column;
		place-items: center start;
		
	}
	
	aside{
		grid-column: 12 / 16;
		grid-row: 4 / 5;
		background-color: white;
		display:flex;
		flex-direction: column;
		place-items: center start;
		
	}
	
	 h1{
		font-size: 1.0em;
		font-weight: bold;
	}
	
	 h2{
		font-size: 1.0em;
		font-weight: bold;
	}
	
	h3{
		font-size: 0.9em;
		font-weight: bold;
	}
	
	h5{
		font-size: 0.9em;
		color: gray;
	}
	
	#address-suggestions div:hover {
    background: #eee;
}

	
	footer{
		grid-column: 2 / 16;
		grid-row: 5 / 6;
		background-color: #4A4A4A;
		color: white;
		display: block;
		padding-top:10px;
		text-align: center;
		border-radius: 0 0 50px 50px;
		
	}
	
	footer a {
		text-decoration: none;
		color: white;
	}
	
	
	.card {
		width: 95%;
		background-color: white;
		 box-shadow: 0px 8px 8px 0px rgba(0,0,0,0.5);
		border-radius: 10px 10px 10px 10px;
		border-top: 2px solid orange;
		margin-top: 10px;
		margin-bottom: 10px;
		padding: 10px;
	}


	                             .topnav {
  overflow: hidden;
  background-color: #4A4A4A;
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 0.9em;
}

.active {
  color: #ffd06c !important;
}
	
	.active:hover {
  color: #000 !important;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 0.9em;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background: #ffd06c;
  color: black;
}

.dropdown-content a:hover {
  background-color: #ffd06c;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}
	
/* Container  ----------------------------------------------------------- */
.galerie{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:1rem;                         /* Abstand zwischen Kacheln */
    justify-items:center;             /* Zentriert jedes Bild im Grid-Slot */
}

/* Einzelkachel --------------------------------------------------------- */
.galpics{
    position:relative;
    aspect-ratio:1/1;                 /* quadratische Tiles – Browser-Fallback ok */
    overflow:hidden;
    border:1px solid #ddd;
    border-radius:4px;
    transition:box-shadow .25s;
}

/* Bild selbst ---------------------------------------------------------- */
.galpics img{
    width:100%;
    height:100%;
    object-fit:cover;                 /* füllt Kachel ohne Verzerrung */
    transition:transform .3s ease;
}

/* Hover-Effekte -------------------------------------------------------- */
.galpics:hover{
    box-shadow:0 0 4px 2px rgba(0,140,186,.45);
}

.galpics:hover img{
    transform:scale(1.05);
}

/* Optionaler Titel-Overlay -------------------------------------------- */
.galpics figcaption{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:.9rem;
    opacity:0;
    transition:opacity .25s;
	pointer-events: none;
}

.galpics:hover figcaption{opacity:1;}

	
	.katcontainer{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		background: white;
	}
	
	.katbutton {
  
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
	background:#FFF;
		
}

.katbutton:hover {
  background-color: #ffd06c;
  color: black;
}
	
.galbox {
		border: 1px solid #ddd;
  		border-radius: 4px;
  		padding: 5px;
  		max-width: 100%;
		margin: auto;
		display:block;
	}


	
	.isa_error {
    color: #D8000C;
    background-color: #FFD2D2;
	max-width: 100%;
	padding:20px;
	border: 1px solid red;
	border-radius: 10px;
	box-shadow:1px 1px 3px #888;
	}
	
	.isa_hinweis {
    color: #B9A726;
    background-color: #FBF5D9;
	max-width: 100%;
	padding:20px;
	border: 1px solid yellow;
	border-radius: 10px;
	box-shadow:1px 1px 3px #888;
	}

.fullwidth {
    grid-column: 1 / -1;
}
	
	.isa_check {
    color: green;
    background-color:#E0FFC4;
	max-width: 100%;
	padding:20px;
	border: 1px solid green;
	border-radius: 10px;
	box-shadow:1px 1px 3px #888;
	}
	
	.isa_black {
    color: white;
    background-color: #9A9A9A;
	max-width: 100%;
	padding:20px;
	border: 1px solid black;
	border-radius: 10px;
	box-shadow:1px 1px 3px #888;
	}
	
	



form {
  display: grid;
  padding: 1em;
  background: #f9f9f9;
  border: 1px solid #c1c1c1;
  margin: 2rem auto 0 auto;
  max-width: 600px;
  padding: 1em;
}
form input,textarea {
  background: #fff;
  border: 1px solid #9c9c9c;
}
form button {
  background: lightgrey;
  padding: 0.7em;
  width: 100%;
  border: 0;
}
form button:hover {
  background: #ffd06c;
}

label {
  padding: 0.5em 0.5em 0.5em 0;
}

input,textarea {
  padding: 0.7em;
  margin-bottom: 0.5rem;
resize: vertical;
}
input:focus {
  outline: 3px solid #ffd06c;
}
	
textarea:focus {
  outline: 3px solid #ffd06c;
}

@media (min-width: 801px) {
  form {
    grid-template-columns: 200px 1fr;
    grid-gap: 16px;
  }

  label {
    text-align: right;
    grid-column: 1 / 2;
  }

  input,
  button, textarea {
    grid-column: 2 / 3;
  }
}

	.wurf_show{
		display: flex; 
		flex-direction: column; 
		flex-wrap: wrap; 
		place-content:center;
	}
	
	.wurfinfo_titel {
		text-align: center;
		font-weight: bold;
		width: 100%;
		padding: 10px;
		margin-left: auto;
		margin-right: auto;
		background-color: bisque;
	}
	
	.wurfinfo_content {
		text-align: center;
		width: 100%;
		padding: 10px;
		margin-bottom: 10px;
	}
	
	
		.zuchth_container {
		display: flex; 
		flex-direction: row; 
		flex-wrap: wrap; 
		place-content:center;
			align-items: center;
	}
	
	.zuchth_bild {
		text-align: center;
		width: 44%;
		padding: 10px;
		margin-bottom: 10px;
	}
	
	.zuchth_content {
		text-align: left;
		width: 44%;
		padding: 10px;
		margin-bottom: 10px;
	}

	
	/* Zuchthündin Detail Beginn */
	
	.zuchthshow_container{
		display: grid;
		grid-template-columns: repeat(4,1fr);
		grid-gap: 10px;
		/* grid-template-rows: 48px 250px 48px auto 50px; */
		grid-template-areas: 	"zhs-img zhs-img zhs-wt zhs-wtc"
								"zhs-img zhs-img zhs-fa zhs-fac"
								"zhs-img zhs-img zhs-ha zhs-hac"
								"zhs-img zhs-img zhs-gr zhs-grc"
								"zhs-img zhs-img zhs-zu zhs-zuc"
								"zhs-zt zhs-ztc zhs-ztc zhs-ztc"
								"zhs-be zhs-bec zhs-bec zhs-bec";
								
	}
	
	.zhs-t {
		grid-area: zhs-t;
		background: gray;
	}
	
	.zhs-wt {
		grid-area: zhs-wt;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	
	}
	.zhs-wtc {
		grid-area: zhs-wtc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	.zhs-fa {
		grid-area: zhs-fa;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-fac {
		grid-area: zhs-fac;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	.zhs-ha {
		grid-area: zhs-ha;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-hac {
		grid-area: zhs-hac;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	.zhs-gr {
		grid-area: zhs-gr;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-grc {
		grid-area: zhs-grc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	.zhs-zb {
		grid-area: zhs-zb;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-zbc {
		grid-area: zhs-zbc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	.zhs-zu {
		grid-area: zhs-zu;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-zuc {
		grid-area: zhs-zuc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	.zhs-zt {
		grid-area: zhs-zt;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-ztc {
		grid-area: zhs-ztc;
	}
	.zhs-be {
		grid-area: zhs-be;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	.zhs-bec {
		grid-area: zhs-bec;
		text-align: justify;
	}
	.zhs-img{
		grid-area: zhs-img;
		text-align:center;
	}
	
	/*Zuchthündin Detai Ende*/
	
	
	/*Welpe Show Beginn*/
	
	.hundshow_container{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 10px;
		/* grid-template-rows: 48px 250px 48px auto 50px; */
		grid-template-areas: 	"hund-n hund-gw"
								"hund-nc hund-gwc"
								"hund-st hund-st"
								"hund-stc hund-stc"
								"hund-gwa hund-gwa"
								"hund-gwac hund-gwac"
								"hund-bilder hund-bilder"
								"hund-bilderc hund-bilderc";
								
	}
	
	.hund-n {
		grid-area: hund-n;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	
	.hund-nc {
		grid-area: hund-nc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	
	.hund-gw {
		grid-area: hund-gw;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	
	.hund-gwc {
		grid-area: hund-gwc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	
	.hund-st {
		grid-area: hund-st;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	
	.hund-stc {
		grid-area: hund-stc;
		display: flex;
    	place-content: center;
    	place-items: center;
	}
	
	.hund-gwa {
		grid-area: hund-gwa;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;
	}
	
	.hund-gwac {
		grid-area: hund-gwac;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}
	
	.gebgewicht {width:100%;}
	
	.hund-bilder {
	grid-area: hund-bilder;
		background-color: bisque;
		display: flex;
    	place-content: center;
    	place-items: center;
    	font-weight: bold;	
	}
	
	.hund-bilderc {
		grid-area: hund-bilderc;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.hundbildbox{
		width:45%;
		margin: 5px;
		position: relative;
	}
	
	.hundbildboxtext{
		position: absolute;
  top: 5px;
  left: 5px;
  background-color: bisque;
  color: black;
  padding-left: 20px;
  padding-right: 20px;
		border-radius: 5px;
	}
	
	
	/*Welpe Show Ende*/
	

	
	@media screen and (max-width: 800px) {

                               .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }

		
	.wrapper {
		grid-template-rows: 30px 150px 48px auto auto 50px;	
	}
		
		.headline {
		grid-column: 1 / 17;
		grid-row: 1 / 2;
		border-radius: 0 ;
	}
	
	header{
		grid-column: 1 / 17;
		grid-row: 2 / 3;
		border-radius: 0;
	}
		
		.header_text {
		
		font-size: 1em;
	
	}
	
	nav{
		grid-column: 1 / 17;
		grid-row: 3 / 4;
		background: #ebebeb;
	}
	
	main{
		grid-column: 1 / 17;
		grid-row: 4 / 5;
		background: #ebebeb;
	}
	
	aside{
		grid-column: 1 / 17;
		grid-row: 5 / 6;
		background: #ebebeb;
	}
	
	footer{
		grid-column: 1 / 17;
		grid-row: 6 / 7;
		border-radius: 0;
		
	}

	.card {
		width: 100%;
		background-color: white;
		 box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
		border-radius: 0;
		border-top: 0px solid orange;
		margin-top: 5px;
		margin-bottom: 5px;
		padding: 10px;
	}
		
			.isa_black {
    color: white;
    background-color: #9A9A9A;
	max-width: 100%;
	padding:20px;
	border: 1px solid black;
	border-radius: 0px;
	box-shadow:0px 0px 0px #888;
	}
		
		.galpics {
  		max-width: 80%;
	}
		
		
		.zuchth_container {
		
		flex-direction: column; 
		place-content:center;
		align-items: center;
	}

		.zuchth_bild{
			width: 60%;
		}
		
	.zuchth_content {
		text-align: center;
		width: 100%;
		
	}

		
	.zuchthshow_container{
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 10px;
		/* grid-template-rows: 48px 250px 48px auto 50px; */
		grid-template-areas: 	"zhs-wt"
								"zhs-wtc"
								"zhs-fa"
								"zhs-fac"
								"zhs-ha"
								"zhs-hac"
								"zhs-gr"
								"zhs-grc"
								"zhs-zu"
								"zhs-zuc"
								"zhs-zt"
								"zhs-ztc"
								"zhs-be"
								"zhs-bec"
								"zhs-img";
								
	}
		
		.hundshow_container{
		grid-template-columns: 1fr;
		grid-template-areas: 	"hund-n"
								"hund-nc"
								"hund-gw"
								"hund-gwc"
								"hund-st"
								"hund-stc"
								"hund-gwa"
								"hund-gwac"
								"hund-bilder"
								"hund-bilderc";
								
	}
		
		.hundbildbox{
		width:80%;
		
	}
		
	}
	
.form1 {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 2rem auto;
  gap: 1.2rem;
  color: #333;
}

.form1 fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form1 legend {
  font-weight: bold;
  font-size: 1.2em;
  color: #444;
  margin-bottom: 0.5rem;
}

.form1 label {
  font-weight: bold;
  margin-bottom: 0.2rem;
  text-align: left;
}

.form1 input,
.form1 textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border 0.2s, box-shadow 0.2s;
  background-color: #fefefe;
}

.form1 input:focus,
.form1 textarea:focus {
  border-color: #ffd06c;
  box-shadow: 0 0 0 3px rgba(255, 208, 108, 0.4);
  outline: none;
}

.form1 textarea {
  min-height: 150px;
  resize: vertical;
}

.form1 button {
  background-color: #ffd06c;
  color: black;
  border: none;
  border-radius: 6px;
  padding: 0.9rem;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
}

.form1 button:hover {
  background-color: #f2be4e;
  transform: translateY(-1px);
}

.form1 button:active {
  transform: scale(0.98);
}

/* Responsiv */
@media (max-width: 600px) {
  .form1 {
    padding: 1.5rem 1rem;
    font-size: 1em;
  }
} 