/* Inspiration - Page-specific styles */

/* Page-specific styles */
        .intro {
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 40px;
            text-align: center;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
        }

        .projects-container {
            margin: 50px 0;
        }

        .project-card {
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 30px;
            align-items: start;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3498db, transparent);
        }

        .project-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: #34495e;
        }

        .project-card h3 {
            font-size: 24px;
            margin: 0 0 15px 0;
            color: #34495e;
        }

        .project-card h3 a {
            color: #34495e;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .project-card h3 a:hover {
            color: #3498db;
        }

        .project-image {
            width: 200px;
            grid-column: 1;
            grid-row: 1 / -1;
        }

        .project-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.03);
        }

        .project-image-placeholder {
            width: 100%;
            aspect-ratio: 2/3;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #95a5a6;
            font-size: 14px;
            text-align: center;
            padding: 20px;
            font-style: italic;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .project-content {
            grid-column: 2;
        }

        .project-url {
            font-size: 14px;
            color: #3498db;
            margin-bottom: 15px;
            display: block;
            font-family: monospace;
        }

        .project-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        .project-why {
            background: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #3498db;
            margin-top: 20px;
            border-radius: 4px;
        }

        .project-why h4 {
            font-size: 15px;
            color: #34495e;
            margin: 0 0 10px 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .project-why p {
            font-size: 15px;
            line-height: 1.7;
            color: #555;
            margin: 0;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .project-card {
                padding: 25px;
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-image {
                width: 150px;
                margin: 0 auto;
                grid-column: 1;
                grid-row: 1;
            }

            .project-content {
                grid-column: 1;
                grid-row: 2;
            }

            .project-card h3 {
                font-size: 20px;
            }

            .project-description {
                font-size: 15px;
            }
        }
