/* This is my stylesheet */

/* Reset box model and spacing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* this is the body's style (color, font, margin, padding) */
body {
    background-color: #f1f1f1;
    font-family: Verdana, sans-serif;
    color: #333;
    text-align: center;
}

/* this is the headings style */
h1, h2, h3 {
    color: #69727a;
    margin-bottom: 10px;
}

/* this is the mission statement style */
.mission {
    background-color: #e0e7f1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

/* this is the container style */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* this is the header style */
header {
    background-color: #f2f2f2;
    padding: 20px 0;
}

/* this is the header title (h1) style */
header h1 {
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* this is the Navigation Bar style */
.navbar {
    margin-top: 10px;
}

/* this is the Navigation Bar list style */
.nav-list {
    list-style-type: none;
    padding: 0;
    display: inline-block;
}

/* this is the Navigation Bar list items style */
.nav-list li {
    display: inline;
    margin: 0 10px;
}

/* this is the navigation links style */
.nav-list a {
    text-decoration: none;
    color: #005a9c;
    font-weight: bold;
    font-size: 16px;
}

/* this is the navigation links hover style */
.nav-list a:hover {
    text-decoration: underline;
    color: #003366;
}

/* this is the org-charts style */
.org-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    background-color: #f5f9ff;
}

/* this is the org-chart-main style */
.org-chart-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* this is the org-cards style */
.org-card {
    background-color: rgb(203, 208, 215);
    width: 260px;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* this is the org-cards image style */
.org-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 8px;
}

/* this is the footer style */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 20px;
}

/* this is the footer text spacing style */
.footer-text {
    margin: 10px 0;
    display: block;
}

/* this is the footer links style */
footer a {
    display: inline-block;
    margin: 0 8px;
}

/* this is the footer images alignment style */
footer img {
    vertical-align: middle;
}

/* this is the footer wrapper to center all contents */
.footer-wrapper {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

/* this is the contact form container style */
.contact-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #e0e7f1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* this is the contact form headings style */
.contact-form-container h2 {
    text-align: center;
    color: #34495e;
}

/* this is the contact form input fields style */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* this is the contact form submit button style */
.contact-form-container input[type="submit"] {
    background-color: #69727a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

/* this is the contact form submit button hover style */
.contact-form-container input[type="submit"]:hover {
    background-color: #a0bbe9;
}

/* this is the logout link style */
.logout-link {
    color: #fff !important;
    background-color: #c0392b;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.logout-link:hover {
    background-color: #922b21;
    text-decoration: none;
}
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.product-item {
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
}
.button-primary {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #45a049;
}

.button-secondary {
    background-color: #f44336; /* Red */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-secondary:hover {
    background-color: #d32f2f;
}
