/* Set a full-page background image */
body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('project\ imgs/hero-bg-3000.jpeg'); /* Change to your image */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
/* Bold Welcome Text */
#headerText {
    font-size: 28px;  /* Adjust size as needed */
    font-weight: bold; /* Makes the text bold */
    text-align: center; /* Centers the text */
    text-transform: uppercase; /* Optional: Converts text to uppercase */
    color: orange; /* Ensures visibility on dark backgrounds */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds slight shadow for emphasis */
}

/* Centering the To-Do list */
.container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
/* To-Do List Box */
.todo-body, .todo-list {
    width: 100%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.8); /* Dark background with transparency */
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
/* Input Fields */
.todo-input, .todo-date, #taskType, #taskFilter {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}
/* Buttons */
button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* Task List */
.todo-list ul {
    list-style: none;
    padding: 0;
}

.todo-list li {
    background: #333;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}
/* Completed Task Styling */
.completed {
    text-decoration: line-through; /* Strikethrough effect */
    color: gray; /* Dimmed color for completed tasks */
}

/* Footer Styling */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: auto;
}

/* Social Links */
.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
}
