/* ========================================
   PROJECT PAGES STYLING
   For individual project showcase pages
   ======================================== */

/* Project Hero Section */
.project-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.project-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.project-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.5);
    z-index: 2;
}

.project-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.project-hero .hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.project-hero .hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--gold-primary);
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Project Main Content */
.project-content {
    position: relative;
    background: var(--bg-dark);
    padding: 80px 0;
    z-index: 10;
}

.project-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.project-section h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold-primary);
}

.project-section h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--gold-primary);
    margin: 40px 0 20px;
}

.project-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Project Highlights Box */
.project-highlights {
    background: var(--bg-card);
    border-left: 4px solid var(--gold-primary);
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.project-highlights h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.project-highlights ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.project-highlights ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Project Gallery Grid */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.project-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-hero {
        height: 50vh;
        min-height: 400px;
    }

    .project-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .project-hero .hero-content .subtitle {
        font-size: 1.1rem;
    }

    .project-content {
        padding: 60px 0;
    }

    .project-section h2 {
        font-size: 2rem;
    }

    .project-section h3 {
        font-size: 1.6rem;
    }

    .project-section p {
        font-size: 1rem;
    }
}
