/* SIZE FOR MOBILE DEVICES (min-width: 140px) and (max-width: 480px) */
/* * {
 
  border: 1px solid rgb(255, 0, 85);
} */
.logo {
  margin-left: 10px;
}
/* body {
  background: red;
} */

/* Utility Classes */

/* Utility Classes */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 15px;
}
.containex {
  max-width: 480x;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navigation */
.navbar .main-menu {
  display: none;
}

.navbar .hamburger-button {
  display: block;
}

/* ----- HERO -----*/
/* .hero .container {
  background: url("../images/hero-bg-mobile.png") no-repeat;
  background-size: 480px;
  background-position: bottom;
  height: 770px;
} */

.hero-image {
  background-image: url("../images/Mobile/hero-mobile.png");
  height: 100vh;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: block;
}

.hero-textH1 {
  font-size: 6rem;
  margin: 0;
  /* color: var(--yellow-color); */
  color: rgba(255, 210, 0, 0.8);
}
.hero-textH3 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  margin-top: 0.5rem;
  color: rgba(255, 210, 0, 0.8);
}

.hero .hero-content,
.hero .hero-text {
  width: 100%;
  text-align: center;
}

.hero .hero-buttons .btn {
  margin-bottom: 10px;
  display: block;
  width: 100%;
}

/* ------ ABOUT US ----- */
.AbotUsContent {
  max-width: 480px; /* Maximum width of the content */
  width: 100%; /* Ensures the content uses full width up to 800px */
  text-align: center; /* Centers the text horizontally */
  /* padding: 20px; */
}
.AboutUsH1 {
  font-family: "thunderhouse-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--yellow-color);
  font-size: 5rem; /* Adjust title font size */
  line-height: 5rem;
  rotate: -5deg;
  margin-top: 100px;
}
.AboutUsText {
  padding: 20px 20px;
  font-size: 1.5rem;
}

/* ----- ALLES WIRT GUT ----- */

.AllesWirtGut {
  display: grid;
  max-width: 401px;
  place-items: end center; /* Aligns the text at the bottom and center horizontally */
  height: 1060px; /* Set the height of the div */
  background-image: url("../images/Mobile/EverydayHooray-860-1104-2.png");
  background-repeat: no-repeat;
  background-size: cover; /* Ensures the image covers the div */
  background-position: center; /* Centers the image */
  text-align: center; /* Centers text horizontally */
}

/* ----- EVENTS ----- */

.EventWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  height: auto;
  /* background: var(--black-color); */
}

/* Container styles */
.EventContainer {
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  /* background: #fff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
}

/* Event Title styles */
.EventContainer h1 {
  margin-bottom: 20px;
  font-family: "thunderhouse-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--yellow-color);
  font-size: 3rem; /* Adjust title font size */
  margin-bottom: 20px; /* Space below title */
  rotate: -5deg;
}

/* Grid layout for cards */
.EventGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
  align-items: center;
}

/* Event Card styles */
.EventCard {
  background: var(--yellow-color);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  max-width: 100px;
}

.EventCard img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.EventCard p {
  font-size: 1rem;
  color: var(--primary-color);
  margin: 0;
}
/* ----- FLIP CARDS
 ----- */
.flip-card {
  background-color: transparent;
  background: var(--grey-color);
  padding: 15px;
  border-radius: 8px;
  width: 300px;
  height: 300px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  background-color: var(--primary-color);
  color: var(--yellow-color);
  transform: rotateY(180deg);
}
.flip-card-back p {
  /* margin-top: 50px; */
  padding: 5px;
  letter-spacing: 0.5px;
}
.flip-card-back h1 {
  margin-top: 5px;
  font-size: 3rem;
  padding: 5px;
}

/* ----- CONTACT ----- */

/* Contact Container styles */
.ContactWrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  /* background-color: aqua; */
}

.ContactContainer {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  /* padding: 5px; */
  /* background-color: blueviolet; */
}
/* Contact Grid layout for content */
.ContactContent {
  width: 300px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-content: center;
  align-items: center;
  height: 500px;
  /* background-color: aliceblue; */
}

/* Contact Title styles */
.ContactContainer h1 {
  font-family: "thunderhouse-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem; /* Adjust title font size */
  margin-bottom: 25px; /* Space below title */
  margin-top: 20px;
  color: var(--yellow-color);
  rotate: 5deg;
  text-align: center;
}

/* Contact Paragraph styles */
.ContactContent p {
  padding: 15px;
  border-radius: 5px;
  color: var(--yellow-color);
  font-size: 1.3rem;
  text-align: center;
}

/* Text */
.text-xl {
  font-size: 1.9rem;
}

.text-lg {
  font-size: 1.5rem;
}

.text-md {
  font-size: 1.1rem;
}
.text-xxl {
  font-size: 2rem;
}

/* ----- FOOTER ----- */
.footer .footer-grid {
  grid-template-columns: 1fr;
}

.footer .card {
  margin-right: 0;
}

.footer .footer-grid > div {
  text-align: center;
}
