/* global-style.css - General website styling */

/* --- Base Reset and Typography --- */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f7f9; /* Light grey background for the whole site */
    line-height: 1.6;
}

/* Global Container for main content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-top: 0;
    margin-bottom: 15px;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* --- Form Elements and Buttons (General) --- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* General button styling, applied to non-header buttons */
button:not(.header-style-header-icons button) {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
}

button:not(.header-style-header-icons button):hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

/* --- Utility Classes --- */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* --- Footer (Placeholder) --- */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}