@font-face {
    font-family: 'Delius Swash Caps';
    src: url('fonts/DeliusSwashCaps-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
font-family: 'Delius Swash Caps';
    background: #fffaf0;
    margin: 0;
    padding: 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex-grow: 1;
}

h2 {
    color: #286567;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #286567;
}

/* Header */
.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background-color: #fff5f5;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8rem;
    z-index: 1000;
    border-radius: 20px;
}
/* Headings */
h1 {
    margin: 1rem 0;
    text-align: center;
    width: 100%;
    font-size: 3.5rem;
    color: #efbedd;
}
/* Spacer after header */
header + * {
    margin-top: 10rem;
}

/* Logo */
img.header-logo {
    width: 10rem;
    margin: 1rem;
    margin-top: 1rem;
    border-radius: 20px;
}

/* Hamburger Button */
.hamburger {
    font-size: 2.5rem;
    background-color: #c9def0;
    border: none;
    cursor: pointer;
    color: #a8c487;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #c9d5bb;
}

/* Navigation Menu */
.nav {
    display: none;
    background: #c9d5bb;
    padding: 1rem;
    position: absolute;
    top: 10rem;
    left: 20px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
}

.nav ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
}

.nav li {
    margin: 0.8rem 0;
}

.nav a {
    text-decoration: none;
    color: white;
    background-color: #c9def0;
    padding: 10px;
    display: block;
    font-weight: bold;
    border-radius: 5px;
}

.nav a:hover {
    background-color: #d9cdfb;
}

.nav.show {
    display: block;
}

/* Settings Form Container */
#settings-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#settings-form {
    background-color: #f3dac6;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 40rem;
    width: 90%;
    margin: 4rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Group Wrapper */
.form-group {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

/* Labels */
form label,
#settings-form label {
    text-align: center;
    font-weight: 600;
    color: #286567;
    margin: 0.5rem 0;
    display: block;
}

/* Inputs */
input[type="text"],
select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #c9def0;
    border-radius: 12px;
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Checkboxes */
input[type="checkbox"] {
    transform: scale(1.4);
    margin-top: 0.5rem;
}

/* Buttons */
button,
#resetAppButton,
#settings-form button[type="submit"] {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin: 1rem auto;
    transition: background 0.3s ease;
}

button:hover,
#resetAppButton:hover,
#settings-form button[type="submit"]:hover {
    opacity: 0.9;
}

#resetAppButton {
    background-color: #c9def0;
}

#settings-form button[type="submit"] {
    background-color: #c9def0;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d9cded; 
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: white;
    z-index: 1000;
}