body{
    margin: 0;
}
*{
    font-family: "BYeKan"; 
    box-sizing: border-box;
}

@font-face {
  font-family: "BYeKan";
  src: url("BYekan/BYekan.eot") format("eot");
  src: url("BYekan/BYekan.ttf") format("tff");
  src: url("BYekan/BYekan.woff") format("woff");
}



/* 
header{
    display: flex;
    padding-inline: 5%;
    justify-content: space-between;
    align-items: center;
    background-color: #e4d5a2;
    width: 100%;
}

.menu-logo-container{
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu{
    display: flex;
    flex-direction: row;
    gap: 20px;
    direction: rtl;
}

.main-menu li{
    list-style: none;
}

.main-menu a{
    text-decoration: none;
    color: #63666A;
    padding: 5px;
    font-size: 16px;
}

.main-menu a:hover{
    text-decoration: underline black;
} */

.phone-number-container button{
    border: none;
    background-color: #F0E68C;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #222;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.phone-number-container button:hover{
    background-color: #dac508;
}


.projects-intro {
  background: linear-gradient(to bottom right, #f5f0e6, #e4d5a2);
  padding: 100px 20px;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.projects-intro h2 {
  font-size: 2.5rem;
  color: #a89a6d;
  margin-bottom: 25px;
}

.projects-intro p {
  font-size: 1.2rem;
  color: #333;
  line-height: 2;
  margin-bottom: 30px;
}

.design-styles {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.design-styles span {
  background-color: #f0e68c;
  color: #4e442b;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.cta-button {
  display: inline-block;
  background-color: #a89a6d;
  color: white;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #8c7b54;
}


.projects-gallery {
  background-color: #f5f0e6;
  padding: 100px 20px;
  text-align: center;
}

.gallery-container h2 {
  font-size: 2.5rem;
  color: #a89a6d;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  text-align: right;
}

.project-info h3 {
  color: #a89a6d;
  margin-bottom: 10px;
}

.project-info p {
  color: #333;
  margin-bottom: 8px;
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination button {
  background-color: #e4d5a2;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  color: #4e442b;
  transition: background-color 0.3s ease;
}

.pagination button.active,
.pagination button:hover {
  background-color: #d1c08f;
}


footer{
    background-color:#e4d5a2;
    display: flex;
    flex-direction: column;
    padding-inline: 5%;
}

.footer-info-box{
    display: flex;
    direction: rtl;
    padding-block: 5% 3%;
}

.footer-info-box h4{
    font-size: 25px;
}

.footer-about p{
    color: #3b3b3b;
}

.footer-about-logo{
    display: flex;
}

.footer-links a{
    color: #3b3b3b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: #816e02;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social{
    width: 100%;
    padding: 2%;
}

.footer-contact p{
    color: #3b3b3b;
}

.footer-social a{
    font-size: 30px;
    margin-left: 10px;
    color: #3b3b3b;
    transition: color 0.3s ease;
}

.footer-social a:hover{
    color: #816e02;
}

.footer-legal-box{
    border-top: 2px solid darkgray;
}

.footer-legal-box p{
    margin: 0;
    text-align: center;
    padding-block:3% 1%;
}

footer:not(:first-of-type) {
    display: none !important;
}



@media (max-width: 768px) {
  .main-menu {
      flex-direction: column;
      gap: 15px;
      text-align: right;
  }

  .projects-intro {
    padding: 60px 15px;
  }
  
  .intro-content {
    padding: 25px;
  }
  
  .projects-intro h2 {
    font-size: 2rem;
  }
  
  .projects-intro p {
    font-size: 1rem;
  }
  
  .design-styles {
    gap: 10px;
  }
  
  .projects-gallery {
    padding: 60px 15px;
  }
  
  .gallery-container h2 {
    font-size: 2rem;
  }
  
  .gallery-grid {
    gap: 25px;
  }
  
  .footer-info-box {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-info-box {
    flex-wrap: wrap;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    width: 50%;
  }
}