/* Gaetano Pesce Page Styles */

.designer-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.designer-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.designer-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.designer-years {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.designer-title {
    font-size: 1.4rem;
    color: #444;
    font-style: italic;
}

.designer-quote {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #333;
}

blockquote {
    font-size: 1.6rem;
    font-style: italic;
    margin: 0;
    padding: 0;
    color: #333;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
}

.designer-biography {
    margin-bottom: 4rem;
}

.biography-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.philosophy-item {
    padding: 2rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.philosophy-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legacy-section {
    background: #f9f9f9;
    padding: 4rem 2rem;
    margin: 4rem -2rem;
}

.legacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.legacy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.legacy-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.legacy-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
}

.recognition-timeline {
    max-width: 800px;
    margin: 3rem auto;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.year {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.entry-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.entry-content p {
    margin: 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .designer-header h1 {
        font-size: 2.5rem;
    }

    .designer-quote {
        padding: 1.5rem;
    }

    blockquote {
        font-size: 1.3rem;
    }

    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .year {
        margin-bottom: 0.5rem;
    }
}

.designer-image {
    width: 100%;
    max-width: 300px;
    margin: 2rem auto;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}