/* ===================================================== */
/* PROJECT HEADER */
/* ===================================================== */

.project-header{
  padding:60px 8% 40px;
  max-width:2000px;
  margin:0 auto;
}

.breadcrumb{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:30px;
  font-size:0.9rem;
  color:#aaa;
}

.breadcrumb a{
  color:#7a9812;
  text-decoration:none;
  transition:0.3s;
}

.breadcrumb a:hover{
  color:#fff;
}

.project-title-section{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  margin-bottom:30px;
}

.title-content h1{
  font-size:3rem;
  margin-bottom:15px;
}

.project-type{
  display:inline-block;
  background:#7a9812;
  padding:8px 16px;
  border-radius:20px;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:15px;
}

.project-meta-info{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  color:#ddd;
}

.meta-item{
  display:flex;
  align-items:center;
  gap:8px;
}

.meta-item i{
  color:#7a9812;
}

/* ===================================================== */
/* COVER IMAGE */
/* ===================================================== */

.cover-section{
  padding:0 8% 60px;
  max-width:2000px;
  margin:0 auto;
}

.cover-image{
  width:100%;
  height: 700px;;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1d1d1d;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

/* ===================================================== */
/* MAIN CONTENT */
/* ===================================================== */

.main-content{
  padding:0 8% 60px;
  max-width:2000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 350px;
  gap:50px;
}

/* LEFT COLUMN */

.content-left{
  min-width:0;
}

.description-section{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:40px;
  margin-bottom:40px;
}

.description-section h2{
  font-size:2rem;
  margin-bottom:20px;
}

.description-section p{
  color:#ddd;
  line-height:1.8;
  margin-bottom:15px;
}

.features-section{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:40px;
  margin-bottom:40px;
}

.features-section h2{
  font-size:2rem;
  margin-bottom:25px;
}

.features-list{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
}

.feature-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.feature-item i{
  color:#32a852;
  font-size:1.2rem;
  margin-top:3px;
}

.feature-item span{
  color:#ddd;
  line-height:1.6;
}

/* RIGHT SIDEBAR */

.content-right{
  position:sticky;
  top:120px;
  align-self:flex-start;
}

.info-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  padding:30px;
  margin-bottom:20px;
}

.info-card h3{
  font-size:1.3rem;
  margin-bottom:20px;
}

.version-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:25px;
}

.version-badge{
  padding:8px 16px;
  background:rgba(122, 152, 18,0.2);
  border:1px solid rgba(122, 152, 18,0.4);
  border-radius:20px;
  font-size:0.9rem;
  font-weight:600;
}

.version-badge.active{
  background:#7a9812;
  border-color:#7a9812;
}

.download-section h4{
  margin-bottom:15px;
  color:#ddd;
}

.download-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.download-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:0.3s;
}

.download-btn:hover{
  background:#7a9812;
  border-color:#7a9812;
  transform:translateX(5px);
}

.download-btn i{
  font-size:1.2rem;
}

.stats-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.stat-item{
  text-align:center;
}

.stat-value{
  font-size:1.8rem;
  font-weight:700;
  color:#7a9812;
  margin-bottom:5px;
}

.stat-label{
  font-size:0.85rem;
  color:#aaa;
}

/* ===================================================== */
/* VIDEO SECTION */
/* ===================================================== */

.video-section{
  padding:0 8% 60px;
  max-width:2000px;
  margin:0 auto;
}

.section-title{
  font-size:2.2rem;
  margin-bottom:30px;
  text-align:center;
}

.video-container{
  position:relative;
  width:100%;
  max-width:2000px;
  margin:0 auto;
  padding-bottom:50.625%; /* 16:9 aspect ratio */
  height:0;
  overflow:hidden;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.video-container iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:none;
}

/* ===================================================== */
/* GALLERY SECTION */
/* ===================================================== */

.gallery-section{
  padding:0 8% 80px;
  max-width:2000px;
  margin:0 auto;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:20px;
}

.gallery-item{
  position:relative;
  height:250px;
  background-size:cover;
  background-position:center;
  border-radius:15px;
  border:1px solid rgba(255,255,255,0.1);
  overflow:hidden;
  cursor:pointer;
  transition:0.3s;
}

.gallery-item:hover{
  transform:scale(1.02);
  box-shadow:0 10px 40px rgba(122, 152, 18,0.3);
}

.gallery-item::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.3);
  opacity:0;
  transition:0.3s;
}

.gallery-item:hover::after{
  opacity:1;
}

/* ===================================================== */
/* LIGHTBOX */
/* ===================================================== */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:3000;
  padding:20px;
}

.lightbox.active{
  display:flex;
}

.lightbox-content{
  max-width:90%;
  max-height:90vh;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:30px;
  right:30px;
  font-size:2.5rem;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.lightbox-close:hover{
  color:#7a9812;
  transform:rotate(90deg);
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1024px){
  .main-content{
    grid-template-columns:1fr;
    gap:40px;
  }

  .content-right{
    position:static;
  }
}

@media(max-width:768px){
  .project-header{
    padding:40px 5%;
  }

  .project-title-section{
    flex-direction:column;
  }

  .title-content h1{
    font-size:2rem;
  }

  .cover-section{
    padding:0 5% 40px;
  }

  .cover-image{
    height:300px;
  }

  .main-content{
    padding:0 5% 40px;
  }

  .description-section,
  .features-section,
  .info-card{
    padding:25px;
  }

  .features-list{
    grid-template-columns:1fr;
  }

  .stats-card{
    grid-template-columns:1fr 1fr;
  }

  .video-section,
  .gallery-section{
    padding:0 5% 40px;
  }

  .section-title{
    font-size:1.8rem;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }
}

.description-section img{
  max-width: 100%;
  height: auto;
}
