 /* Basic Reset */
 * {
   box-sizing: border-box;
 }

 body {
   font-family: 'Manrope', 'Canela';
   margin: 0;
   font-size: 18px;
   line-height: 1.6;
   color: var(--text-color);
   background-color: var(--color-white);
 }

 /* Container and grid for Contact and map */
 .contact-section {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 150px 50px;
   max-width: 1200px;
   margin: 0 auto;
   gap: 50px;
 }

 .contact-left {
   max-width: 500px;
   width: 50%;
 }

 .contact-left h3 {
   font-family: 'Manrope';
   font-weight: normal;
   font-size: 32px;
   color: var(--primary-color);

 }

 .contact-left hr {
   width: 58%;
   height: 2px;
   background-color: var(--primary-color);
   border: none;
   margin-bottom: 20px;
   margin: 10px 0;

 }

 .contact-left h1 {
   font-family: 'Canela';
   font-size: 42px;
   font-weight: normal;
   line-height: 1.2;
   margin-top: 0;
   margin-bottom: 25px;
 }

 .contact-section .btn-wrapper {
   display: flex;
   gap: 5px;
   width: 400px;
 }

 .btn {
   width: 50%;
 }

 .btn-contact {
   background: var(--primary-color);
   border: none;
   color: var(--color-white);
   padding: 10px 18px;
   font-weight: bold;
   font-size: 1em;
   border-radius: 3px;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   text-decoration: none;
   justify-content: center;
 }

 .btn-contact img {
   max-width: 25px;
   margin-right: 10px;
 }

 .btn-contact svg {
   margin-right: 8px;
 }

 .btn-tripadvisor {
   background: var(--unaction-color);
   color: var(--text-color);
   font-weight: 600;
   border-radius: 2px;
   padding: 10px 18px;
   font-size: 0.8em;
   cursor: pointer;
   border: none;
 }

 /* Map size */
 .contact-right {
   width: 50%;
   border-radius: 6px;
   box-shadow: 0 1px 5px var(--unaction-color);
 }

 .contact-map {
   width: 100%;
   height: 400px;
 }

 /* Menu Section */
 .menu-section {
   display: inline-block;
   width: 100%;
   background: var(--background-color);
   text-align: center;
   padding: 150px 50px;
 }

 .menu-section h3 {
   font-family: 'Manrope';
   color: var(--primary-color);
   font-weight: 500;
   font-size: 32px;
 }

 .menu-section hr {
   width: 15%;
   margin: 0 auto;
   height: 2px;
   background-color: var(--primary-color);
   border: none;
   text-align: center;
   margin-bottom: 20px;
   margin-top: 10px;

 }

 .menu-section h2 {
   font-family: 'Canela';
   font-weight: normal;
   font-size: 36px;
   margin: 0 0 30px 0;
 }

 /* Category Tabs */
 .menu-categories {
   margin-bottom: 25px;
   gap: 8px;
   flex-wrap: wrap;
   justify-content: center;
 }

 .menu-categories button {
   background: var(--color-white);
   border: 1px solid var(--unaction-color);
   padding: 7px 15px;
   cursor: pointer;
   font-weight: 600;
   font-family: 'Manrope';
   font-size: 14px;
   border-radius: 3px;
   transition: background-color 0.3s ease;
 }

 .menu-categories button.active {
   background: var(--primary-color);
   color: var(--color-white);
   border-color: var(--primary-color);
 }

 .menu-container img{
   max-width: 100%;
 }

 /* Menu Items Grid */
 .tab-contant {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 20px 30px;
   text-align: left;
   padding: 60px 50px;
   max-width: 1200px;
   margin: 0 auto;
   margin-top: 60px;
 }


 .menu-item {
   display: flex;
   gap: 15px;
   align-items: center;
 }

 .menu-item-content h3 {
   font-family: 'Canela';
   font-size: 24px;
   color: var(--text-color);

 }

 .menu-item img {
   width: 120px;
   height: 90px;
   object-fit: cover;
   border-radius: 4px;
 }

 .menu-item-content {
   flex: 1;
 }

 .menu-item-content h4 {
   margin: 0 0 7px;
   font-weight: 700;
   font-size: 1.1em;
 }

 .menu-item-content p {
   font-family: 'Manrope';
   margin: 0 0 8px;
   font-size: 14px;
   line-height: 1.3;
   font-weight: 400;
 }

 .menu-item-content a {
   font-family: 'Manrope';
   text-decoration: none;
   font-weight: normal;
   font-size: 14px;
   color: var(--active-color);
 }

 .menu-item-content a:hover {
   text-decoration: underline;
 }

 /* Footer */
 footer {
   background: var(--active-color);
   color: var(--color-white);
   padding: 100px 30px;
   margin: 0 auto;
   flex-wrap: wrap;
   justify-content: space-between;
   font-size: 0.8em;
   line-height: 1.4;
 }

 .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
 }

 .contact-container {
   display: flex;
   align-items: flex-start;
   gap: 40px;
   justify-content: flex-end;
 }

 .contact-title {
   font-family: 'Canela';
   font-size: 28px;
   font-weight: 400;
   width: 130px;
   line-height: 1.2;
 }

 .contact-info {
   font-family: 'Manrope';
   font-weight: 300;
   font-size: 16px;
   line-height: 1.5;
 }

 .contact-info p {
   margin: 12px 0;
 }

 .social-icons a {
   display: inline-block;
   width: 36px;
   height: 36px;
   margin-right: 12px;
 }

 .social-icons a {
   width: 30px;
 }

 .copyright {
   text-align: right;
   padding-top: 100px;
   margin-right: 15px;
 }

 /* Responsive */
 /* Tablets */
 @media (max-width: 768px) {
   .contact-section {
     display: block;
     padding: 20px;
   }

   .contact-left {
    max-width: 100%;
    width: 100%;
   }

   .contact-left h3,
   .menu-section-title h3 {
     font-size: 21px;
   }


   .contact-left h1 {
     font-size: 30px;
     line-height: 36px;
     padding: 20px 0;
   }

   .contact-right {
     margin-top: 50px;
     margin-bottom: 50px;
     width: 100%;

   }

   .contact-section .btn-wrapper {
     display: flex;
     width: 100%;
   }
   .contact-section .btn-wrapper .btn{
    width: 50%;
    margin: 0;
   }

   .btn-tripadvisor {
     margin-top: 10px;
     padding: 15px;
   }

   .btn-contact,
   .btn-tripadvisor {
     font-size: 0.80em;

   }

   .menu-item {
     display: flex;

   }

   .menu-section hr {
     width: 190px;

   }

   .menu-item-content h3 {
     font-size: 16px;
   }

   .menu-section {
     padding: 0;
     padding-top: 40px;
     padding-bottom: 0px;
   }

   .tab-contant {
     padding: 50px 20px;
     grid-template-columns: repeat(1, 1fr);
     margin-top: 0;
   }
   .contact-container {
     display: block;
     place-items: center;
   }

   .copyright {
     place-items: center;
     text-align: center;
     padding-top: 30px;
     margin: 0;
   }

    .footer-container {
      padding-top: 30px;
      padding-bottom: 30px;
    }
    footer .logo {
     /* margin-top: 50px; */
      display: block;
      text-align: center;
   }

 }

 /* phone */
 @media (max-width: 480px) {
   .contact-section {
     display: block;

   }

   .contact-left {
     width: 100%;
   }

   .contact-left h1 {
     font-size: 1.2em;
     line-height: 1.6em;
   }

   .contact-section .btn-wrapper {
     display: block;
   }
   .contact-section .btn-wrapper .btn{
    width: 100%;
    margin-top: 10px;
   }

   .btn-tripadvisor {
     margin-top: 10px;
     padding: 15px;
   }

   .contact-left h3,
   .menu-section h3,
   .menu-item-content h3 {
     font-size: 1em;
   }

   .contact-left hr {
     display: block;
     display: inline-block;
     max-width: 150px;
     align-items: center;

   }

   .contact-right {
     margin-top: 50px;
     width: 100%;

   }

   .menu-section {
     padding: 20px 20px;
   }

   .menu-section h2 {
     font-size: 1.2em;
     padding-top: 20px;
   }

   .tabs {
     font-size: 16px;

   }

   .menu-section hr {
     width: 150px;

   }

   .tab-contant {
     padding: 0;
     margin-top: 30px;
     grid-template-columns: repeat(1, 1fr);
   }

   .menu-categories button {
     font-size: 0.8em;
     padding: 6px 10px;
   }

   .menu-item img {
     width: 90px;
     height: 70px;
   }

   .menu-item-content,
   .menu-item-content p {
     text-align: left;
   }

   .contact-container {
     margin-top: 30px;
     margin-bottom: 30px;

   }

   .contact-info {
     font-size: 1em;
   }

   
 }

 footer {
   font-size: 0.7em;
   padding: 30px 15px;
 }

 footer small {
   font-size: 0.65em;
 }