/* Project Details Premium Styling */

.project-page {
    padding-top: 100px;
    background-color: var(--color-white);
}

.project-hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-soft) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.project-header {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.project-category {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.project-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.project-summary {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--color-gray);
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
}

/* Content Layout */
.project-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
    padding: 80px 0;
}

@media (max-width: 991px) {
    .project-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px 0;
    }
}

/* Visuals Column */
.project-visuals {
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .project-visuals {
        position: static;
    }
}

.visual-display {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    background: #f8f9fa;
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-display i {
    font-size: 8rem;
    opacity: 0.1;
}

.visual-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Column */
.project-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.project-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: var(--color-accent);
}

.project-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #444;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 400;
}

.feature-item i {
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-top: 2px;
}

/* Testimonial Block */
.project-testimonial {
    background: var(--color-accent-soft);
    padding: 40px;
    border-radius: 24px;
    border-left: 6px solid var(--color-accent);
    position: relative;
}

.project-testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-black);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 400;
}

.project-testimonial::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: var(--color-accent);
    opacity: 0.1;
    font-family: serif;
}

/* Navigation footer */
.project-nav {
    border-top: 1px solid #eee;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: var(--color-accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End of file */
