/* Single Project Template Styles */
.ce-single-project-page{
	padding-top: 0 !important;
}

/* Hero Section */
.ce-project-hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
	padding-bottom: 60px;
}

.ce-project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.ce-hero-content {
    position: relative;
    z-index: 9;
}

.ce-hero-title {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: left;
    max-width: 1200px;
}

/* Meta Bar */
.ce-project-meta-bar {
	
	position: relative;
    z-index: 3;
}

.ce-meta-grid {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.ce-meta-item {
    display: flex;
    flex-direction: column;
}

.ce-meta-label {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.ce-meta-value {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

/* Body Content */
.ce-project-body {
    padding: 100px 0;
}
.mt-layout-row h2 {
  font-size: 40px !important;
}
.mt-layout-row .mt-content {
  font-size: 20px !important;
  line-height: 1.5 !important;
  color: #111111 !important;
}
/* Smart Layout Rows */
.mt-layout-row {
    margin-bottom: 60px;
}

.mt-layout-row h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mt-content {
    font-size: 18px;
    color: #4a4a4a;
}

.mt-grid {
    display: grid;
    gap: 20px !important;
    margin-top: 40px;
}

.mt-grid-s1 { grid-template-columns: 1fr 1fr; }
.mt-grid-s2 { grid-template-columns: 1.5fr 1fr; }
.mt-grid-s3 { grid-template-columns: 1fr 1.5fr; }

.mt-gallery-2 { grid-template-columns: repeat(2, 1fr); }
.mt-gallery-3 { grid-template-columns: repeat(3, 1fr); }
.mt-gallery-4 { grid-template-columns: repeat(4, 1fr); }

.mt-single-img img, 
.mt-col img, 
.mt-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px !important;
}

/* Responsive */
@media (max-width: 991px) {
    .ce-hero-title { font-size: 48px; }
    .ce-meta-grid { gap: 40px; }
    .mt-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 767px) {
    .ce-hero-title { font-size: 36px; }
    .ce-project-hero { height: 70vh; }
    .ce-meta-grid { display: grid; grid-template-columns: 1fr 1fr; }
}
