/* === BUTLER FONT FAMILY === */
@font-face {
  font-family: 'Butler-Black';
  src: url('fonts/Butler_Black.otf') format('opentype');
}

@font-face {
  font-family: 'Butler-Bold';
  src: url('fonts/Butler_Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Butler-ExtraBold';
  src: url('fonts/Butler_ExtraBold.otf') format('opentype');
}

@font-face {
  font-family: 'Butler-Light';
  src: url('fonts/Butler_Light.otf') format('opentype');
}

@font-face {
  font-family: 'Butler-Medium';
  src: url('fonts/Butler_Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Butler-Regular';
  src: url('fonts/Butler_Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Butler-UltraLight';
  src: url('fonts/Butler_Ultra_Light.otf') format('opentype');
}

/* === CANIS MAJOR === */
@font-face {
  font-family: 'CanisMajor';
  src: url('fonts/CANIS-MAJOR.ttf') format('truetype');
}
/* === Movie Makers Personal Use === */
@font-face {
  font-family: 'MovieMakersPersonalUse';
  src: url('fonts/MovieMakersPersonalUse.ttf') format('truetype');
}

/* === CINZEL FAMILY === */
@font-face {
  font-family: 'Cinzel-Black';
  src: url('fonts/Cinzel-Black.otf') format('opentype');
}

@font-face {
  font-family: 'Cinzel-Bold';
  src: url('fonts/Cinzel-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'Cinzel-Regular';
  src: url('fonts/Cinzel-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'CinzelDecorative-Black';
  src: url('fonts/CinzelDecorative-Black.otf') format('opentype');
}

@font-face {
  font-family: 'CinzelDecorative-Bold';
  src: url('fonts/CinzelDecorative-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'CinzelDecorative-Regular';
  src: url('fonts/CinzelDecorative-Regular.otf') format('opentype');
}

/* === GILL SANS CONDENSED === */
@font-face {
  font-family: 'GillSansCondensed';
  src: url('fonts/gill-sans-mt-condensed.ttf') format('truetype');
}

/* === HERTINE === */
@font-face {
  font-family: 'Hertine';
  src: url('fonts/Hertine.woff') format('woff'),
        url('fonts/Hertine.ttf') format('truetype');
}

/* === MISTRAL === */
@font-face {
  font-family: 'Mistral';
  src: url('fonts/MISTRAL.ttf') format('truetype');
}

/* === MOVIE FILMSTRIP === */
@font-face {
  font-family: 'MovieFilmstrip';
  src: url('fonts/Movie.woff') format('woff'),
        url('fonts/Movie.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;  
  background-color: white;
  color: #111;
}

.hero {
  scroll-margin-top: 70vh; 
}

.about {
  scroll-margin-top: 0vh; 
}

#menu {
  scroll-margin-top: 0vh; 
}

.contact-section {
  scroll-margin-top: 16vh;
}

/* ========= HEADER ========= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #55916c; 
}

.nav-wrapper {
  max-width: 1200px; 
  margin: auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========= NAVIGATION ========= */
nav {
  flex: 1;
  display: flex;
  justify-content: space-between; 
  align-items: center;
}

.logo {
  width: 68px;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  margin-right: 8%;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff; 
  font-family: 'GillSansCondensed', sans-serif;
  font-size: 20px;
  position: relative;
  transition: color 0.3s;
}

/* Remove hover effect */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background-color: #ffffff;
  transition: width 0.3s;
}

/* Only active page gets underline */
nav ul li a.active::after {
  width: 100%;
}
.language-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  cursor: pointer;
  font-family: 'GillSansCondensed', sans-serif;
  font-size: 18px;
  color: #ffffff;
  transition: background-color 0.3s, transform 0.3s;
}

.language-btn:hover {
  background-color: rgba(255, 255, 255, 0.32);
  transform: scale(1.04);
}

.language-btn i {
  font-size: 19px;
  color: #fff; /* icon always white */
  margin-right: 9px;
}

.language-btn span {
  margin: 0 6px;
  font-weight: 500;
}

/* ========= Animation ========== */
/* elements hidden initially */
.fade-up {
  opacity: 0;
  transform: translateY(30px); 
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* when in view */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* home */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.0)), url('imgs/homebg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 70%;
  text-align: center;
  color: #ffffff;
  font-family: 'CanisMajor', cursive;
  margin: 0 auto; 
  margin-top: 10%;
}

/* Title */
.hero-content h1 {
  font-size: 63px;
  font-family: 'MovieMakersPersonalUse', cursive;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Paragraph */
.hero-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 5%;
  font-family: 'GillSansCondensed', sans-serif;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  font-family: 'GillSansCondensed', sans-serif;
  padding: 8px 25px;
  background-color: #55916c; 
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: all 0.3s;
}

.hero-buttons .btn:hover {
  background-color: #000000;
  transform: scale(1.03);
}

/* About Section */
.about {
  padding-top: 15%;
  padding: auto 50px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {
  max-width: 1200px;
  text-align: center;
}

/* Title (same style as Hero) */
.about-content h1 {
  font-size: 33px;
  font-family: 'MovieMakersPersonalUse', cursive;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Paragraph */
.about-content p {
  font-size: 18px;
  line-height: 1.6;
  font-family: 'GillSansCondensed', sans-serif;
  color: #333333;
  margin: 0 auto 50px auto; 
  max-width: 80%;
}

/* About Images Horizontal Layout */
.about-images {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

/* First Image - wider */
.about-images .img-a1 {
  width: 400px;
  height: 450px;
  object-fit: cover;
}

/* Second Image - smaller width */
.about-images .img-a2 {
  width: 250px;
  height: 450px;
  object-fit: cover;
}

/* Column for a3 + a4 */
.about-images .img-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-images .img-column img {
  width: 250px;
  height: 220px;
  object-fit: cover;
}

/* ===== GENERAL MENU STYLE ===== */
.menu-jaleo {
  font-family: 'Georgia', serif;
  color: #000;
  padding-top: 15%;
}

.menu-title {
  text-align: center;
  font-size: 33px;
  font-family: 'MovieMakersPersonalUse', cursive;
  color: #111111;
  margin-bottom: 4%;
  line-height: 1.2;
}

.menu-subtitle {
  max-width: 73%;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  font-family: 'GillSansCondensed', sans-serif;
  color: #000000; 
  margin-top: -30px; 
  margin-bottom: 5%;
}

/* ===== SECTIONS ===== */
.menu-item-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2% 10%;
  background: #fff;
}

.menu-item-section:nth-child(even) {
  background: #55916c; 
  color: #fff;
}

.menu-item-section.reverse {
  flex-direction: row-reverse;
}

/* ===== TEXT CONTENT ===== */
.menu-text-content {
  flex: 1;
  padding: 15px;
}

.category-title {
  font-family: 'MovieMakersPersonalUse', cursive;
  font-size: 25px;
  margin-bottom: 15px;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin: 6px 0; 
  border-bottom: 1px dotted currentColor;
}

.item-name {
  font-size: 17px;
  line-height: 1.2;
  font-family: 'GillSansCondensed', sans-serif;
}

.menu-extra {
  padding: 9px 25px;
  border-radius: 5px;
  border: none;
  background-color: #000; 
  margin-top: 5%; 
  font-size: 17px;
  line-height: 1.2;
  font-family: 'GillSansCondensed', sans-serif;
}

.extra-price {
  font-family: 'Georgia', serif;
}

.item-price {
  margin-left: 10px;
  font-weight: bold;
  font-size: 14px;
}

/* ===== IMAGE STYLE ===== */
.menu-image-container {
  text-align: center;
}

.menu-image-container img {
  width: 100%;
  object-fit: cover;
  border: none;
}

.contact-section {
  margin: 0 auto 60px;
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.contact-text-content {
  max-width: 90%;
  margin: 0 auto 60px;
  text-align: center;
  background-color: #fff;
}

.contact-section .category-title {
  font-family: 'MovieMakersPersonalUse', cursive;
  font-size: 33px;
  margin-bottom: 20px;
}

.contact-section .contact-paragraph {
  font-family: 'GillSansCondensed', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 80%;
}

.map-container {
  width: 95%;
  height: 400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* footer */
/* ======= FOOTER ======= */
#main-footer {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  padding: 40px 20px;
  font-family: 'Cinzel-Bold', serif;
  text-align: start;
}

#main-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 250px;
  min-width: 230px;
}

.footer-left {
  margin-left: 10%;
}

.footer-center {
  margin-left: 7%;
}

/* ===== LEFT ===== */
.footer-left h3 {
  font-size: 25px;
  font-family: 'MovieMakersPersonalUse', cursive;
  color: #000000; 
  margin-bottom: 20px;
  line-height: 1.2;
}

.footer-left p {
  font-size: 15px;
  line-height: 1.6;
  font-family: 'GillSansCondensed', sans-serif;
  color: #000000;
  margin-top: 5%;
  text-align: start;
}

/* ===== CENTER ===== */
.footer-center h3 {
  font-size: 25px;
  font-family: 'MovieMakersPersonalUse', cursive;
  color: #000000; 
  margin-bottom: 20px;
  line-height: 1.2;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  margin-bottom: 10px;
}

.footer-center ul li a {
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'GillSansCondensed', sans-serif;
  color: #000000;
  transition: color 0.3s;
  text-align: start;
}

.footer-center ul li a:hover {
  color: #55916c; 
}

/* ===== RIGHT ===== */
.footer-right h3 {
  font-size: 25px;
  font-family: 'MovieMakersPersonalUse', cursive;
  color: #000000; 
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: start;
  margin-left: 3%;
}

.footer-icons {
  margin-left: 14%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.footer-icons li a {
  font-size: 26px;
  color: #000000; 
  transition: transform 0.3s, color 0.3s;
  display: inline-block;
}

.footer-icons li a:hover {
  color: #55916c; 
  transform: scale(1.2);
}

/* ===== COPYRIGHT ===== */
.copyright {
  text-align: center;
  margin-top: 5%;
  padding-top: 2%;
  margin-bottom: -6px;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'GillSansCondensed', sans-serif;
  color: #000000;
  border-top: 1px solid #55916c; 
}

/* ===== HIGHLIGHT ===== */
.highlight {
  font-family: 'MovieMakersPersonalUse', cursive;
  color: #55916c; 
}


/* =================================== */
/* Responsive Design for Phones */
/* =================================== */

@media (max-width: 706px) {

    /* General Adjustments */
    body {
        font-size: 14px;
    }


.hero {
  
  scroll-margin-top: 70vh; 


}

.about{
  scroll-margin-top: 10vh; 
}



#menu {
  
  scroll-margin-top: 10vh; 


}



.contact-section {
  scroll-margin-top: 15vh;
}



    /* --- Navbar Styles --- */
    .nav-wrapper {
        padding: 15px 20px;
        position: relative;
        overflow: hidden;
    }

    nav {
        justify-content: space-between;
        margin: auto 7%;
    }

    .burger {
        display: block;
        cursor: pointer;
        z-index: 1000;
        margin-left: auto;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    /* Burger animation (optional, but recommended) */
    .burger.toggle div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.toggle div:nth-child(2) {
        opacity: 0;
    }
    
    .burger.toggle div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    nav ul {
        display: flex;
        position: fixed;
        right: -8%; /* Changed from -17% to 0 for correct slide-in */
        top: 0;
        height: 100vh;
        width: 70%;
        background-color: #55916c;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }
    

    
    nav ul.nav-active {
        transform: translateX(0%);
        
    }

    nav ul li {
        margin: 0px 0;
        width: 90%; /* Links take up 90% of the menu width */
        text-align: left; /* Align text to the left */
    }

    nav ul li a {
        font-size: 17px;
        color: #fff;
        padding: 10px 20px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        display: block;
        transition: background-color 0.3s ease;
    }

/* li active f nav */
nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.4); /* color li bghiti */
}


/* Remove hover effect */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0px;
  left: 0;
  bottom: -5px;
  background-color: #ffffff;
  transition: width 0.3s;
}

/* Only active page gets underline */
nav ul li a.active::after {
  width: 100%;
}





    /* Language Button Mobile Styles */
    .language-btn {
        display:none;
    }

   
    
    /* Hero Section */
    .hero {
        height: 80vh;
        padding: 20px 10px;
    }

    .hero-content {
        max-width: 90%;
        margin-top: 15%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-buttons {
      
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 10px 30px;
        font-size: 16px;
    }

    /* About Section */
    .about {
        padding: 50px 20px;
        min-height: auto;
    }

    .about-content h1 {
        font-size: 25px;
    }

    .about-content p {
        font-size: 12px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .about-images {
        /* This layout is now fixed to match your screenshot */
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
        display: flex;
        padding-bottom: 10px;
    }

    .about-images .img-a1 {
        width: 40%; /* First image width adjusted */
        height: 250px;
        object-fit: cover;
    }

    .about-images .img-a2 {
        width: 30%; /* Second image width adjusted */
        height: 250px;
        object-fit: cover;
    }

    .about-images .img-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 25%; /* Column width adjusted */
    }

    .about-images .img-column img {
        width: 100%;
        height: 120px; /* Adjusted height to fit within the space */
        object-fit: cover;
    }


    /* Menu Section */
    .menu-jaleo {
        padding: 50px 0;
    }

    .menu-title {
        font-size: 25px;
    }

    .menu-subtitle {
        font-size: 12px;
        max-width: 90%;
        margin: 0 auto 30px;
    }
    
    .menu-item-section{
        flex-direction: row;
        align-items: center;
        padding: 20px;
        gap: 15px;
    }

    .menu-image-container {
        flex: 0 0 160px; /* Slightly increased image size */
        height: 160px;
        order: 0;
    }

    .menu-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .menu-text-content {
        padding: 0;
        flex: 1;
        text-align: left;
    }

    .category-title {
        font-size: 12px; /* Decreased font size for better fit */
        margin-bottom: 10px;
    }
    
    .menu-item-row {
        font-size: 13px; /* Decreased font size */
        margin: 3px 0;
    }

    .item-name {
        font-size: 10px;
    }
    
    .item-price {
        font-size:10px; /* Decreased price font size */
    }

    .menu-extra {
        font-size: 8px; /* Decreased font size */
        padding: 6px 10px;
        margin-top: 10px;
    }



    /* Contact Section */
    .contact-section {
        padding: 40px 10px;
    }

    .contact-text-content {
        max-width: 95%;
        margin-bottom: 30px;
    }

    .contact-section .category-title {
        font-size: 25px;
    }

    .contact-section .contact-paragraph {
        font-size: 12px;
        max-width: 95%;
    }

    .map-container {
        width: 96%;
        height: auto;
        padding: 0 0px;
        margin-bottom: -10%;
    }

    .map-container iframe {
        height: 200px;
        width: 100%;
    }



/* footer */
/* ======= FOOTER ======= */
#main-footer {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  padding: 15px 10px; /* padding sghar bzzaf */
  font-family: 'Cinzel-Bold', serif;
  text-align: start;
  font-size: 10px; /* fonts ziiid sghar */
}

#main-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center; /* center horizontally */
  flex-wrap: nowrap; /* keep in one line */
  gap: 10px; /* very small gap */
}

.footer-left,
.footer-center,
.footer-right {
  flex: 0 0 auto; /* don't stretch */
  min-width: 120px; /* very small width */
  padding-bottom: 7%;
  margin-right: 5%;
}

.footer-left {
  display: none; /* hide left */
}

.footer-center h3,
.footer-right h3 {
  font-size: 13px; /* very small headings */
  margin-bottom: 5px;
}

.footer-center ul li a {
  font-size: 9px; /* very small links */
  line-height: 0.2;
}

.footer-center h3{
margin-bottom: 6%;
}

.footer-icons {
  margin-left: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 10px; /* very small gap */
  margin-left: 16%;
}

.footer-icons li a {
  font-size: 17px; /* very small icons */
  color: #000000;
  transition: transform 0.2s, color 0.2s;
}

.footer-icons li a:hover {
  color: #55916c;
  transform: scale(1.05);
}

/* ===== COPYRIGHT ===== */
.copyright {
  text-align: center;
  margin-top: 5px;
  padding-top: 5%;
  margin-bottom: 2%;
  font-size: 13px; /* very small */
  line-height: 1.2;
  border-top: 1px solid #55916c;
}

}


















@media (min-width: 706px) and (max-width: 1024px) {
  /* General Adjustments */
  body {
    font-size: 14px;
  }

  /* Scroll Margin Adjustments */
  .hero {
    scroll-margin-top: 70vh;
  }

  .about {
    scroll-margin-top: 7vh;
  }

  #menu {
    scroll-margin-top: 7vh;
  }

  .contact-section {
    scroll-margin-top: 15vh;
  }

  
  /* --- Navbar Styles --- */
  .nav-wrapper {
    padding: 15px 20px;
    position: relative;
    overflow: hidden;
  }

  nav {
    justify-content: space-between;
    margin: auto 7%;
  }

  .burger {
    display: none; /* Hide the burger menu */
  }

  nav ul {
    display: flex; /* Keep it a flex container */
    position: static; /* Remove fixed positioning */
    height: auto;
    width: auto;
    background-color: transparent; /* Transparent background */
    flex-direction: row; /* Keep it in a row */
    align-items: center;
    justify-content: flex-end; /* Align links to the right */
    transform: none; /* Remove transform */
    transition: none; /* Remove transition */
    z-index: auto;
    gap: 15px; /* Add a gap between links */
    margin-left: 19%;
  }

  nav ul li {
    margin: 0;
    width: auto;
    text-align: center;
  }

  nav ul li a {
    font-size: 12px; /* Slightly smaller font for links */
    color: #ffffff;
    padding: 5px 10px;
    background-color: transparent;
    border-radius: 0;
    display: inline-block;
  }

  /* Remove active background color for tablet */
  nav ul li a.active {
    background-color: transparent;
  }

  /* Keep the underline effect for active page */
  nav ul li a.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: #ffffff;
    transition: width 0.3s;
  }

  /* Language Button Mobile Styles */
  .language-btn {
    display: flex; /* Show the language button */
    font-size: 16px;
    padding: 5px 8px;
  }

  /* Hero Section */
  .hero {
    height: 80vh;
    padding: 20px 10px;
  }

  .hero-content {
    max-width: 90%;
    margin-top: 15%;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-buttons .btn {
    padding: 10px 30px;
    font-size: 16px;
  }

  /* About Section */
  .about {
    padding: 50px 20px;
    min-height: auto;
  }

  .about-content h1 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-images {
    padding: 0 5%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    display: flex;
    padding-bottom: 10px;
  }

  .about-images .img-a1 {
    width: 40%;
    height: 320px;
    object-fit: cover;
  }

  .about-images .img-a2 {
    width: 30%;
    height: 320px;
    object-fit: cover;
  }

  .about-images .img-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 25%;
  }

  .about-images .img-column img {
    width: 100%;
    height: 155px;
    object-fit: cover;
  }

  /* Menu Section */
  .menu-jaleo {
    padding: 50px 0;
  }

  .menu-title {
    font-size: 30px;
  }

  .menu-subtitle {
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .menu-item-section {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 15px;
        padding: 7% 7%;
  }

  .menu-image-container {
    flex: 0 0 320px; /* Doubled from 160px */
    height: 320px; /* Doubled from 160px */
    order: 0;

  }

  .menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .menu-text-content {
    padding: 0;
    flex: 1;
    text-align: left;
  }

  .category-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .menu-item-row {
    font-size: 15px;
    margin: 3px 0;
  }

  .item-name {
    font-size: 13px;
  }

  .item-price {
    font-size: 13px;
  }

  .menu-extra {
    font-size: 13px;
    padding: 6px 15px;
    margin-top: 10px;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 10px;
  }

  .contact-text-content {
    max-width: 95%;
    margin-bottom: 30px;
  }

  .contact-section .category-title {
    font-size: 30px;
  }

  .contact-section .contact-paragraph {
    font-size: 15px;
    max-width: 95%;
  }

  .map-container {
    width: 96%;
    height: auto;
    padding: 0 0px;
    margin-bottom: -10%;
  }

  .map-container iframe {
    height: 270px;
    width: 100%;
  }

  
/* footer */
#main-footer {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  padding: auto 10px;
  font-family: 'Cinzel-Bold', serif;
  text-align: start;
  font-size: 10px;
}

#main-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Changed to wrap to allow elements to stack */
  gap: 15px; /* Decreased gap */
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 100px; /* Adjusting flex-basis to allow smaller columns */
  min-width: 100px;
  padding-top: 5%;
  padding-bottom: 7%;
  margin-right: 0;
}

.footer-left {
  display: block; /* Make it visible */
  order: 1; /* Place it at the beginning */
  min-width: 100px;
}

.footer-center {
  order: 2;
  min-width: 100px;
}

.footer-right {
  order: 3;
  min-width: 100px;
}

.footer-left h3 {
  font-size: 17px; /* Smaller font size for h3 in left section */
  margin-bottom: 5px;
}

.footer-left p {
  font-size: 10px; /* Very small font for paragraph */
  line-height: 1.4;
  margin-top: 2%;
}

.footer-center h3,
.footer-right h3 {
  font-size: 17px; /* Smaller font size */
  margin-bottom: 5px;
}

.footer-center ul {
  padding-left: 0;
}

.footer-center ul li a {
  font-size: 9px; /* Smaller font size for links */
  line-height: 1.0;
}

.footer-center h3 {
  margin-bottom: 6%;
}

.footer-icons {
  margin-left: 16%;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 8px; /* Smaller gap */
  justify-content: flex-start; /* Align icons to the start */
}

.footer-icons li a {
  font-size: 18px; /* Smaller icon size */
  color: #000000;
  transition: transform 0.2s, color 0.2s;
}

.footer-icons li a:hover {
  color: #55916c;
  transform: scale(1.05);
}

/* ===== COPYRIGHT ===== */
.copyright {
  text-align: center;
  margin-top: 5px;
  padding-top: 4%;
  margin-bottom: 0%;
  font-size: 14px; /* Very small font size */
  line-height: 1.2;
  border-top: 1px solid #55916c;
}
}