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

/* Header Styles */
header {
    background-color: #000;
    /* "Wind-like" effect using a subtle diagonal gradient */
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 40px 40px;
    color: #fff;
    padding: 0.5rem 40px; /* Thinner header, with side padding */
    display: flex;
    justify-content: flex-end; /* Align to the right */
    align-items: center;
    border-bottom: 1px solid #333; /* A subtle separator */
}

header h1 {
    margin: 0;
    font-size: 1.2em; /* Adjusted for a longer company name */
    font-weight: 300; /* Lighter font weight for a sleek look */
}

/* Page Container for Flexbox Layout */
.page-container {
    display: flex;
    min-height: calc(100vh - 120px); /* Adjust based on new header/footer height */
}

/* Sidebar Styles */
.sidebar {
    width: 180px; /* Reduced from 250px */
    background-color: #f1f1f1;
    padding: 20px;
    border-right: 1px solid #ddd;
}

.sidebar h2 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-top: 0;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav ul li {
    margin-bottom: 10px;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sidebar nav ul li a:hover {
    background-color: #ddd;
}

/* Main Content Styles */
.main-content {
    flex-grow: 1;
    padding: 20px 40px;
}

/* Specific style for homepage content centering */
.home-content {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;    /* Vertical centering */
}

/* Styles for the Welcome Section on Homepage */
.welcome-container {
    text-align: center; /* Center the h1 under the image */
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Prevents the image from being distorted */
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome-container h1 {
    margin-top: 15px;
    font-size: 1.8em;
    font-weight: 300; /* Lighter font for the welcome message */
    color: #333;
}

/* Site Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
}
