
/*CSS for The College Cafe Project*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fdfdfd;
    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*Header CSS*/
header {
    background-color: #eaeaea;
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid #cccccc;
    width: 100%;
}
header h1 {
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 1px;
}
header p {
    font-size: 14px;
    margin-top: 5px;
}

/*Nav CSS*/
nav {
    background-color: #000000;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}
nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
    color: #cccccc;
}

/*Main CSS*/
main {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.content-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*content CSS*/
section {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/*h2 CSS*/
h2 {
    color: darkblue;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 24px;
}

.blue-heading {
    color: darkblue;
    margin-bottom: 20px;
}

h3 {
    margin-bottom: 10px;
    margin-top: 15px;
}

p {
    margin-bottom: 15px;
    max-width: 700px;
}

/* Table CSS */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #cccccc;
    padding: 12px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Image CSS */
img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 20px auto;
}

/*image CSS*/
form {
    width: 100%;
    max-width: 500px;
    text-align: left;
}
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
form input, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/*button CSS*/
button {
    background-color: darkblue;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px auto;
    display: block;
}
button:hover {
    background-color: #333333;
}

/*footer CSS*/
footer {
    background-color: #eaeaea;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
    font-size: 14px;
    border-top: 1px solid #dcdcdc;
    width: 100%;
}