/* style.css */


/* --------------------------------------------------- */
/* Body */

/* Reset default browser styles */
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------- */
/* Header */

.logo {
  text-align: center;
  margin-top: 0px;
}

.logo img {
  max-height: 100px; /* Maximum height of 100 pixels */
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

/* --------------------------------------------------- */
/* tabs_2 content */

.tab {
  margin-bottom: 20px;
}

.tabcontent {
  display: none;
  padding: 20px;
  background-color: #ffffff;
}

.product {
  margin-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}

.title-desc {
  margin-bottom: 5px;
}

.title {
  font-weight: bold;
}


/* --------------------------------------------------- */
/* tabs_2 */

/* Apply styles to the container holding the button */
    .button-container {
      position: relative;
      display: inline-block;
    }

    /* Apply styles to the button */
    .tablinks {
      position: relative;
      overflow: hidden; /* Ensure the overlay covers the entire button */
      background: none; /* Remove default button background */
      border: none; /* Remove default button border */
      padding: 0; /* Remove default button padding */
      cursor: pointer; /* Change cursor on hover to indicate interactivity */
    }

    /* Apply styles to create a transparent overlay */
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0); /* Transparent black overlay */
      cursor: pointer; /* Change cursor on hover to indicate interactivity */
    }

    /* Apply styles to the image inside the button */
    .tablinks img {
      width: 100%; /* Make sure the image takes up the entire button */
      height: auto; /* Maintain aspect ratio */
      display: block;
    }



/* --------------------------------------------------- */
/* footer */
/* Modern style for desktop and mobile*/

    .footer-info,
    .opening-hours,
    .social-media {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }

    .opening-hours ul,
    .social-icons {
      list-style-type: none;
      padding: 0;
    }

    .opening-hours li {
      margin-bottom: 5px;
    }

    .social-icons img {
      width: 30px;
      height: auto;
      margin-right: 10px;
    }

    .logo_footer {
      text-align: right;
      margin-top: -50px;
    }

    .logo_footer img {
      max-height: 70px; /* Maximum height of 100 pixels */
    }

    /* Media query for mobile devices */
    @media (max-width: 767px) {
      .modern-footer {
        padding: 10px;
      }
    }

    .phone-link {
        text-decoration: none; /* Remove underlining */
    }

