@font-face {
    font-family: 'CamberMedium'; /* Name the font as you like */
    src: url('fonts/CamberTRIAL-ThIt.otf') format('truetype'); /* Use the correct path */
    font-weight: normal;
    font-style: normal;
  }
  * {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Monument Extended', sans-serif;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: #2e2b28;
    background-color: #EBE7DB;
    overflow-x: hidden;
    -webkit-user-select: none; /* Chrome all / Safari all */
    -moz-user-select: none;    /* Firefox all */
    -ms-user-select: none;     /* IE 10+ */
    -o-user-select: none;
    user-select: none;
  }
  
  .main {
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
  }
  
  a, a:active, a:focus, a:hover, button {
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    color: unset;
  }
  
  h1, h2, h3, h4, h5, h6, p, ul, hr {
    padding: 0;
    margin: 0;
    font-weight: 400;
  }
  
  ul li {
    list-style-type: none;
  }
  
  .btn {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  
  img {
    width: 100%;
  }
  
  p {
    line-height: 1.5;
  }
  
  .container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
    justify-content: center;
  }
  
  .image-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px); /* 3 columns layout */
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top; /* Removes baseline alignment spacing */
  }
  
  .menu img {
    border: 0 none;
    max-width: 100%;
    vertical-align: middle;
    height: auto;
  }
  
  
  
  
  @media screen and (max-width: 480px) {
    .image-container {
      width: 100%; /* 1 column layout */
    }
    .container {
      width: 100%; /* 1 column layout */
    }
    .Social-info {
      width: 100%; /* 1 column layout */
    }
  }
  
  
  @media (max-width: 600px) {
    .image-container {
        width: 100%; /* Remove width restriction */
    }
    .container {
      width: 100%; /* 1 column layout */
    }
    .Social-info {
      width: 100%; /* 1 column layout */
    }
  
    .social-icons {
     
      width: 100%;
      position: absolute;
      top: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .location-name {
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 10px;
    text-transform: uppercase;
    }
  
    .icons img {
      margin-top: 10px;
      width: 75px;  /* Smaller icons for small screens */
      height: 75px;
    }
    .glovo img {
      margin-top: 25px;
      width: 150px;  /* Smaller Glovo logo for small screens */
      height: 80px;
    }
  
    .phone-number {
      font-size: 16px;
      font-weight: bold;
      color: white;
     
    }
    .footer {
      font-size: 5px;
      color: #aaa;
      text-align: center;
      margin-top: 15px;
    }
  }
  
  @media (max-width: 360px) {
    body {
        overflow-y: scroll; /* Prevent horizontal overflow */
    }
  
    .image-container {
        width: 100%; /* 1 column layout */
    }
    .container {
      width: 100%; /* 1 column layout */
  }
    .Social-info {
      width: 100%; /* 1 column layout */
    }
    .social{
      width: 100%; /* 1 column layout */
    }
    
  
    .social-icons {
      width: 100%;
      position: absolute;
      top: 150px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .icons img {
      width: 25px;  /* Further reduce size for very small screens */
      height: 25px;
    }
  
    .social {
      gap: 10px;  /* Reduce gap between icons for smaller screens */
    }
    .footer {
      font-size: 5px;
      color: #aaa;
      text-align: center;
      margin-top: 15px;
    }
  
    
  }
  