@font-face {
	font-family: Dakota;
	src: url("../public/fonts/Handwriting-Dakota.ttf");
}

html {
	max-width: 100%;
}

body {
	font-family: Dakota, Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
	font-weight: 800;
	flex-direction: column;
	margin: 0;
	min-height: 93vh;
	padding: 0;
	text-align: center;
	max-width: 100%;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 3rem;
	margin: 0;
}

h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
}

a {
	text-decoration: none;
}

q:after {
	content: "";
}

q:before {
	content: "";
}

p {
	margin: 0;
}

.modal-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-modal {
	display: none;
	z-index: 9999999;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50%;
	background-color: white;
	border-radius: 5px;
	padding: 8px;
	box-sizing: border-box;
}

.modal-close {
	float: right;
}

.modal-close:hover {
	cursor: pointer;
}

@media only screen and (max-width: 550px) {
	.modal-modal {
		width: 100%;
		height: 100%;
		border-radius: 0;
	}
}

.home-scroll-target {
	position: absolute;
	left: 0;
	top: 0;
	height: 1px;
	width: 100%;
	visibility: hidden;
}

.navigation {
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-content: center;
	left: 0;
	top: 0;
	height: 2.5rem;
	width: 100%;
	z-index: 20;
	background-color: black;
}

.navigation__home {
	padding: 0 15px;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
}

