/* Dark Mode Professional Theme */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #d6dadfe3;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}
.header.container {
  /* max-width: 1303px; */
  min-height: 8vh;
  width:97.1%;
  margin: 0 auto;
  padding: 0px 20px;
  transition: 0.3s ease background-color;
  background-color: #29323c ; 
}


.nav-bar {
  /* width:100%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 10px;
}


.brand h1 {
  color: white;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 7.5px;
}
.brand a{
  text-decoration: none;
}
.brand h1 span {
  color: crimson;
}

/* Nav List Styling */
.nav-list ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-top: -5px;
}

.nav-list ul li {
  position: relative;
  text-decoration: none;
  list-style: none;
}
.nav-list ul li a{
  font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
  text-decoration: none;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-size: 26px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: crimson;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list ul {
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }
}


/* Header Section */
.project_header {
    background: url(../assets/resturant.png) no-repeat center center/cover;
    border-radius: 12px;
    text-align: center;
    position: relative;
    width: 85%;
    height: 380px;
    margin: 20px auto;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}
.slogan {
  font-size: 2.4rem;
  font-weight: 800;
  color:crimson;
  -webkit-text-stroke: 0.3px ;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.4;
  padding-top: 40px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.view-project-button {
    position: absolute;
    bottom: 42%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: linear-gradient(45deg, crimson, crimson);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-project-button:hover {
    background: linear-gradient(45deg, crimson, crimson);
    transform: translateX(-50%) scale(1.05);
}

/* Overview Section */
.p_overview_container {
    display: flex;
    justify-content: space-between;
    background:linear-gradient(60deg,#29323c 0%, #485563 100%);;
    width: 90%;
    margin: 50px auto;
    padding: 50px 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Left and Right Image Sections */
.p_leftItem, .p_rightItem {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 310px !important;
}

.p_leftImage, .p_rightImage {
    width: 230px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p_leftImage:hover, .p_rightImage:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Center Content */
.p_centerItem {
    width: 55%;
    padding: 20px;
}

.p_centerItem h5 {
    color: crimson;
    font-size: 22px;
    border-bottom: 3px solid crimson;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.p_centerItem p {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    color: #c4c4c4;
}
.bottomImg {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    margin: -30px 0px;
    background:transparent;
    margin-bottom:40px;
    padding-bottom: 40px;
    
}
.bottomImg img {
    height: 70%;
    width: 70%;
}



/* Responsive */
@media (max-width: 768px) {
    .p_overview_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .p_leftItem, .p_rightItem {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .p_leftImage, .p_rightImage {
        width: 180px;
        height: auto;
    }

    .p_centerItem {
        width: 90%;
    }
}
/* RESPONSIVE WITHOUT CHANGING DESIGN STRUCTURE */

/* Tablets */
@media (max-width: 1024px) {
    .project_header {
      width: 95%;
      height: 320px;
    }
  
    .slogan {
      font-size: 2rem;
      padding-top: 30px;
    }
  
    .view-project-button {
      font-size: 16px;
      padding: 10px 20px;
    }
    .p_overview_container {
        width: 95%; 
    }
    .p_leftImage, .p_rightImage {
      width: 200px;
      height: auto;
    }
  
    .p_centerItem {
      padding: 15px;
    }
  
    .p_centerItem p {
      font-size: 16px;
      line-height: 26px;
    }
  }
  
  /* Phones */
  @media (max-width: 768px) {
    .project_header {
      height: 280px;
    }
  
    .slogan {
      font-size: 1.6rem;
      padding-top: 25px;
      -webkit-text-stroke: 0.2px crimson;
    }
    .p_overview_container {
        width: 95%; 
    }
    .view-project-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  
    .p_overview_container {
      padding: 30px 15px;
      gap: 40px;
    }
  
    .p_leftItem, .p_rightItem {
      gap: 120px !important;
    }
  
    .p_leftImage, .p_rightImage {
      width: 160px;
      height: 240px;
    }
  
    .p_centerItem h5 {
      font-size: 18px;
    }
  
    .p_centerItem p {
      font-size: 14px;
      line-height: 24px;
    }
  
    .bottomImg img {
      width: 90%;
    }
  }

  
  
  /* Small Phones */
  @media (max-width: 480px) {
    .project_header {
      height: 240px;
    }
  
    .slogan {
      font-size: 1.4rem;
      padding-top: 20px;
      letter-spacing: 0.5px;
    }
  
    .view-project-button {
      font-size: 13px;
      padding: 7px 14px;
    }
  
    .p_leftImage, .p_rightImage {
      width: 140px;
      height: auto;
    }
    .p_overview_container {
        width: 95%; 
    }
  
    .p_centerItem p {
      font-size: 13px;
    }
  }
  