/* General Body Styles */
body {
    font-family: Arial, sans-serif; /* A clean, readable font */
    margin: 0;
    padding: 0;
    background-color: aqua;
    color: #333; /* Dark grey text */
    line-height: 1.6;
}

/* Top Border and Heading */
.top_boarder {
    background-color: blueviolet; /* Dark background for the header */
    color: #fff; /* White text */
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}

.top_boarder h1 {
    margin: 0;
    font-size: 2.5em; /* Larger heading */
}

/* Social Buttons Section */
.socialButtons {
    text-align: center;
    padding: 20px 0;
    background-color: #eee; /* Slightly different background for this section */
    border-bottom: 1px solid #ccc; /* Separator line */
}

.socialButtons button {
    background: none; /* No background for the button */
    border: none; /* No border for the button */
    padding: 0;
    cursor: pointer;
    margin: 0 10px; /* Space between buttons */
    transition: transform 0.2s; /* Smooth hover effect */
}

/*.socialButtons button:hover {
    transform: translateY(-5px); /* Lift button on hover
}*/

.socialButtons img {
    border-radius: 10px; /* Slightly rounded corners for images */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for images */
}

/* About Section */
.About {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    align-items: center; /* Vertically align items */
    justify-content: center; /* Center items horizontally */
    padding: 40px 20px;
    max-width: 1000px; /* Max width for the content */
    margin: 20px auto; /* Center the section on the page */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.About_head {
    width: 100%; /* Heading takes full width */
    text-align: center;
    margin-bottom: 20px;
}

.About_head h1 {
    font-size: 2em;
    color: #555;
}

.About_picture {
    flex: 1; /* Allows the picture to grow and shrink */
    min-width: 250px; /* Minimum width for the picture container */
    text-align: center;
    margin: 0 20px 20px 0; /* Space to the right of the image */
}

.About_picture img {
    max-width: 100%; /* Ensure image is responsive */
    height: auto;
    border-radius: 50%; /* Make the image circular */
    border: 5px solid black; /* Light border around the image */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.About_body {
    flex: 2; /* Allows the text to take more space */
    min-width: 300px; /* Minimum width for the text container */
}

.About_body p {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify; /* Justify text for a clean look */
}

/* Navigation Links */
#site_nav1 {
    text-align: center;
    padding: 20px;
    background-color: #333;
    margin-top: 20px;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#site_nav1 a {
    color: #fff;
    text-decoration: none; /* Remove underline from links */
    font-size: 1.5em;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

#site_nav1 a:hover {
    background-color: #fff;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .About {
        flex-direction: column; /* Stack elements vertically on small screens */
    }

    .About_picture {
        margin: 0 0 20px 0; /* Adjust margin for stacking */
    }

    .top_boarder h1 {
        font-size: 1.8em;
    }

    .socialButtons img {
        height: 80px; /* Smaller images on small screens */
        width: auto;
    }
}

@media (max-width: 480px) {
    .top_boarder h1 {
        font-size: 1.5em;
    }

    .socialButtons img {
        height: 60px;
    }

    #site_nav1 a {
        font-size: 1.2em;
        padding: 8px 15px;
    }
}