/* style.css */

/* 1. Set a professional font and color base */
body {
    color: #333333; /* Dark Grey text is easier to read than black */
    background-color: #f4f4f9; /* Very light grey background */
    margin: 0;
    /* Standard professional font stack */
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, .H1 {
    text-align: center;
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #D1962E; /* Your accent gold color */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.Wrapper h3, .Wrapper h4 {
    text-align: left;
    margin-left: 0;
}

/* 3. Navigation Bar Styling */
.navmenu {
    width: 100%;
    background-color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky; 
    top: 0;
    z-index: 1000;
}

/* Make the links look cleaner */
.w3-bar-item {
    font-family: "Segoe UI", sans-serif;
    font-weight: bold;
    color: white !important; 
}
/*makes the about dropdown white */

.w3-bar-item:hover {
    background-color: #D1962E !important; /* Gold hover effect */
    color: white !important;
}

/* 4. Layout & Spacing Wrapper */
/* Center content and stop it from stretching too wide on big screens */
.Wrapper, .w3-row {
    max-width: 1100px;
    margin: 0 auto; /* Centers the div */
    padding: 20px;
}

.Wrapper p {
    text-align: justify;
}

/* 5. Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Rounds corners slightly */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#linkedin img {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    box-shadow: none;
}

/* 6. Table Professionalism */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

/* Remove the bright green borders */
th, td {
    border: 1px solid #ddd; /* Subtle grey border */
    padding: 12px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #e9e9e9; /* Zebra striping for readability */
}

/* 7. Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    width: 100%;
}

/* 8. Mobile Fixes */
@media screen and (max-width: 600px) {
    .w3-bar-item {
        display: block;
        text-align: left;
    }
    .Wrapper {
        margin-left: 0;
        width: 100%;
    }
}

/* Accordion styling */
.accordian {
    background-color: #D1962E;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    margin-bottom: 5px;
    border-radius: 4px;
}
.accordian:hover {
    background-color: #b58124;
}

/* Fix for Dropdown Menu Links */
.w3-dropdown-content .w3-bar-item {
    color: #333 !important; /* Dark Grey text for the white dropdown box */
}