@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; /* Pale Yellow */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.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;
}

/* Heading in Header */
h1 {
    margin: 1rem 0;
    text-align: center;
    width: 100%;
    font-size: 3.5rem;
    color: #efbedd;
}

/* Pushes content down to make room for fixed header */
header + * {
    margin-top: 10rem;
}

/* Logo inside header */
.header-logo {
    width: 16rem;
    margin-top: 16rem; /* Pushes the logo down */
    margin-left: auto; /* Centers the logo horizontally */
    margin-right: auto; /* Centers the logo horizontally */
    display: block; /* Makes sure the image is treated as a block element */
    border-radius: 20px;
}

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

.hamburger:hover {
    color: #c9d5bb;
}

/* Navigation Dropdown 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;
}

/* Show menu when toggled */
.nav.show {
    display: block;
}

/* Footer */
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;
}

/* Main content spacing */
main,
.container,
#welcome-content {
    margin-top: 1rem;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 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;
}

/* 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;
}

/* Buttons */
button {
    padding: 1rem 1.8rem;
    font-size: 1.8rem;
    background: #c9def0;
    border: none;
    border-radius: 10px;
    color: #286567;
    cursor: pointer;
}

button:hover {
    background: #b5cee6;
}

/* Welcome page buttons */
#welcome-content button,
#welcome-content #setupButton,
#welcome-content #dashboardButton,
#welcome-content #resetAppButton {
    background-color: #c9def0;
    color: #286567;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#welcome-content button:hover,
#welcome-content #setupButton:hover,
#welcome-content #dashboardButton:hover,
#welcome-content #resetAppButton:hover {
    background-color: #b5cee6;
}

/* Profile card */
.profile-card {
    margin-top: 2rem;
}

/* Intro Text */
.intro-text {
    text-align: center;
    font-size: 1.5rem;
    color: #286567;
    max-width: 600px;
    margin: 1.5rem auto;
    line-height: 1.6;
    padding: 20px 1rem;
    font-weight: 500;
    background-color: #f3dac6;
    border-radius: 16px;
}

/* Welcome Button Section */
.welcome-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.welcome-buttons p {
    font-size: 1.5rem;
    color: #286567;
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
    padding: 0 1rem;
}
