@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');



.full-width-image {
    position: relative;
    text-align: center; /* Center the text */
    color: white; /* Text color */
}

.full-width-image img {
    width: 100%; /* Full width */
    height: 700px; /* Fixed height, adjust as needed */
    object-fit: cover; /* This will make sure the image covers the area without stretching */
    object-position: center; /* Align the image nicely */
}

.header-img-text {
    position: absolute;
    top: 55%; /* Position in the middle of the header image */
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text image */
    margin: 0;
}

.header-img-text a {
    border: none;
    text-decoration: none;
}

.header-img-text img {
    height: 75px; /* Set your desired height */
    width: auto; /* Adjust width automatically to maintain aspect ratio */
    object-fit: contain; /* The image will be scaled to maintain its aspect ratio while fitting within the element's content box */
    filter: brightness(0) invert(1); /* Attempt to change color to white */
}


/* Adjustments for smaller screens */

@media screen and (max-width: 1024px) {
    .header-img-text img {
        height: 40px; /* Smaller fixed height for smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .header-img-text img {
        height: 40px; /* Smaller fixed height for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .header-img-text img {
        height: 20px; /* Even smaller fixed height for very small screens */
    }
}

@media screen and (max-width: 375px) {
    .header-img-text img {
        height: 4px; /* Even smaller fixed height for very small screens */
    }
}

@media screen and (max-width: 320px) {
    .header-img-text img {
        height: 12px; /* Even smaller fixed height for very small screens */
    }
}

    /* .caterging_header Styles */
.caterging_header {
    text-align: center;
    padding: 30px 20px;
    /*background: #3a3a3a;*/
}

.caterging_header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000; /* Black color text */
    font-family: 'Arial Black', Gadget, sans-serif; /* Bold font similar to the one in the image */

    transform: perspective(500px) translateZ(5px);
}

.caterging_header p {
    font-size: 1.1rem;
    color: #000000; /* Black color text */
}


    /* Locations Section */
    .locations-section {
        text-align: center;
        padding: 40px 20px;
        background-color: #e8e8e8;
    }

    .locations-section h2 {
        font-size: 1.8rem;
        color: #3a3a3a; /* Accent color */
        margin-bottom: 30px;
    }

    .locations-list {
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0;
    }

    .location-item {
        background-color: #e67e22; /* Accent color */
        color: white; /* Text color */
        border: none;
        padding: 15px 30px;
        margin: 10px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .location-item-href{
        color: white;
    }

    .location-item:hover {
        background-color: #8e5a22;
        color: black;
        font-weight: 400;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 40px 20px;
        background-color: #ffffff;
    }
    
    .gallery-section3 {
        padding: 10px 10px;
        background-color: #ffffff;
    }

    .gallery-title {
        text-align: center;
        color: #3a3a3a;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0;
        margin: 0 auto;
        max-width: 1200px;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Service Feature Section */
    .feature-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background-color: #ffffff;
    }
    
    
    .feature-section2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background-color: #ffffff;
        flex-direction: row-reverse;
    }

    .feature-text {
        /*flex: 1;*/
        padding: 20px;
        max-width: 600px;
    }

    .feature-text h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 20px;
    }

    .feature-text p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .feature-image {
        flex: 1;
        padding: 20px;
        max-width: 600px;
    }

    .feature-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .testimonial-section {
    background: #3a3a3a; 
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.testimonial {
    font-style: italic;
    position: relative;
    display: inline-block;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border: none;
}

.testimonial::before {
    content: open-quote;
    font-size: 4rem;
    position: absolute;
    left: -25px;
    top: -25px;
    color: #e67e22; /* Complementary color for the quote mark */
}

.testimonial::after {
    content: close-quote;
    font-size: 4rem;
    position: absolute;
    right: -25px;
    bottom: -25px;
    color: #e67e22; /* Complementary color for the quote mark */
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
}


    /* Footer Styles */
    footer {
        background-color: #333;
        color: white;
        text-align: center;
        padding: 20px;
        font-size: 1rem;
    }

    /* Media Queries for Responsive Design */
    @media (max-width: 768px) {
        .feature-section {
            flex-direction: column-reverse;
        }

        .feature-text, .feature-image {
            max-width: 100%;
        }

        .caterging_header h1,
        .locations-section h2,
        .gallery-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .locations-list {
            flex-direction: column;
        }
    }
    
    
    /* Location page css start */
     .location-button {
    padding: 15px 30px;
    margin: 10px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    color: #fff;
    background-size: 200% auto;
    background-position: right center;
    
    text-decoration: none;
  }

  .location-button:hover {
    background-position: left center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
  }

  .location-button:active {
    transform: translateY(-1px);
  }

  .location-menu-button {
    background-image: linear-gradient(to right, #e67e22, #f0b556); /* Orange gradient */
    box-shadow: 0 4px 6px rgba(230, 126, 34, 0.5); /* Orange shadow */
  }

  .reservation-button {
    background-image: linear-gradient(to right, #8e5a22, #a67f59); /* Brown gradient */
    box-shadow: 0 4px 6px rgba(142, 90, 34, 0.5); /* Brown shadow */
  }
    
    /* Location page css end */
    
    /* Home page Locations */
    
      .locations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    align-items: center;
  }
  .location-card {
    text-align: center;
    margin: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 10px;
    background: white;
    width: calc(33.333% - 20px); /* Three cards per row */
    color: #333;
    transition: transform 0.3s ease;
    overflow: hidden;
  }
  .location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2);
  }
  .location-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .location-card header {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2em;
  }
  .location-card address,
  .location-card .phone,
  .location-card .email {
    margin: 5px 0;
    font-size: 0.9em;
    color: #666;
  }
  .fa-phone, .fa-envelope {
    margin-right: 8px;
  }

  @media (max-width: 768px) {
    .location-card {
      width: calc(50% - 20px); /* Two cards per row on medium screens */
    }
  }

  @media (max-width: 480px) {
    .location-card {
      width: calc(100% - 20px); /* One card per row on small screens */
    }
  }
  
