html, body {
  margin: 0;
  padding: 0;
  color: #888888;
  overflow-x: hidden;
}

/* Font Definitions - Oswald Font Family */
@font-face {
  font-family: 'oswaldbold';
  src: url('../fonts/oswald/oswald-bold-webfont.eot');
  src: url('../fonts/oswald/oswald-bold-webfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/oswald/oswald-bold-webfont.woff') format('woff'),
  url('../fonts/oswald/oswald-bold-webfont.ttf') format('truetype'),
  url('../fonts/oswald/oswald-bold-webfont.svg#oswaldbold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'oswaldlight';
  src: url('../fonts/oswald/oswald-light-webfont.eot');
  src: url('../fonts/oswald/oswald-light-webfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/oswald/oswald-light-webfont.woff') format('woff'),
  url('../fonts/oswald/oswald-light-webfont.ttf') format('truetype'),
  url('../fonts/oswald/oswald-light-webfont.svg#oswaldlight') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'oswaldbook';
  src: url('../fonts/oswald/oswald-regular-webfont.eot');
  src: url('../fonts/oswald/oswald-regular-webfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/oswald/oswald-regular-webfont.woff') format('woff'),
  url('../fonts/oswald/oswald-regular-webfont.ttf') format('truetype'),
  url('../fonts/oswald/oswald-regular-webfont.svg#oswaldbook') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Basic HTML Element Styling */
h1 {
  color: #7d7d7d;
  font-size: 50px;
  margin: 30px 0 10px 0;
  padding: 0;
  font-family: 'oswaldbold', sans-serif;
  font-weight: normal;
  text-shadow: 3px 3px 0 rgba(223, 223, 223, 0.9);
  text-align: center;
}

h2 {
  color: #7d7d7d;
  font-size: 30px;
  padding: 0;
  font-family: 'oswaldbold', sans-serif;
  font-weight: normal;
  text-align: center;
  margin: 20px 0;
}

h3 {
  color: #7d7d7d;
  font-size: 20px;
  margin: 10px 0;
  padding: 0;
  font-family: 'oswaldbold', sans-serif;
  font-weight: normal;
}

p {
  color: #5c5c5c;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  padding: 0;
  font-family: 'oswaldlight', sans-serif;
}

a {
  text-decoration: none;
}

a img {
  border: 0;
}

section {
  padding: 50px 0;
}

.img-border {
  border: 10px solid #889a80;
  margin: 10px;
  box-shadow: #7a8c72 0 0 10px;
}

/* Navigation Menu Styling */
#navigationmenu {
  width: 100%;
  background-image: url(../img/patterns/grey-bg.png);
  background-repeat: repeat;
  color: #7d7d7d;
  font-family: 'oswaldbold', sans-serif;
  font-size: 25px;
  text-shadow: 2px 2px 0 rgba(223, 223, 223, 0.9);
}

#navigationmenu .container {
  padding: 10px 0;
}

.logo {
  height: 180px;
}

.logo img {
  position: absolute;
  margin-top: 0;
  z-index: 30;

  -webkit-transition: all 700ms;
  -o-transition: all 700ms;
  transition: all 700ms;
}

.logo img:hover {
  transform: scale(1.02, 1.02);
}

nav {
  margin: 55px 20px 20px 20px;
}

nav ul {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

nav ul li {
  margin: 0 10px;
  padding: 0;
  float: left;
  border-top: 1px dashed #d6d5d5;
  border-bottom: 1px dashed #d6d5d5;
}

nav a {
  padding: 20px 10px;
  float: left;
  color: #7d7d7d;

  -webkit-transition: color 250ms ease-in;
  -moz-transition: color 250ms ease-in;
  -o-transition: color 250ms ease-in;
  transition: color 250ms ease-in;
}

nav a:hover {
  color: #bbbbbb;
  -webkit-transition: color 250ms ease-in;
  -moz-transition: color 250ms ease-in;
  -o-transition: color 250ms ease-in;
  transition: color 250ms ease-in;
}

/* Main Services Section Styling */
#services {
  width: 100%;
  float: left;
}

#services .titlesection p {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

#services .titlesection .divider {
  display: flex;
  justify-content: center;
}

#services h3 {
  margin: 20px 20px 0 20px;
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
  transform-origin: center center;
}

.icon-circle i {
  font-size: 48px;
  color: white;
}

