/* General Reset */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

header {
    background: #444;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

header nav a {
    color: #fff;
    margin: 0 1em;
    text-decoration: none;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4em 2em;
}

#about, #gallery, #calligraphy, footer {
    padding: 2em;
    text-align: center;
}

.bio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.bio img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1em;
    padding: 2em;
}

.gallery img {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.calligraphy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1em;
    padding: 2em;
}

.calligraphy img {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.calligraphy img:hover {
    transform: scale(1.05);
}


footer {
    background: #f4f4f4;
    padding: 1em 0;
    margin-top: 2em;
}