/* style.css */

@font-face {
  font-family: 'Roboto';
  src: url('./fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('./fonts/roboto slab/RobotoSlab-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --font-roboto: Roboto, sans-serif;
  --font-serif: 'Roboto Slab', serif;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-roboto);
  line-height: 1.5;
  color: #333;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.space-x-1 > * + * {
  margin-left: 0.25rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.prose {
  max-width: 65ch;
}

.prose p {
  margin-bottom: 1rem;
}

.max-w-none {
  max-width: none;
}

.border-t {
  border-top-width: 1px;
}

.border-\[\#e0d9cc\] {
  border-color: #e0d9cc;
}

.bg-\[\#4400FF\] {
  background-color: #4400FF;
}

.text-white {
  color: white;
}

.text-gray-500 {
  color: #6b7280;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.flex-horizontal {
  flex-direction: row;
}

.flex-vertical {
  flex-direction: column;
}

.justify-start {
  justify-content: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.w-full {
  width: 100%;
}

.w-5, .h-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.hover\:underline:hover {
  text-decoration: none;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon-heart {
  color: #FC3586;
  fill: #FC3586;
}

.icon-instagram {
  width: 1.25rem;
  height: 1.25rem;
}

/* Background image for impressum page */
.bg-impressum {
    
  background-image: url('./bg/bg02.png');
  background-size: cover;
  background-position: center;
}

/* Media queries */
@media (min-width: 768px) {
  .md\:flex-horizontal {
    flex-direction: row;
  }
  
  .md\:justify-between {
    justify-content: space-between;
  }
  
  .md\:w-full {
    width: 100%;
  }
  
  .md\:mr-2 {
    margin-right: 0.5rem;
  }
  
  .md\:w-5, .md\:h-5 {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .md\:text-sm {
    font-size: 0.875rem;
  }
}

/* Footer-Styling */
.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
  }
  
  .footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1rem;
    }
    
    .footer-left {
      justify-content: center;
      width: 100%;
    }
    
    .footer-center {
      width: 100%;
    }
    
    .footer-right {
      width: 100%;
      justify-content: center;
    }
  }
  