.icon-circle:hover {
  transform: rotate(360deg);
}

.icon-circle.red {
  background-color: #D97A7A;
}

.icon-circle.blue {
  background-color: #A5DCE1;
}

.icon-circle.green {
  background-color: #BFE1A4;
}

.icon-circle.yellow {
  background-color: #E0D9A3;
}

.icon-circle.orange {
  background-color: #FACBA6;
}

.icon-circle.navi {
  background-color: #94CDC6;
}

.hero {
  margin-top: 120px;
}

/* Testimonials Section Styling */
#testimonials {
  width: 100%;
  float: left;
  background-image: url(../img/patterns/green-bg-light.png);
  background-repeat: repeat;
}

#testimonials .container div {
  margin: 0 10px;
}

#testimonials .container {
  padding: 30px 0;
}

#testimonials h2 {
  color: #FFF;
  margin: 10px 20px;
  text-shadow: 2px 2px 0 rgba(111, 176, 167, 0.9);
  font-size: 50px;
}

#testimonials h3 {
  color: #FFF;
  margin: 10px 20px;
  text-shadow: 2px 2px 0 rgba(111, 176, 167, 0.9);
  font-size: 30px;
}

#testimonials p {
  color: #FFF;
  margin: 10px 20px;
}

.topquote img {
  width: 52px;
  margin: 10px 0;
  padding: 0;
  float: left;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

#testimonials:hover .topquote img, #testimonials:hover .bottomquote img {
  transform: scale(1.2, 1.2);
}

.bottomquote img {
  width: 52px;
  margin: 10px 0;
  padding: 0;
  float: right;
  -webkit-transition: all 300ms;
  -o-transition: all 300ms;
  transition: all 300ms;
}

/* Our Services Section Styling */
#sectionservices {
  width: 100%;
}

#sectionservices .titlesection {
  text-shadow: 3px 3px 0 rgba(223, 223, 223, 0.9);
}

/* Pricing Section Styling */
#sectionprices {
  width: 100%;
  float: left;
  background-image: url(../img/patterns/green-bg-light.png);
  background-repeat: repeat;
  overflow: hidden;
}

#sectionprices .titlesection {
  text-shadow: 3px 3px 0 rgba(111, 176, 167, 0.9);
}

#sectionprices .titlesection h1 {
  color: #FFF;
}

/* Additional Pricing Section Styling */
#sectionprices h2 {
  color: #FFF;
}

#sectionprices .clip {
  text-align: center;
}

#sectionprices .clip img {
  margin: 42px 20px;
}

#sectionprices .clip img:hover {
  opacity: 0.5;
}

/* About Us Section Styling */
#aboutus {
  width: 100%;
  float: left;
  background-image: url(../img/patterns/grey-bg.png);
  background-repeat: repeat;
}

#aboutus .titlesection {
  text-shadow: 3px 3px 0 rgba(223, 223, 223, 0.9);
}

/* Wachteleier Besonders Section Styling */
#wachteleier-besonders {
  width: 100%;
}

/* Rezepte Section Styling */
#rezepte-section {
  width: 100%;
}

#rezepte-section h2 {
  color: #7d7d7d;
  text-shadow: 3px 3px 0 rgba(223, 223, 223, 0.9);
  margin-top: 30px;
}

#rezepte-section h3 {
  margin-top: 20px;
}

#rezepte-section ul, #rezepte-section ol {
  color: #5c5c5c;
  font-family: 'oswaldlight', sans-serif;
  font-size: 18px;
  line-height: 26px;
}

/* Social Media Section Styling */
#oursocial {
  width: 100%;
  background-image: url(../img/patterns/grey-bg.png);
  background-repeat: repeat;
  font-size: 50px;
}

#oursocial img {
  margin: 20px;
}

#oursocial .titlesection {
  text-shadow: 3px 3px 0 rgba(223, 223, 223, 0.9);
}

#oursocial a {
  color: #7d7d7d;
}

#oursocial .col-md-2 {
  text-align: center;
}

.btn {
  margin: 10px 20px !important;
  float: left;
  background-color: #889a80;
  color: #FFF;

  opacity: 1;
  -webkit-transition: opacity;
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transition: opacity;
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}

