
/* Section Styles */
.section {padding: 7rem 0;}

/* Page Hero */
.page-hero {padding: 150px 0 80px;background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);position: relative;overflow: hidden;}
.page-hero::before {content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;pointer-events: none;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 62, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 62, 0, 0.05) 0%, transparent 50%);
}
.page-hero-content {text-align: center;max-width: 800px;margin: 0 auto;position: relative;z-index: 2;}
.about-badge {display: inline-block;background: linear-gradient(135deg, var(--accent), var(--accent-light));color: white;padding: 0.5rem 1.5rem;border-radius: 20px;font-size: 0.9rem;font-weight: 600;margin-bottom: 1.5rem;box-shadow: 0 4px 12px rgba(255, 62, 0, 0.2);}
.page-hero h1 {font-size: 3.5rem;font-weight: 700;margin-bottom: 1.5rem;line-height: 1.2;background: linear-gradient(135deg, var(--primary), #444);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;}
.page-hero .lead {font-size: 1.3rem;color: #555;line-height: 1.7;margin-bottom: 2rem;font-weight: 500;}

/*Breadcrumb (Inside Page Only) */
.breadcrumb {font-size: 0.95rem;margin-bottom: 1.8rem;display: flex;align-items: center;gap: 0.4rem;color: var(--gray-600);}
.breadcrumb a {text-decoration: none;color: var(--primary);font-weight: 500;transition: color 0.3s ease;}
.breadcrumb a:hover {color: var(--accent);}
.breadcrumb span {color: var(--gray-500);margin: 0 4px;opacity: 0.7;}
.breadcrumb a.active {color: var(--accent);pointer-events: none;}

/* Improve spacing for inner pages */
.section.section-alt {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Adjust inside page title */
.section-header {
    text-align: center;
    margin-top: 1rem;
}

.section-header .section-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* Optional – inside page hero separator */
.section-alt {
    border-top: 1px solid rgba(0,0,0,0.06);
}




/* ==============================
   Project Details Section
   ============================== */
.project-details {
    padding: 4rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.details-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.details-left p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0 2rem;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
}

.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Tech stack pills (same style as portfolio tags) */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tech-tag {
    background: var(--gray-100);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}


/* ==============================
   Gallery
   ============================== */

.details-right h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 14px;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Responsive */
@media(max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}