.navigation__home-logo {
	position: relative;
	top: 50%;
	width: 70%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.navigation__list {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
}

.navigation__list-item {
	flex: 1;
	color: white;
}

.navigation__divider {
	font-size: 1.5rem;
}

.navigation__link {
	padding: 10px;
	font-size: 1.4rem;
	text-align: center;
	display: block;
	color: white;
}

.background {
	position: fixed;
	top: 2.1rem;
	left: 0;
	height: calc(100vh - 4.2rem);
	width: 100%;
	background-image: url("../public/images/curry61-bg-large.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

.bar {
	position: fixed;
	background-color: black;
	height: 2.5rem;
	width: 100%;
	bottom: 0;
	z-index: -1;
}

.bar--show {
	visibility: visible;
}

.bar--hide {
	visibility: hidden;
}

.modal-popup {
	position: fixed;
	color: white;
	background-color: black;
	border-bottom: 1px solid black;
	bottom: 0;
	min-height: 3rem;
	left: 0;
	right: 0;
	top: auto;
	z-index: 100;
	width: 100%;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

.modal-popup__main-text,
.modal-popup__info-text {
	display: inline-block;
	width: 100%;
}

.modal-popup__button-wrapper {
	background-color: black;
	position: absolute;
	top: 35%;
	right: 5%;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
	.modal-popup--inner {
		display: inline-block;
		background-color: white;
		bottom: 0;
		width: 100%;
		max-height: 10%;
		margin: 0;
		border-bottom: black 2px solid;
	}

	.modal-popup-more-info--wrapper-outer {
		position: absolute;
		background-color: white;
		margin: 0;
		width: 100%;
	}

	.navigation__home {
		padding: 0;
	}

	.navigation__link {
		padding: 10px;
		font-size: 1.2rem;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	animation-name: fadeOutDown;
}

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.pictures__anchor {
	height: 55px;
	margin-top: 100vh;
	width: 100%;
}

.pictures {
	align-content: center;
	background-color: rgba(255, 255, 255, 0.95);
	display: flex;
	min-height: 100vh;
	overflow: hidden;
	height: auto;
	padding: 2% 4% 0 4%;
}

.pictures__grid {
	display: grid;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 4fr;
	grid-template-areas: "text text text""sausage sausage sausage""queue wall currywurst";
	align-content: center;
	justify-content: center;
}

.pictures__images {
	width: 110%;
	height: auto;
}

.pictures__text {
	color: #c62724;
	font-size: 1.5rem;
	grid-area: text;
	width: 100%;
	height: 100%;
}

.pictures__sausage {
	grid-area: sausage;
}

.pictures__sausage__image {
	width: auto;
}

.pictures__queue-image {
	grid-area: queue;
	transform: rotate(-5deg);
}

.pictures__wall-image {
	grid-area: wall;
	transform: rotate(5deg) translate(0, 120px);
	margin-bottom: 5rem;
}

.pictures__currywurst-image {
	grid-area: currywurst;
	transform: rotate(-5deg) translate(-10px, 20px);
}

.pictures__quote-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pictures__quote {
	font-size: 2rem;
	flex-grow: 0;
	padding: 0 2%;
	color: #c62724;
	white-space: nowrap;
}

.pictures__divider {
	flex-grow: 1;
	height: 3px;
	background-color: #c62724;
}

@media only screen and (min-width: 1225px) {
	.pictures__quote {
		font-size: 2.8rem;
	}
}

@media only screen and (max-width: 1000px) {
	.pictures__quote {
		font-size: 2rem;
	}

	.pictures__grid {
		display: grid;
		margin: 0 auto;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr 4fr;
		grid-template-areas: "text text text""sausage sausage sausage""queue wall currywurst";
		align-content: center;
		justify-content: center;
	}

	.pictures__images {
		width: 100%;
	}
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
	.pictures__quote {
		font-size: 1.5rem;
	}
}

.contact {
	color: #c62724;
	display: flex;
	z-index: 1;
	flex-direction: column;
	padding-bottom: 2%;
	background-color: white;
}

.contact__row {
	padding: 0 4%;
	display: flex;
	flex: 1 1 100%;
	flex-direction: row;
	z-index: 2;
}

.cotact__row-inline-block {
	padding: 0 4%;
	display: inline-block;
	z-index: 2;
}

.contact__paragraph {
	text-align: left;
	flex: 1 1 70%;
	margin-bottom: 5rem;
}

.contact__mapContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 2 0 auto;
	width: 50%;
	height: auto;
	z-index: 3;
}

#contact__map {
	width: 100%;
	height: auto;
	box-sizing: border-box;
}

.contact__address {
	color: #c62724;
	flex: 1 0 auto;
	text-align: right;
}

.contact__list {
	text-align: right;
}

.contact__socia-list {
	display: inline-block;
}

.contact__social-list-item {
	text-align: center;
	height: 100%;
}

.contact__social-list-item img {
	width: 50%;
}

.contact__social-list li:not(:last-child) {
	margin-bottom: 1rem;
}

.contact__social-image {
	width: 50%;
	min-width: 70px;
	max-width: 100px;
}

.contact__disclaimer-wrapper {
	text-align: justify;
	width: 40rem;
}

.contact__disclaimer-wrapper p {
	padding-right: 5%;
	font-size: 1.2rem;
}

.contact__anchor {
	height: 55px;
	margin-top: 100vh;
	width: 100%;
}

/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
	/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
	/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
	/* Styles */
}

.footer {
	margin: 20vh 0;
	background: none;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	justify-items: center;
	z-index: 2;
	width: 100%;
	flex-direction: row;
}

.footer__logo-container {
	background-color: rgba(255, 255, 255, 0.9);
	display: flex;
	height: 25vh;
	width: 100%;
	flex: 1 1 auto;
	z-index: 2;
	align-content: center;
	justify-content: center;
	align-items: center;
	justify-items: center;
}

.contact__wrapper {
	min-height: 100vh;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 2% 0;
}

.quality__wrapper {
	background-color: rgba(255, 255, 255, 0.95);
  margin-top: 50vh;
  padding: 5vh 20px;
  color: #c62724;
}

.quality__wrapper p {
  margin-bottom: 0.5rem;
}

.contact__text ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.contact__text a, .contact__text a:hover, .contact__text a:active {
  text-decoration: underline;
  color: #ec0d09;
}

/* Desktops and laptops ----------- */
@media only screen and (min-width: 1225px) {
	.contact__grid, .quality__grid {
		display: grid;
		width: 80%;
		margin: auto;
		grid-template-columns: 1.5fr 1fr 1fr;
		grid-template-rows: auto;
		grid-gap: 20px;
		grid-template-areas: "header header header""main map map""main map map";
		align-content: center;
		justify-content: center;
	}

	/* items */
	/* specific item styles */
	.contact__info-text-container, .quality__info-text-container {
		grid-area: header;
		display: grid;
		grid-template-columns: 1fr 10%;
		grid-template-rows: auto;
		grid-gap: 10px;
		grid-template-areas: "text picture";
	}

	.contact__map-container {
		grid-area: map;
	}

	.contact__text, .quality__text {
		text-align: left;
		color: #c62724;
		font-size: 1.5em;
		grid-area: text;
		max-width: 1000px;
	}

	.contact__text p, .quality__text p {
		margin-bottom: 1rem;
	}

	.contact__bottle-image {
		grid-area: picture;
	}

	.contact__bottle-image {
		width: 8rem;
		height: auto;
		z-index: 10;
		transform: translateY(-25%) rotate(10deg);
	}

	.contact__inner-grid {
		font-size: 1.1rem;
		grid-area: main;
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		grid-gap: 20px;
		grid-template-areas: "social contact-info""impressum impressum";
	}

	.contact__impressum {
		font-size: 20px;
		text-align: justify;
		grid-area: impressum;
	}

	.contact__social {
		grid-area: social;
	}

	.contact-info {
		grid-area: contact-info;
	}
}

/* Desktops and laptops ----------- */
@media only screen and (max-width: 1224px) {
	.contact__grid, .quality__grid {
		display: grid;
		width: 80%;
		margin: auto;
		grid-template-columns: 1.5fr 1fr 1fr;
		grid-template-rows: auto;
		grid-gap: 20px;
		grid-template-areas: "header header header""main map map""main map map";
		align-content: center;
		justify-content: center;
	}

	/* items */
	/* specific item styles */
	.contact__info-text-container, .quality__info-text-container {
		grid-area: header;
		display: grid;
		grid-template-columns: 1fr 10%;
		grid-template-rows: auto;
		grid-gap: 10px;
		grid-template-areas: "text picture";
	}

	.contact__map-container {
		grid-area: map;
	}

	.contact__text, .quality__text {
		text-align: left;
		color: #c62724;
		font-size: 1.5em;
		grid-area: text;
	}

	.contact__text span {
		display: block;
	}

	.contact__text span:first-child {
		margin-bottom: 1.5rem;
	}

	.contact__bottle-image {
		grid-area: picture;
	}

	.contact__bottle-image {
		width: 8rem;
		height: auto;
		z-index: 10;
		transform: translateY(-25%) rotate(10deg);
	}

	.contact__inner-grid {
		font-size: 1.1rem;
		grid-area: main;
		display: grid;
		grid-template-rows: auto;
		grid-gap: 20px;
		grid-template-areas: "social contact-info""impressum impressum";
	}

	.contact__impressum {
		text-align: justify;
		grid-area: impressum;
		font-size: 20px !important;
	}

	.contact__social {
		grid-area: social;
	}

	.contact-info {
		grid-area: contact-info;
	}
}

@media only screen and (max-width: 1000px) {
	.contact__wrapper, .quality__wrapper {
		background-color: rgba(255, 255, 255, 0.95);
		max-height: 100%;
		display: flex;
		align-content: center;
		justify-content: center;
		padding: 4% 0;
	}

	.contact__social-list-item img {
		width: 70%;
	}

	.contact__grid, .quality__grid {
		display: grid;
		width: 95%;
		margin: auto;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-gap: 20px;
		grid-template-areas: "header header""map map""main main";
		align-content: center;
		justify-content: center;
	}

	#contact__map {
		font-size: 20px;
		height: 20rem;
		box-sizing: border-box;
	}
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
	.pictures__anchor {
		margin-top: 101vh;
		height: 50px;
	}

	.pictures__grid {
		display: grid;
		margin: 0 auto;
		grid-template-columns: 1fr;
		grid-template-rows: 0.4fr 0.5fr 1fr 1fr 1fr;
		grid-template-areas: "text""sausage""queue""wall""currywurst";
		align-content: center;
		justify-content: center;
		width: 100%;
	}

	.pictures__quote-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.pictures__quote {
		display: block;
		white-space: normal;
	}

	.pictures__sausage-image {
		width: 40%;
	}

	.pictures {
		padding: 4% 8%;
	}

	.pictures__quote {
		display: inline-block;
		word-wrap: break-word;
		font-size: 1.5rem;
		max-width: 100%;
	}

	.pictures__queue-image {
		transform: rotate(-5deg);
	}

	.pictures__wall-image {
		transform: rotate(5deg) translate(0, -15px);
	}

	.pictures__currywurst-image {
		transform: rotate(-5deg) translate(0, -15px);
	}

	.contact__wrapper, .quality__wrapper {
		padding: 4%;
	}

	.contact__wrapper span {
		margin-bottom: 1.5rem;
	}

	.contact__anchor {
		height: 50px;
	}

	.contact__grid, .quality__grid {
		display: grid;
		width: 95%;
		margin: auto;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-gap: 40px;
		grid-template-areas: "header""map""main";
		align-content: center;
		justify-content: center;
	}

	.contact-info__list {
		text-align: right;
	}

	.contact__social-list-item img {
		width: 100%;
	}

	.contact__info-text-container, .quality__info-text-container {
		grid-area: header;
		grid-template-areas: "picture""text";
		display: grid;
		grid-template-columns: 100%;
		grid-template-rows: auto;
	}

	.contact__bottle-image {
		height: 80%;
		grid-area: picture;
	}

	.contact__text, .quality__text {
		margin-top: -10%;
		grid-area: text;
		font-size: 1.3em;
		width: 100%;
		text-align: justify;
	}

	.contact__inner-grid {
		grid-area: main;
		display: grid;
		grid-template-columns: 0.6fr 1fr;
		grid-template-rows: auto;
		grid-gap: 20px;
		grid-template-areas: "social contact-info""impressum impressum";
	}
}

/* Smartphones (landscape) ----------- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
	.contact__bottle-image {
		width: 0;
	}
}

/*# sourceMappingURL=all-styles.css.map */