/* General container */
.lt-project-details {
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #222;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    max-width: 1200px;
    margin: 40px auto;
}

/* Header */
.lt-pd-header {
    border-bottom: 2px solid #f2f2f2;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.lt-pd-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00509e;
    margin: 0;
}
.lt-pd-meta {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.lt-pd-meta span {
    background: #f7f9fc;
    padding: 4px 10px;
    border-radius: 6px;
}
.lt-pd-status {
    background: #00509e;
    color: #fff !important;
    font-weight: 600;
}

/* Layout: Main & Sidebar */
.lt-pd-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
@media (max-width: 900px) {
    .lt-pd-content {
        grid-template-columns: 1fr;
    }
}

/* Main content section */
.lt-pd-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Gallery styling */
.lt-pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.lt-pd-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.lt-pd-main-image:hover {
    transform: scale(1.02);
}
.lt-pd-image-caption {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 5px;
}
.lt-pd-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.lt-pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    transition: all 0.3s ease;
}
.lt-pd-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px #00509e33;
}

/* Description & remarks */
.lt-pd-description, .lt-pd-remarks {
    background: #f9fafb;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid #00509e;
}
.lt-pd-description h2, .lt-pd-remarks h2 {
    margin-top: 0;
    color: #00509e;
}

/* Sidebar */
.lt-pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lt-pd-card {
    background: #f7f9fc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.lt-pd-card h3 {
    margin-top: 0;
    color: #00509e;
    font-size: 1.1rem;
    border-bottom: 2px solid #e4e9f1;
    padding-bottom: 6px;
}
.lt-pd-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.95rem;
}
.lt-pd-info-grid div strong {
    color: #333;
}

/* Mini map */
#lt-pd-mini-map {
    width: 100%;
    height: 220px;
    margin-top: 12px;
    border-radius: 10px;
    background: #ddd;
    overflow: hidden;
}

/* Error message */
.lt-error {
    color: #c00;
    font-weight: bold;
    background: #fee;
    padding: 10px 15px;
    border-radius: 8px;
}