.buttons-container {
  display: flex; /* Enables Flexbox layout */
  justify-content: center; /* Centers buttons in the container */
  align-items: center; /* Aligns buttons vertically */
  width: 100%; /* Container takes full width */
}

.location-button {
   align-items: center;
  /*background-color: #fee6e3;*/
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  /*color: #111;*/
  cursor: pointer;
  display: flex;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%;
  padding: 0 25px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: background-color 0.2s, outline 0.2s;
  width: 50%;
}

.location-order {
    background-color :#f4ad6e;
    color: black;
}

.location-order:hover{
    color: white;
}

.location-reservation {
    background-color : #3a3a3a;
    color : white;
}

/* Pseudo-elements for hover effects */
.location-button:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.location-button:hover:after {
  transform: translate(0, 0);
}

.location-button:active {
  background-color: #ffdeda;
  outline: 0;
}

/*.location-button:hover {*/
/*  outline: 0;*/
/*}*/

@media (max-width: 768px) {
  .location-button {
    flex-basis: 100%; /* Stack buttons on smaller screens */
    margin: 10px 0; /* Add some vertical space between stacked buttons */
  }
}

/* Styles specific to each button type */
.location-order {
  /* Unique styles for order button, if any */
  margin-right: 2%; /* Adds space to the right of the 'Order' button */
}

.location-reservation {
  /* Unique styles for reservation button, if any */
  margin-left: 2%; /* Adds space to the left of the 'Reservation' button */
}

@media (min-width: 768px) {
  .location-button {
    padding: 0 40px;
  }
}


.nbg1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 24px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s, box-shadow 0.3s, transform 0.2s;
  user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  #margin: auto !important;

}
.button:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 164, 79, .4);
}

.button:active {
  box-shadow: 0 1px 0 inset rgba(20, 70, 32, .2);
  transform: translateY(-1px);
}

.button:disabled {
  background-color: #94d3a2;
  color: rgba(255, 255, 255, .8);
  cursor: default;
}

.menu-button {
  background-image: linear-gradient(to right, #e67e22, #f0b556); /* Orange gradient */
  color: white; /* Text color */
 margin-right: 20px !important;

}

.reservation-button {
  background-image: linear-gradient(to right, #8e5a22, #a67f59); /* Brown gradient */
  color: white; /* Text color */
  margin: 0px !important;

}

.order-button {
  background-color: #f4ad6e; /* Solid color */
  color: black; /* Text color */
    width: 50%;
}

.table-reservation-button {
  background-color: #3a3a3a; /* Solid color */
  color: white; /* Text color */
    width: 50%;
  margin: 4%;
}

@media (max-width: 768px) {
  .button {
    padding: 10px 20px; /* Adjust padding for smaller screens */
    margin: 10px 10px;
    flex-basis: 100%; /* Stack buttons on smaller screens */
  }
}

