/* styles.css - external stylesheet for danielsbonnin.com */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #3498db;
}

.thumbnails-section {
    margin-top: 40px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.thumbnails-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.thumbnail-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.thumbnail-content {
    padding: 20px;
}

.thumbnail-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.thumbnail-description {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.category-music .thumbnail-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-technology .thumbnail-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-creative .thumbnail-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .contact-info {
        gap: 15px;
    }

    .thumbnail {
        width: 100%;
        max-width: 400px;
    }

    .thumbnails-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
