@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');


.ss01 {
  -moz-font-feature-settings: "ss01";
  -webkit-font-feature-settings: "ss01";
  font-feature-settings: "ss01";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  direction: rtl;
  font-size: 18px;
}

body {
  font-family: IRANSans;
  background-color: #ecf0f0;
}

a { 
  color: inherit;
  text-decoration: none;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-family: IRANSansB;
  font-size: 18px;
}


.container {
  padding: 20px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 20px;
}



.navbar .brand p {
  font-size: 24px;
  font-family: IRANSansB;
  margin-bottom: 0;
}

.navbar .menu ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.navbar .menu li a {
  text-decoration: none;
  list-style: none;
  font-family: IRANSansB;
}

#intro{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

}

#intro .left{
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 30px;
  width: 50%;
  height: 700px;
  background-image: url(/static/img/dishes.webp);
  border-radius: 20px;
  object-fit: contain;
  
}

#intro .right {
  position: relative; /* important for absolute positioning */
  display: flex;
  flex-direction: column;
  padding: 30px;
  width: 50%;
  height: 700px;
  background-color: #0c1e21;
  border-radius: 20px;
  color: #fff;
  overflow: hidden; /* hide overflowing img */
  justify-content: start;
}

.right .content{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 60px
}

.right h1{
  font-size: 24px;
  font-family: IRANSansB;
  margin-bottom: 40px;
  color: #fff;
  
}

.right p{
  font-size: 16px;
  font-family: IRANSans;
  color: #fff;
}

.right .up p{
  font-size: 12px;
  font-family: IRANSans;
  color: #fff;
  margin-top: 50px;
}

/* bokeh circle */
#intro .right .blur::before {
  content: "";
  position: absolute;
  top: 5%;
  inset-inline-end: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  
  /* glowing circle */
  background: rgba(30, 138, 138, 0.4);
  filter: blur(80px); /* big blur creates glow effect */
  
  z-index: 1; /* sits below text */
}

#intro .right img {
  position: absolute;
  inset: 0; /* shorthand for top:0; left:0; right:0; bottom:0 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* image covers the box */
  z-index: 1; /* stays below text */
  pointer-events: none; /* so image doesn’t block clicks */
}

#service{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

#service .title{
  font-family: IRANSansB;
  margin-top: 50px;
  font-size: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 25px;
  padding: 40px;
  margin: 20px;
  justify-items: center; /* Center the cards */
  border-radius: 15px;
  font-family: 'IRANSans';
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  height: 200px;
  gap: 30px;
  padding: 20px;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;

}

.cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card h3 {
  font-family: IRANSansB;
  font-size: 18px;
}
.card p{
  font-family: IRANSans;
  font-size: 14px;
}

#about {
  text-align: center;
  padding: 40px 20px;
}

#about h2 {
  margin-bottom: 30px;
  font-family: IRANSansB;
  font-size: 24px;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}

.about-list li {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.about-list li i {
  font-size: 40px;
  color: #d06254;
  margin-bottom: 15px;
  display: block;
}

.about-list li p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}




.tabs-section h2 {
  margin-bottom: 30px;
  font-family: IRANSansB;
  font-size: 24px;
  text-align: center;
}

.tabs-section ol {
  padding: 0 20px;
  margin-bottom: 10px;
}

.tabs-section ol li i{
  margin-left: 20px;
}

.tabs-section li {

  margin-bottom: 20px;
  gap: 15px;
  
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.tab-btn {
  padding: 10px 20px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 8px;
  font-family: IRANSansB;
}
.tab-btn.active {
  background: #0c1e21;
  color: #fff;
}
.tab-content {
  display: none;
  background-color: #0c1e21;
  color: #fff;
  padding: 40px 20px;
  font-family: IRANSans;
  border-radius: 20px;
}
.tab-content.active {
  display: block;
}

.tab-content h3 {
  font-family: IRANSansB;
  margin-bottom: 10px;
  font-size: 16px;
}

.tab-content p {
  font-family: IRANSans;
  margin-bottom: 20px;
  font-size: 14px;
  margin-right: 10px;
}

/* Special case: steps tab should be flex */
#steps.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#steps .contact {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: auto;
  background-color: #ffffff20;
  padding: 20px;
  border-radius: 20px;
  justify-content: start;
}

.contact .info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact .info i{
  margin-left: 10px;
}



#summary{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 200px;
  gap: 30px;
  padding: 20px;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 40px 0
}

#summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}



footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
  padding: 15px 0;
}

#contact {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
}




#contact .contact {
  display: flex;
  width:100%;
  height: auto;
  background-color: #fff;
  box-shadow: #09917a 0px 5px 15px;
  padding: 30px;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: IRANSans;
}

#contact .contact .address{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  font-family: IRANSans;
}

#contact .contact i{
  margin-left: 10px;
}
#contact .contact p{
  font-size: 14px;
}


#contact .nop {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
  cursor: default;
}

  

/* Desktop: hide hamburger */
.hamburger {
  display: none;
}


.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp i {
  font-size: 30px;
  line-height: 1;
}

.whatsapp:hover {
  background: #1ebe5d;
}







/* Pulse */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}




@media screen and (max-width: 992px) {

  /* General */
  * {
    font-size: 16px;
  }

  h1{
    line-height: 1.5;
  }

  h2 {
    font-size: 18px;
  }

  .container {
    padding: 15px;
  }

.navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide menu initially */
  .navbar .menu {
    display: none;
    width: 100%;
  }

  .navbar .menu ul {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    text-align: center;
  }

  /* Hamburger button */
  .navbar .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
  }

  /* When menu is active */
  .navbar .menu.active {
    display: flex;
    justify-content: center;
  }





  /* Intro Section */
  #intro {
    flex-direction: column-reverse;
    height: auto;
  }

  #intro .left{
  display: none;
  }

  #intro .right {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  #intro .right {
    text-align: center;
  }

  .right .content {
    gap: 30px;
    padding: 15px;
  }

  .right h1 {
    font-size: 20px;
  }

  .right p {
    font-size: 14px;
  }

  /* Service Cards */
  .cards {
    grid-template-columns: 1fr; /* Single column on mobile */
    padding: 20px;
    margin: 10px;
  }

  .card {
    max-width: 100%;
    height: auto;
  }

  /* About Section */
  .about-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-list li {
    text-align: center;
  }

  .about-list li i {
    font-size: 30px;
  }

  /* Tabs Section */
  .tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .tab-content {
    padding: 20px;
  }

  #steps.active {
    flex-direction: column;
    gap: 20px;
  }

  #steps .contact {
    width: 100%;
  }

  /* Summary */
  #summary {
    height: auto;
    margin: 20px 0;
    gap: 15px;
    padding: 20px;
  }

  /* Contact Section */
  #contact {
    margin: 20px 0;
  }

  #contact .contact {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  #contact .contact .address {
    align-items: center;
    margin-top: 10px;
  }

  #contact .contact p {
    font-size: 13px;
  }

  footer {
    font-size: 12px;
    padding: 10px 0;
  }
}