.btn:hover {
  background-color: #889a80;
  color: #FFF;
  opacity: 0.7;
  -webkit-transition: opacity;
  -webkit-transition-timing-function: ease-out;
  -webkit-transition-duration: 250ms;
  -moz-transition: opacity;
  -moz-transition-timing-function: ease-out;
  -moz-transition-duration: 250ms;
}

.btn a {
  font-size: 30px;
  padding: 5px 10px;
  color: #FFF;
  font-family: 'oswaldbold', sans-serif;
}


.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Basic Styling */
.card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 280px;
  background-color: #f7f7f2;
  text-align: center;
  padding: 20px 20px 40px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: visible;
  background-image: url('../img/section-prices/bg.png');
  background-repeat: repeat;
  margin-bottom: 20px;
}

/* Price Bar Styling */
.card .price-bar {
  margin: 0 -20px;
  background-color: #8ec6c5;
  padding: 8px 0;
  color: white;
  font-size: 24px;
  font-weight: 700;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-image: url('../img/section-prices/bgribbon-83987e.png');
}

.card .price-bar span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.85);
}

/* Card Title Styling */
.card h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #333;
}

/* Card Feature List Styling */
.card ul.features {
  flex-grow: 1;
  list-style: none;
  text-align: left;
  margin: 0 auto 20px auto;
  padding-left: 0;
  max-width: 220px;
}

.card ul.features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.4em;
  color: #555;
  font-size: 14px;
}

.card ul.features li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #8ec6c5;
  font-size: 14px;
  line-height: 1em;
}

.card .btn {
  display: inline-block;
  background-color: #889a80;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 3px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}

.card .btn:hover {
  background-color: #7a8c72;
}


/* Footer Section Styling */
#footer {
  width: 100%;
  background-image: url(../img/patterns/green-bg-light.png);
  background-repeat: repeat;
  padding: 40px 0;
  color: #FFF;
}

#footer h3 {
  color: #FFF;
  font-size: 24px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 rgba(111, 176, 167, 0.9);
}

#footer p {
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
}

#footer a {
  color: #FFF;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#footer a:hover {
  opacity: 0.8;
}

#footer .footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

/* Mobile Navigation Links Styling */
.combined-mobile-menu a {
  color: #4d4d4d; /* Dark grey color */
  text-decoration: none;
  font-family: 'oswaldbold', sans-serif;
  font-size: 20px;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.combined-mobile-menu a:hover {
  color: #889a80; /* Dark green color on hover */
}

#footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links li {
  margin-bottom: 10px;
}

#footer .contact-info {
  margin-bottom: 5px;
}

#impressum-content h2, #datenschutz-content h2 {
  font-family: sans-serif;
  text-align: left;
}

/* Burger Menu Styling */
.burger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.burger-menu:hover {
  background-color: rgba(125, 125, 125, 0.1);
}

.burger-menu i {
  font-size: 20px;
  color: #7d7d7d;
  transition: all 0.3s ease;
}

.burger-menu:hover i {
  color: #5c5c5c;
}

/* Mobile Navigation */
@media (max-width: 767px) {
  #navigationmenu {
    position: relative;
  }

  #navigationmenu .container {
    position: relative;
  }

  #navigationmenu .leftnavigation,
  #navigationmenu .rightnavigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    padding: 80px 20px 20px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  #navigationmenu .leftnavigation.active,
  #navigationmenu .rightnavigation.active {
    left: 0;
  }

  #navigationmenu .leftnavigation ul,
  #navigationmenu .rightnavigation ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  #navigationmenu .leftnavigation ul li,
  #navigationmenu .rightnavigation ul li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }

  #navigationmenu .leftnavigation ul li a,
  #navigationmenu .rightnavigation ul li a {
    font-size: 24px;
    color: #7d7d7d;
    padding: 15px 0;
    display: block;
    width: 100%;
  }

  .logo {
    order: 2;
    margin-bottom: 20px;
  }

  .logo img {
    width: 150px;
    height: auto;
  }

  nav {
    margin: 0;
  }

  nav ul {
    margin: 0;
    padding: 0;
  }

  nav ul li {
    margin: 0;
    padding: 0;
    float: none;
    border: none;
  }
}

@media (max-width: 768px) {
  #sectionservices .col-md-4 {
    text-align: center;
  }

  #sectionservices .icon-circle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    margin-top: 50px;
  }

  #footer .footer-column {
    margin-bottom: 30px;
    text-align: center;
  }
}
