/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #DAC5A4;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #C5A77D;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      #C5A77D,
      #dcbf93,
      #DAC5A4,
      #C5A77D,
      #dcbf93,
      #DAC5A4,
      #C5A77D);
  background-size: 400% 100%;
  animation: moveGradient 4s linear infinite;
  border-radius: 2px;
  pointer-events: none;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 400% 50%;
  }
}

main {
  margin-top: 10px;
}

.section {
  display: none;
}

.section.active {
  display: block;
}


/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 4px;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  width: 50px;
  height: 50px;
  pointer-events: none;
}

/* Menu & Icon */
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 26px;
  width: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

nav .menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* icon changes */

nav .menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px);
}

nav .menu-toggle.active .bar:nth-child(2) {
  transform: scaleX(0);
}

nav .menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px);
}


/* Menu displaye desktop */
nav ul {
  display: flex;
  gap: 5px;
  list-style-type: none;
}

nav .nav-icon {
  width: 20px;
  height: 20px;
  align-self: center;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.0em;
  padding: 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  line-height: 1;
  border-radius: 15px;
  border: 1px solid transparent;
}

nav ul li a:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

nav ul li a:focus {
  outline: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

nav ul li a.active {
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

/* home page */

#home {
  position: relative;
  padding: 60px 20px;
  background-color: #dcc7a500;
  direction: rtl;
  text-align: center;
  overflow: hidden;
}

#home .front1 {
  position: relative;
  z-index: 1;
}

#home h1 {
  font-size: 2.1em;
  color: #000000;
  margin-bottom: 10px;
}

#home p {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 40% 15% 50% 25% / 30% 45% 25% 40%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2), 0 10px 50px rgba(0, 0, 0, 0.5);
  margin: 20px auto;
  display: block;
  animation: borderAnim 10s infinite linear;
}

@keyframes borderAnim {
  0% {
    border-radius: 40% 15% 50% 25% / 30% 45% 25% 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2), 0 10px 50px rgba(0, 0, 0, 0.5);
  }

  50% {
    border-radius: 50% 50% 30% 70% / 25% 75% 20% 80%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 6px 25px rgba(0, 0, 0, 0.3), 0 15px 60px rgba(0, 0, 0, 0.6);
  }

  100% {
    border-radius: 40% 15% 50% 25% / 30% 45% 25% 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.2), 0 10px 50px rgba(0, 0, 0, 0.5);
  }
}

.home-buttons-box {
  background-color: #dcbf93;
  border: 2px solid #C5A77D;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.home-buttons .btn {
  background-color: #DAC5A4;
  border: 3px solid #C5A77D;
  color: #000000;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px 0;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.home-buttons .btn i {
  margin-right: 12px;
  font-size: 20px;
}

.reservation-text {
  font-size: 14px;
  color: #7f8c8d;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .home-buttons-box {
    padding: 20px;
    margin: 20px 10px;
    margin-top: 60px;
  }

  .home-buttons .btn {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
  }

  .reservation-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .home-buttons-box {
    padding: 15px;
  }

  .home-buttons .btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .reservation-text {
    font-size: 10px;
  }
}

.intro {
  background-color: #dcbf93;
  padding: 40px 20px;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: solid 3px #C5A77D;
  position: relative;
  z-index: 1;
}

.intro:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.intro h2 {
  font-size: 2.4em;
  color: #000000;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.intro p {
  font-size: 1.2em;
  color: #555;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  transition: color 0.3s ease, transform 0.3s ease;
}

.intro p:hover {
  color: #333;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .intro {
    padding: 20px;
    max-width: 95%;
  }

  .intro h2 {
    font-size: 1.8em;
  }

  .intro p {
    font-size: 1em;
    max-width: 100%;
  }
}

.features {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features li {
  font-size: 1.1em;
  margin: 12px 0;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #dcbf93;
  border: 2px solid #C5A77D;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 500px;
}

.features li i {
  color: #C5A77D;
  font-size: 1.5em;
  min-width: 1.5em;
  text-align: center;
}

@media (max-width: 768px) {
  .features li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1em;
    gap: 6px;
    padding: 10px 0;
  }

  .features li i {
    font-size: 1.5em;
    margin-right: 0;
  }
}

.gallery {
  margin-top: 60px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 350px;
  height: 270px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  position: relative;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-grid {
    gap: 10px;
  }

  .gallery-grid img {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
}

.hours {
  margin-top: 60px;
  padding: 40px 20px;
  width: 400px;
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  background-color: #dcbf93;
  border: 4px solid #C5A77D;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #000000;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  position: relative;
  animation: borderRadiate 2s infinite;
}

@keyframes borderRadiate {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 161, 117, 0.8);
  }

  50% {
    box-shadow: 0 0 10px 20px rgba(194, 161, 117, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(194, 161, 117, 0.8);
  }
}

