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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #d63031;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d63031;
    background: #ffe5e5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f0f0f0;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2d3436;
    font-weight: 700;
}

.card-content p {
    color: #636e72;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge.category {
    background: #00b894;
}

.badge.count {
    background: #ff7675;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem 0;
    text-align: center;
}

.info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.info-box p {
    font-size: 1.1rem;
    color: #2d3436;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #2d3436;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

footer p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

/* Artist Biography Section */
.artist-bio {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.bio-image {
    width: 100%;
}

.bio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.bio-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.artist-facts {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.artist-facts h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
    font-weight: 700;
}

.artist-facts ul {
    list-style: none;
    padding: 0;
}

.artist-facts ul li {
    font-size: 1.05rem;
    line-height: 2;
    color: #636e72;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.artist-facts ul li:last-child {
    border-bottom: none;
}

.artist-facts ul li strong {
    color: #2d3436;
    font-weight: 600;
}

/* Responsive for Artist Bio */
@media (max-width: 768px) {
    .artist-bio {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .bio-image img {
        height: 350px;
    }

    .bio-content h2 {
        font-size: 1.6rem;
    }

    .bio-content p {
        font-size: 1rem;
    }

    .artist-facts {
        padding: 1.5rem;
    }
}

/* Category Overview Section */
.category-overview {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.overview-image {
    width: 100%;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.category-characteristics {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.category-characteristics h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
    font-weight: 700;
}

.category-characteristics ul {
    list-style: none;
    padding: 0;
}

.category-characteristics ul li {
    font-size: 1.05rem;
    line-height: 2;
    color: #636e72;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.category-characteristics ul li:last-child {
    border-bottom: none;
}

.category-characteristics ul li strong {
    color: #2d3436;
    font-weight: 600;
}

/* Responsive for Category Overview */
@media (max-width: 768px) {
    .category-overview {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .overview-image img {
        height: 300px;
    }

    .overview-content h2 {
        font-size: 1.6rem;
    }

    .overview-content p {
        font-size: 1rem;
    }

    .category-characteristics {
        padding: 1.5rem;
    }
}