/* Project Detail Styles */
.back-link {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.back-link:hover {
    color: #5856d6;
}

.project-detail {
    padding-top: 60px;
}

/* Project Hero */
.project-hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 100%);
}

.project-icon-large {
    margin-bottom: 30px;
}

.icon-circle-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 3s ease-in-out infinite;
}

.icon-circle-large.uk {
    background: linear-gradient(135deg, #007aff, #5856d6);
}

.icon-circle-large.ai {
    background: linear-gradient(135deg, #ff3b30, #ff9500);
}

.icon-circle-large.web {
    background: linear-gradient(135deg, #34c759, #00d4aa);
}

.icon-circle-large.scan {
    background: linear-gradient(135deg, #5856d6, #af52de);
}

.icon-circle-large.pixel {
    background: linear-gradient(135deg, #ff9500, #ffcc02);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.project-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.project-tagline {
    font-size: 24px;
    color: #86868b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-badge img, .app-badge svg {
    height: 60px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
}

.app-badge:hover img, .app-badge:hover svg {
    transform: scale(1.05);
}

.app-badge {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-badge:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.web-link {
    background: linear-gradient(135deg, #007aff, #5856d6);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.web-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Project Overview */
.project-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.overview-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 40px 0 20px 0;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #424245;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    color: #424245;
    margin-bottom: 12px;
    padding-left: 8px;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #f5f5f7 0%, #fafafa 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #007aff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #86868b;
    font-weight: 500;
}

/* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
    background: #fafafa;
}

.screenshots-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 60px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.screenshot-card {
    text-align: center;
}

.screenshot-placeholder {
    margin-bottom: 20px;
}

.phone-mockup {
    width: 180px;
    height: 360px;
    background: #1d1d1f;
    border-radius: 25px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #86868b;
    border-radius: 3px;
}

.screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1d1d1f;
}

.screenshot-card p {
    font-size: 16px;
    color: #86868b;
    font-weight: 500;
}

/* Tech Stack */
.tech-stack {
    padding: 80px 0;
    background: white;
}

.tech-stack h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-item {
    background: linear-gradient(135deg, #f5f5f7 0%, #fafafa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tech-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.tech-item p {
    font-size: 16px;
    color: #86868b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-hero {
        padding: 60px 16px;
    }
    
    .project-hero h1 {
        font-size: 36px;
    }
    
    .project-tagline {
        font-size: 20px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
}