/* ===== Reset & Base Styles ===== */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

/* ===== Header ===== */
.header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    flex: 1;
    min-width: 300px;
}

.logo img {
    height: 100px;
    width: auto;
    margin-right: 20px;
}

.header-text h1 {
    margin: 0;
    font-size: 2em;
}

.tagline {
    margin: 5px 0;
    color: #666;
}

.nav {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-left: auto;
    gap: 10px;
}

.nav-button {
    text-decoration: none;
    color: #333;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-weight: bold;
    display: flex;
    align-items: center;
}


.linkedin-button {
    background: #0077b5;
    color: #fff !important;
    border-color: #0077b5;
}

.nav-separator {
    margin: 0 10px;
    color: #666;
    user-select: none;
}

/* ===== Responsive Header ===== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-content {
        margin-left: 0;
        width: 100%;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav {
        margin-left: 0;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-button {
        margin-bottom: 8px;
        padding: 12px 18px;
        font-size: 16px;
    }

    .linkedin-button {
        padding: 12px;    
    }
}


/* ===== Main ==== */

/* ===== Main Sections ===== */
.main-sections {
    display: flex;
    padding: 20px;
    gap: 20px;
}

@media (max-width: 768px) {
    .main-sections {
        flex-direction: column;
    }
}


/* ===== Footer ===== */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ddd;
    background: #f9f9f9;
}

.footer a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

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

.footer-links a[aria-label="LinkedIn"] {
    color: #0077b5;
    font-size: 1.5em;
}


/* ===== Icons ===== */
.fas, .fab {
    margin-right: 8px;
    color: #333;
}

.linkedin-button i {
    color: #fff;
}
