/* General Styles */  
body {  
    font-family: Arial, sans-serif;  
    margin: 0;  
    padding: 0;  
    background-color: #f9f9f9;  
    color: #333;  
    line-height: 1.6;  
}  
  
/* Hero Section */  
header.hero {  
    background-color: #333;  
    color: white;  
    text-align: center;  
    padding: 20px;  
}  
  
header.hero h1 {  
    font-size: 2.5rem;  
    margin: 0;  
}  
  
header.hero p {  
    font-size: 1.2rem;  
    margin: 10px 0 0;  
}  
  
/* About Section */  
section.about {  
    padding: 20px;  
    text-align: center;  
}  
  
section.about h2 {  
    font-size: 2rem;  
    margin-bottom: 20px;  
}  
  
section.about .profile-photo img {  
    max-width: 200px;  
    border-radius: 50%;  
    margin-bottom: 20px;  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a slight shadow for aesthetics */  
}  
  
section.about p {  
    text-align: justify;  
    font-size: 1.2rem;  
    margin: 0 auto;  
    max-width: 800px;  
}  
  
/* Gallery Section */  
section.gallery {  
    padding: 20px;  
}  
  
section.gallery h2 {  
    text-align: center;  
    font-size: 2rem;  
    margin-bottom: 20px;  
}  
  
.artwork {  
    display: flex;  
    flex-wrap: wrap;  
    gap: 20px;  
    justify-content: center;  
}  
  
.art-item {  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  
    padding: 20px;  
    border-radius: 5px;  
    text-align: center;  
    max-width: 300px;  
    width: 100%;  
    background-color: white;  
}  
  
.art-item img {  
    width: 100%;  
    border-radius: 5px;  
    margin-bottom: 10px;  
}  
  
.series-name {  
    font-weight: bold;  
    font-size: 1.2rem;  
    margin-top: 10px;  
}  
  
/* Contact Section */  
section.contact {  
    padding: 20px;  
    text-align: center;  
}  
  
section.contact h2 {  
    font-size: 2rem;  
    margin-bottom: 10px;  
}  
  
.email-link {  
    color: #007BFF;  
    text-decoration: none;  
    font-weight: bold;  
}  
  
.email-link:hover {  
    text-decoration: underline;  
}  
  
/* Social Media Section */  
section.social-media {  
    padding: 20px;  
    text-align: center;  
}  
  
section.social-media h2 {  
    font-size: 2rem;  
    margin-bottom: 10px;  
}  
  
.social-links a {  
    color: #007BFF;  
    text-decoration: none;  
    font-size: 1.2rem;  
    display: inline-flex;  
    align-items: center;  
    gap: 5px;  
}  
  
.social-links a:hover {  
    text-decoration: underline;  
}  
  
.social-links a i {  
    margin-right: 5px;  
}  
  
/* Footer */  
footer {  
    text-align: center;  
    padding: 10px;  
    background-color: #333;  
    color: white;  
    font-size: 0.9rem;  
}  
  
/* Responsive Design */  
  
/* Responsive Styling for Tablets and Small Desktops */  
@media (max-width: 1024px) {  
    header.hero h1 {  
        font-size: 2.2rem;  
    }  
  
     header.hero p {  
        font-size: 1rem;  
    }  
  
    section.about h2 {  
        font-size: 1.8rem;  
    }  
  
    section.about p {  
        font-size: 1.1rem;  
    }  
  
    .art-item {  
        max-width: 100%;  
    }  
  
    .series-name {  
        font-size: 1.1rem;  
    }  
  
    .social-links a {  
        font-size: 1.1rem;  
    }  
  
    section.gallery h2 {  
        font-size: 1.8rem;  
    }  
  
    footer {  
        font-size: 0.85rem;  
    }  
}  
  
/* Responsive Styling for Smartphones */  
@media (max-width: 768px) {  
    header.hero h1 {  
        font-size: 1.8rem;  
    }  
  
    header.hero p {  
        font-size: 1rem;  
    }  
  
    section.about h2 {  
        font-size: 1.6rem;  
    }  
  
    section.about p {  
        font-size: 0.9rem;  
        line-height: 1.5; /* Adjust line spacing for smaller screens */  
    }  
  
    .art-item {  
        padding: 15px; /* Reduce padding for smaller screens */  
    }  
  
    .series-name {  
        font-size: 1rem;  
    }  
  
    .social-links a {  
        font-size: 1rem;  
    }  
  
    section.gallery h2 {  
        font-size: 1.6rem;  
    }  
  
    footer {  
        font-size: 0.8rem;  
    }  
}  
  
/* Responsive Styling for Very Small Devices (max-width: 480px) */  
@media (max-width: 480px) {  
    header.hero h1 {  
        font-size: 1.6rem;  
    }  
  
    header.hero p {  
        font-size: 0.8rem;  
    }  
  
    section.about h2 {  
        font-size: 1.4rem;  
    }  
  
    section.about p {  
        font-size: 0.9rem;  
        line-height: 1.4; /* Slightly tighter line spacing for smaller screens */  
    }  
  
    section.about .profile-photo img {  
        max-width: 150px; /* Reduce profile photo size for smaller screens */  
    }  
  
    .art-item {  
        padding: 10px; /* Further reduce padding for very small screens */  
    }  
  
    .series-name {  
        font-size: 0.9rem;  
    }  
  
    .social-links a {  
        font-size: 0.9rem;  
    }  
  
    section.gallery h2 {  
        font-size: 1.4rem;  
    }  
  
    footer {  
        font-size: 0.75rem;  
    }  
}  