@media (max-width: 768px) {
  .hours {
    width: 90%;
    height: auto;
    padding: 20px;
    margin-top: 40px;
  }

  .hours p {
    font-size: 1em;
  }
}

.hours p {
  font-size: 1.1em;
  color: #333;
  margin: 6px 0;
}

/* ##### */

.location {
  margin-top: 60px;
  padding: 40px 25px;
  background-size: 400% 400%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #2c2c2c;
  border: 4px solid #C5A77D;
  background-color: #dcbf93;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: transform 0.3s ease;
}

.location h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #a67c52;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: text;
}

.location h2 i {
  color: #a67c52;
  font-size: 1.5em;
  animation: pulseRed 2.5s infinite ease-in-out;
}

.location p {
  font-size: 1.2em;
  color: #000000;
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  user-select: text;
}

.location p i {
  color: #a67c52;
  font-size: 1.3em;
}

@keyframes pulseRed {

  0%,
  100% {
    text-shadow: 0 0 5px #a67c52, 0 0 10px #a67c52;
  }

  50% {
    text-shadow: 0 0 20px #a67c52, 0 0 30px #a67c52;
  }
}

@media (max-width: 768px) {
  .location {
    margin-top: 40px;
    padding: 30px 15px;
    max-width: 100%;
    border-radius: 15px;
    border-width: 3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.04);
  }

  .location h2 {
    font-size: 1.6em;
    gap: 6px;
  }

  .location h2 i {
    font-size: 1.2em;
    animation: none;
  }

  .location p {
    font-size: 1em;
    gap: 6px;
    margin: 6px 0;
  }

  .location p i {
    font-size: 1.1em;
  }
}

/* end of home page */

/* start about us */

#about {
  padding: 60px 20px;
  background-color: #dcc7a5;
  direction: rtl;
  text-align: center;
}

#about h1 {
  font-size: 2.4em;
  color: #2c2c2c;
  margin-bottom: 15px;
}

#about p {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

#about h2 {
  font-size: 1.8em;
  color: #6f4e37;
  margin-top: 40px;
  margin-bottom: 15px;
}

.about-image {
  max-width: 800px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(1) contrast(1.1) saturate(1.15);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about-image:hover {
  transform: scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.about-image:hover img {
  transform: scale(1.02);
  filter: brightness(1.05) contrast(1.15);
}

/* موبایل */
@media (max-width: 480px) {
  .about-image {
    max-width: 92%;
    margin: 40px auto;
    border-radius: 14px;
  }

  .about-image img {
    border-radius: 14px;
  }
}


#about ul {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 600px;
  text-align: right;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #C5A77D;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
  overflow: hidden;
}

#about ul li {
  position: relative;
  font-size: 1.2rem;
  color: #eee;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

#about ul li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 14px;
  height: 14px;
  background: linear-gradient(45deg, #C5A77D, #ffffff);
  border-radius: 50%;
  box-shadow: 0 0 12px #C5A77D, 0 0 20px #ffffff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#about ul li:hover {
  color: #ffffff;
}

#about ul li:hover::before {
  transform: translateY(-50%) scale(1);
}

#about ul li:last-child {
  border-bottom: none;
}

@media (max-width: 480px) {
  #about ul {
    max-width: 90%;
    margin: 30px auto;
  }
  
  #about ul li {
    font-size: 1rem;
    padding: 16px 20px;
  }

  #about ul li::before {
    left: 15px;
    width: 12px;
    height: 12px;
  }
}

#about a {
  color: #a67c52;
  text-decoration: none;
  font-weight: bold;
}

#about a:hover {
  text-decoration: underline;
}

/* end of about us */

/* start contact us */

#contact {
  padding: 60px 20px;
  background-color: #dcc7a5;
  direction: rtl;
  text-align: center;
  font-family: 'Vazir', Tahoma, sans-serif;
  color: #4a4a4a;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#contact h1 {
  font-size: 2.8em;
  color: #5a3e1b;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

#contact p {
  font-size: 1.2em;
  color: #5a4a34;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.03);
}

