/* Updated styles to include the logo text */
.navbar
{
    background-color: rgba(61, 51, 61, 0.801);
    color: white;
    padding: 10px 20px;
}

.nav-items
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    /* Align items vertically in the navbar */
}

.nav-items li
{
    margin-right: 15px;
}

.nav-items li:last-child
{
    margin-right: 0;
}

.nav-items li.logo
{
    margin-right: auto;
    /* Push the logo to the far left */
}

.nav-items li a
{
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    /* Specify sans-serif font */
    font-family: Arial, sans-serif;
}

.nav-items li a:hover
{
    color: #f0f0f0;
}

.logo-img
{
    max-width: 50px;
    /* Set the maximum width of the logo */
    margin-right: 10px;
    /* Add some spacing between logo and text */
}

.logo-text
{
    font-weight: bold;
    font-size: 38px;
    /* Adjust font size as needed */
    font-family: Arial, sans-serif;
    /* Specify sans-serif font */
    font-stretch: condensed;
    font-weight: lighter;
}

/* Updated styles for the hero section */
.hero-section
{
    text-align: center;
    padding: 100px 0;
    background-image: url('pics/background-image.jpg');
    /* Replace 'background-image.jpg' with your image file path */
    background-size: cover;
    background-position: center;
    color: white;
    /* Specify sans-serif font */
    font-family: Arial, sans-serif;
}

.main-title
{
    font-size: 46px;
    margin-bottom: 10px;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.5), 3px 3px 2px rgba(0, 0, 0, 10);
}

.sub-title
{
    font-size: 24px;
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.5), 2px 2px 2px rgba(0, 0, 0, 10);
}

/* Content styles */
.content-sections
{
    width: 80%;
    margin: 0 auto;
    text-align: left;
    font-family: Arial, sans-serif;
}

hr
{
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

section
{
    margin-bottom: 40px;
}

section h2
{
    font-size: 24px;
    font-weight: lighter;
    margin-bottom: 10px;
}

section p
{
    font-size: 16px;
    color: #333;
}

/* Footer styles */
.site-footer
{
    background-color: #333;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-content
{
    display: flex;
    justify-content: space-between;
}

.address,
.contact-info
{
    flex: 0 0 45%;
    /* Adjust width as needed */
}

.address h3,
.contact-info h3
{
    margin-bottom: 10px;
}

.copyright
{
    text-align: center;
    margin-top: 20px;
}

/* Styles for the table with padding between columns */
.skills-table
{
    text-align: left;
    margin-top: 20px;
    font-family: Arial, sans-serif;
    font-weight: lighter;
    font-size: 12px;
    border-collapse: collapse;
    width: 100%;
}

.skills-table th,
.skills-table td
{
    padding: 8px;
    /* Adjust padding as needed */
    border: 1px solid #ddd;
    /* Optional: border for visualization */
}

/* Styles for the table and images */
.pictures-table
{
    border-collapse: collapse;
    width: 100%;
}

.pictures-table td
{
    border: 0px solid #ddd;
    padding: 5px;
}

.pictures-table img
{
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Styles for the table of certificates pictures */
.certificates-table
{
    border-collapse: collapse;
    width: 100%;
}

.certificates-table td
{
    border: 0px solid #ddd;
    padding: 5px;
}

.certificates-table img
{
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;
}
