/* General Styles */

/* Style for individual sections */
section {
    max-width: 600px; /* Limits the width of each section */
    margin: 2rem auto; /* Centers the section horizontally and adds vertical spacing */
    padding: 1.5rem; /* Adds inner spacing */
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
    color: white; /* Ensures text is visible on dark backgrounds */
    border-radius: 10px; /* Rounds the corners of the section */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adds a subtle shadow for depth */
}

#about {
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
}

#principles {
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
}

#practices {
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
}

#ethics {
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
}

#community {
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
}

/* Style for headers in sections */
section h1, section h2 {
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
	color: white;
}

/* Style for text and lists inside sections */
section p, section ul {
    font-size: 1rem;
    line-height: 1.6;
    font-family: Arial, sans-serif;
	color: white;
}

body {
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover; /* Ensures the image covers the entire screen */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
header {
    background: #333;
    padding: 1em 0;
    text-align: center;
}

header .logo img {
    max-width: 100px;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
	color: white;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content */
main {
    padding: 2em;
}

main h1, main h2 {
    text-align: center;
    margin-bottom: 1em;
}

main section {
    margin-bottom: 2em;
    padding: 1em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 1em;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Form Styling */
form.form-styled {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

form.form-styled label {
    font-size: 1rem;
    font-weight: bold;
}

form.form-styled input, form.form-styled button {
    font-size: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

form.form-styled .captcha {
    font-size: 0.9rem;
    color: #888;
}

form.form-styled button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

form.form-styled button:hover {
    background-color: #0056b3;
}