.contact-info p {
  font-size: 1.1em;
  color: #6b5738;
  margin: 12px 0;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.contact-info a {
  color: #a67c52;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #7f5e2a;
  border-bottom: 2px solid #7f5e2a;
  text-decoration: none;
}

.social-links {
  margin: 30px 0;
}

.social-links a {
  display: inline-block;
  margin: 0 12px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #a67c52, #c5a77d);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  box-shadow: 0 6px 15px rgba(166, 124, 82, 0.4);
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a i {
  margin-left: 10px;
  font-size: 1.3em;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #C5A77D, #DAC5A4);
  box-shadow: 0 10px 25px rgba(127, 94, 42, 0.6);
  transform: translateY(-4px);
}

@media (max-width: 600px) {
  #contact {
    padding: 60px 15px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  }

  #contact h1 {
    font-size: 2em;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  #contact p {
    font-size: 1em;
    max-width: 100%;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .contact-info p {
    font-size: 1em;
    margin: 10px 0;
    padding: 0 10px;
  }

  .contact-info a {
    font-size: 1em;
  }

  .social-links {
    margin: 25px 0;
  }

  .social-links a {
    margin: 8px 8px;
    padding: 10px 16px;
    font-size: 1em;
    border-radius: 10px;
  }

  .social-links a i {
    font-size: 1.1em;
    margin-left: 8px;
  }
}

/* end of contact us */

/* start service */

#services {
  padding: 60px 20px;
  background-color: #dcc7a5;
  direction: rtl;
  text-align: center;
}

#services h1 {
  font-size: 2.4em;
  color: #2c2c2c;
  margin-bottom: 15px;
}

#services p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background-color: #C5A77D;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 4px solid #dcbf93;
}

.service-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.service-item h2 {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1em;
  color: #444;
  line-height: 1.6;
  flex-grow: 1;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* end service */

/* start menu */

/* 
  position: relative;
  z-index: 1;
*/

#menu {
  padding: 60px 20px;
  background-color: #dcc7a5;
  text-align: center;
  direction: rtl;
}

#menu h1 {
  font-size: 2.4em;
  color: #2c2c2c;
  margin-bottom: 15px;
}

#menu p {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

/* .menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.menu-tabs .tab-button {
  background-color: #f5e1d9;
  color: #000000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #000;
}

.menu-tabs .tab-button.active,
.menu-tabs .tab-button:hover {
  background-color: #C5A77D;
  color: #000000;
} */

.menu-tabs {
  position: sticky;
  top: 80px;
  z-index: 998;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  background: rgba(197, 167, 125, 0.6);
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(197, 167, 125, 0.3);
  border: 3px solid #000;
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-tabs .tab-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f5e1d9;
  color: #4b3b2b;
  border: 2px solid transparent;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1em;
  cursor: pointer;
  transition: 
    background-color 0.35s ease, 
    color 0.35s ease, 
    box-shadow 0.35s ease, 
    transform 0.25s ease;
  font-weight: 600;
  box-shadow: inset 0 0 0 0 transparent;
}

.menu-tabs .tab-button i {
  font-size: 1.1em;
}

.menu-tabs .tab-button:hover {
  background-color: #c5a77d;
  color: #fff;
  box-shadow: 0 4px 10px rgba(197, 167, 125, 0.6);
  transform: translateY(-3px);
  border-color: #b08b56;
}

.menu-tabs .tab-button.active {
  background-color: #b08b56;
  color: #fff;
  box-shadow: 0 6px 15px rgba(176, 139, 86, 0.9);
  border-color: #8c6a34;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px;
    gap: 8px;
    border-radius: 20px;
    box-shadow: none;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs .tab-button {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 0.9em;
    border-radius: 25px;
  }

  .menu-tabs .tab-button i {
    font-size: 1em;
  }
}

/* aaaaa */

.menu-content {
  max-width: 1200px;
  margin: auto;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.menu-item {
  background: linear-gradient(45deg, #c5a77d, #d8c9a8);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: #000000 solid 4px;
}

.menu-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #000;
}

.menu-item h3 {
  font-size: 1.25em;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;

  padding-bottom: 6px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);

  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}


.menu-item .price {
  font-size: 1.1em;
  color: #168400 !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.menu-item .price i {
  font-size: 1.1em;
  background: #303030;
  color: #0d7a00;
  padding: 8px 8px;
  border-radius: 50px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.07);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* end menu */

/* mobile */
@media (max-width: 1080px) {
  .container {
    flex-direction: row-reverse;
    text-align: center;
  }

  .logo {
    order: -1;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  nav ul.nav-list {
    background-color: #C5A77D;
    margin-top: 60px;
    padding: 10px;
  }

  nav ul {
    position: fixed;
    top: 10px;
    right: 10px;
    left: auto;
    background-color: #000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 1px 1px;
    border-radius: 10px;
  }

  nav ul.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav ul li a {
    font-size: 1.0em;
    padding: 8px 8px;
    width: 100%;
  }

  nav .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  /* home page */

  .gallery-grid {
    flex-direction: column;
    align-items: center;
  }

  .home-buttons .btn {
    display: block;
    margin: 10px auto;
  }

  /* end of home page */

  /* menu page */

  #menu h1 {
    font-size: 2em;
  }

  .menu-tabs {
    gap: 5px;
  }

  .menu-tabs .tab-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  /* end of menu page */

  /* service page */

  #services h1 {
    font-size: 2em;
  }

  .service-item {
    padding: 15px;
  }

  .service-item img {
    width: 50px;
    height: 50px;
  }

  /* end of service page */

  /* about us  */

  #about h1 {
    font-size: 2em;
  }

  #about h2 {
    font-size: 1.5em;
  }

  #about p {
    font-size: 1em;
  }

  /* end of about us  */
}

