/* Basic Reset & Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header, main, footer {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

header {
    background-color: #e3e3e3;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

/* Gallery Styles - Placeholder */
.gallery {
    min-height: 100px;
    background-color: #fff;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    padding: 20px;
}

/* About Me Section */
.about-me {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.about-me-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-me-content img {
    max-width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover; /* Prevents image from stretching */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .about-me-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Social Media Section */
.social-media {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.social-links a:hover {
    background-color: #333;
    color: #fff;
}

/* Contact Section */
.contact {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.contact button:hover {
    background-color: #555;
}