/* Global reset for margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global font and body settings */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    text-align: center; /* Ensures global centering for text */
}

/* Shared wrapper style */
.wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    width: 80%;
    padding: 20px;
}

/* Header and nav styles (shared across all pages) */
header {
    background-color: #483D3F;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    background-color: #058ED9;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #FFD700;
}

/* Footer styles (shared across all pages) */
footer {
    background-color: #483D3F;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

footer nav a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

footer p {
    color: white;
}

/* Main content for all pages */
main {
    text-align: center;  /* Center-align text inside the main content */
    padding: 20px;
}

/* Home page specific adjustments (if needed) */
body.index-page main {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Ensures centering of elements */
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;  /* Center-align the H2 text */
}

p#greeting {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

/* Mobile responsiveness (shared across pages) */
@media (max-width: 768px) {
    .wrapper {
        width: 95%;
        padding: 15px;
    }

    nav a {
        font-size: 16px;
        padding: 8px 15px;
    }

    header h1 {
        font-size: 28px;
    }
}