.footer {
  background: linear-gradient(135deg, #C5A77D, #C5A77D);
  color: white;
  padding: 60px 20px;
  font-family: 'Roboto', sans-serif;
  text-align: right;
  border-top: 4px solid #000;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ##### */

.footer-logo {
  width: 160px;
  max-width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px #a67c52);
  transition: filter 0.3s ease;
}

.footer-column:hover .footer-logo {
  filter: drop-shadow(0 0 12px #a67c52);
}

.footer-description {
  font-size: 15px;
  color: #000000;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.6);
  user-select: text;
  margin: 0;
}


/* ##### */

.footer-column {
  border: 4px solid #DAC5A4;
  background-color: #dcbf93;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.7);
  max-width: 250px;
  color: #000000;
  font-family: 'Vazir', Tahoma, sans-serif;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  user-select: none;
}

.footer-column2 {
  border: 4px solid #DAC5A4;
  background-color: #dcbf93;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.7);
  max-width: 250px;
  color: #000000;
  font-family: 'Vazir', Tahoma, sans-serif;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  user-select: none;
  text-align: center;
}

.footer-column:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgb(255, 255, 255);
}

.footer-column2:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgb(255, 255, 255);
}

.footer-column h3 {
  font-size: 15px;
  color: #a67c52;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: text;
}

.footer-column h3 i {
  font-size: 30px;
  animation: pulseRed 2.5s infinite ease-in-out;
  color: #a67c52;
}

@keyframes pulseRed {

  0%,
  100% {
    text-shadow: 0 0 5px #a67c52, 0 0 10px #a67c52;
  }

  50% {
    text-shadow: 0 0 20px #a67c52, 0 0 30px #a67c52;
  }
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 18px 0;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
  user-select: text;
}

.footer-column ul li i {
  color: #a67c52;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.footer-column ul li:hover {
  transform: translateX(8px);
}

.footer-column ul li:hover i {
  color: #a67c52;
  transform: scale(1.3) rotate(15deg);
}

.footer-column a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  user-select: text;
}

.footer-column a:hover {
  color: #a67c52;
  text-shadow: 0 0 8px #a67c52;
}

.footer-column2 p {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  user-select: text;
}

.footer-column2 p:hover {
  color: #a67c52;
  text-shadow: 0 0 8px #a67c52;
}

/* ##### */

.social-link2s {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-link2s a {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 30px;
  background-color: #F7E3C3;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-out;
  cursor: pointer;
  text-decoration: none;
}

.social-link2s a i {
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link2s a:hover {
  color: #000000;
  transform: translateY(-6px) rotate(10deg);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  animation: glowing 1.5s infinite alternate;
}

.social-link2s a:hover i {
  transform: scale(1.3) rotate(360deg);
  color: #fff;
}

.social-link2s a:focus-visible {
  outline: 3px solid #a67c52;
  outline-offset: 3px;
}

@keyframes glowing {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.5);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.3);
  }
}

/* ##### */

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #ffffff;
}

.footer-bottom a {
  color: #a67c52;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  transition: all 0.4s ease-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #fff;
  background-color: #a67c52;
  text-decoration: none;
  transform: translateY(-5px) rotate(3deg);
  box-shadow: 0 0 20px rgb(255, 255, 255);
}

.footer-bottom a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease-out;
  transform: translate(-50%, -50%);
}

.footer-bottom a:hover::before {
  width: 100%;
}

.footer-bottom a:hover {
  animation: glow 0.5s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 25px rgb(255, 255, 255);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  }
}

/* ##### */

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 100%;
  }

  .footer-column {
    max-width: 100%;
    width: 100%;
    padding: 20px 15px;
    box-shadow: none;
    border-radius: 10px;
    transform: none !important;
    cursor: default;
  }

  .footer-column:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .footer-column2 {
    max-width: 100% !important;
    width: 100% !important;
    padding: 20px 15px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transform: none !important;
    cursor: default !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .footer-description {
    text-align: center !important;
  }


  .footer-column2:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .footer-column h3 {
    font-size: 20px;
    justify-content: center;
  }

  .footer-column ul li {
    font-size: 16px;
    justify-content: center;
  }

  .footer-column ul li:hover {
    transform: none;
  }

  .footer-column ul li i {
    font-size: 20px;
  }

  .footer-logo {
    width: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px #a67c52);
  }

  .social-link2s {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .social-link2s a {
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 25px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 40px;
  }

  .footer-bottom a {
    font-size: 16px;
    padding: 4px 12px;
  }

  .menu-item {
    background-color: #C5A77D;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: #000000 solid 4px;
  }
}