﻿/* Base Reset and Header Container Styling */
body {
    margin: 0;
    font-family: sans-serif;
}

.main-header {
    /* Uses Flexbox to align logo, navigation, and buttons horizontally */
    display: flex;
    /* Centers items vertically within the header */
    align-items: center;
    /* Adds space on the left and right */
    padding: 10px 40px;
    /* A light background color, or you can match the dark/light of the example */
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.logo-area {
    /* Your logo needs to be resized to fit the header */
    height: 40px;
    margin-right: 30px;
}

.header-logo {
    height: 100%;
}

/* Navigation Links */
.navigation-menu {
    /* Takes up all available space in the middle to push buttons to the right */
    flex-grow: 1;
}

    .navigation-menu a {
        text-decoration: none;
        color: #333;
        padding: 0 15px;
        font-size: 16px;
        /* This aligns the links with the buttons vertically */
        line-height: 40px;
        display: inline-block;
    }

        .navigation-menu a:hover {
            color: #26616D; /* Hover color */
        }

/* Action Buttons Container */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

        .sign-in-wrap, .log-in-wrap, .get-started-wrap {
    display: flex;
    flex-direction: column; /* Stacks the text and button vertically */
    align-items: center;    /* Centers both elements horizontally */
    justify-content: center; /* Centers them vertically if the container has height */
    gap: 4px;              /* EXACT control over the gap between text and button */
    text-align: center;
}

.sign-in-wrap p, .log-in-wrap p, .get-started-wrap p {
    margin: 0;             /* Removes default browser margins that mess up spacing */
    font-size: 10px;
    color: #000;
}

/* Button Styling */
.sign-in-btn, .log-in-out-btn, .get-started-btn {
    border: 2px solid #26616D; /* Purple border color */
    border-radius: 4px;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

/* Style for the "Sign in" button (White background, purple text) */
.sign-in-btn, .log-in-out-btn {
    background-color: wheat;
    color: #26616D;
}

/* Style for the "GET STARTED" button (Solid purple background, white text) */
.get-started-btn{
    background-color: #26616D;
    color: white;
    border: none; /* The example button doesn't have an extra border */
}
    .sign-in-text-wrap{
        border: 2px solid #26616D; /* Purple border color */
        border-radius: 4px;
        padding: 10px 20px;
        margin-left: 10px;
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
    }
    .member_first_name{
        border: 2px solid #26616D; /* Purple border color */
        border-radius: 4px;
        padding: 10px 20px;
        margin-left: 10px;
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
}