/* CSS Document */

body{
	background-color: #744146;
}
.bg-1{
	background: #744146 ;
}

.bg-2{
	background: #744146;
}

.logo-hero {
    width: auto;
    max-width: 300px;
    height: auto;
    object-fit: contain; /* ← ganzes Bild sichtbar, kein Abschneiden */
}

/* Das Hero Image */
.hero-image {
	/* Mit "linear-gradient" wird das Hintergrundbild (images/photographer.jpg) abgedunkelt, damit der Text leichter lesbar ist */
	background-image: linear-gradient(rgba(0, 0, 0, 0.5),
					rgba(0, 0, 0, 0.5)),
					url("../images/home.jpg");

	/* Höhe des Hero-Images festlegen */
	height: 100vh; /* 50vh macht das Hero-Image nur halb so hoch */

	/* Ausrichtung und Zentrierung des Bildes, damit es auf allen Bildschirmen gut aussieht */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: center;
}

/* Platziert einen Text in der Mitte des Bildes (optional) */
.hero-text {
	color: white;
	text-align: center;
	align-self: center;
}

.hero-text button {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 10px 25px;
	color: black;
	background-color: #ddd;
	text-align: center;
	cursor: pointer;
}

.hero-text button:hover {
	background-color: #555;
	color: white;
}

h6{
	color:#b6bbc1;
	font-family:'Comic Relief';
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 20px;
}

h1{
	font-family:'Comic Relief';
	font-size: 100px;
}

h2{
	font-family:'Comic Relief';
	color: #b6bbc1;
	text-transform: uppercase;
	font-weight: bold;
	margin-bottom: 30px;
}

p{
	font-family:'Comic Relief';
	color: #b6bbc1;
	margin-bottom: 10px;
	
}

.pblack{
	font-family:'Comic Relief';
	color: black;
}


footer{
	background: #5b313d;
}

footer a {
  color: #b6bbc1;
  font-size: 20px;
  margin-top: 5px;
	padding: 5px;
  display: inline-block;
}

footer a:hover {
  color: white;
}

figcaption{
	color: #FFF;
	background: var(--maincolor);
	padding-top: 10px;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: var(--maincolor); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 20px; /* Some padding */
    border-radius: 45px; /* Rounded corners */
    font-size: 16px; /* Increase font size */
	line-height: 12px; /* Set the line-height for better alignment inside the box */
	text-decoration: none;
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
	text-decoration: none;
}

.logo {
    height: 3em;   /* skaliert mit der Schriftgröße der Navbar */
    width: auto;
}

.bg-nav{
	background-color: #5b313d;
}

.box{
	width: 48%;
	float: left;
	margin: 0 1%;
}

.card{
    transition:0.3s;
	    padding: 0;
   
    background: transparent; /* optional */
}

.card-body {
    padding: 0; /* oder kleiner setzen */
}

.card:hover{
    transform:scale(1.02);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* ← das schneidet das Bild zu! */
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.box figure img{
	width: 100%;
}

.box figure {
	position: relative;
}

h5{
	background-color:#5b313d;
	color:#b6bbc1;
	font-family:'Comic Relief';
}

h3{
	color:#5b313d;
	font-family:'Comic Relief';
	font-weight: bold;
}


.box figure figcaption{
	width: 100%;
	background: #ad1d18;
	color: white;
	font-size: 20px;
	font-weight: bold;
	padding: 10px;
	position: absolute;
	bottom: 20px;
	left: -10px;
	opacity: 0;
	transition: opacity 1s ease;
}

.box:hover figure figcaption{
	opacity: 1;
}

blockquote{
	font-style: italic;
	font-family: 'Reenie Beanie';
	font-size: 30px;
}



.center{
	margin-top: 17%;
}

.boxshadow {
	box-shadow: 5px -5px 10px 5px rgba(0,0,0,0.5);
}

.bg-4{
	background-color:#d2d8dd;
}


.carousel-item img{
    height: 800px;
    object-fit: cover;
}

summary{
	color: #b6bbc1;
}

.card-body{
	background-color: #744146;
}

.card-link{
	color: black;
	font-style: bold;
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Reenie Beanie';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/reenie-beanie-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* comic-relief-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Comic Relief';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/comic-relief-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* comic-relief-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Comic Relief';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/comic-relief-v2-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
