/* 1. Base Reset & Layout Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0f172a; /* Deep dark blue background */
    color: #f8fafc; /* Crisp white text */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
    line-height: 1.6;
}

/* 2. Project Title Styling */
#projectlbl {
    font-size: 2rem;
    font-weight: 700;
    max-width: 600px;
    margin-bottom: 16px;
    color: #38bdf8; /* Vibrant light blue anchor color */
}

/* 3. Description Styling */
#projectdesc {
    font-size: 1.1rem;
    color: #94a3b8; /* Soft muted gray for better hierarchy */
    max-width: 500px;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    color: #94a3b8; /* Soft muted gray for better hierarchy */
    max-width: 500px;
    margin-bottom: 10px;
}

#estimatedTime {
    margin-bottom: 30px;
}

#footerIMG {
    display: block;
    height: 20px;
    width: 20px;
}

#footerIMG2 {
    display: block;
    height: 32px;
    width: 32px;
    margin-top: 5px;
}

.footer {
    position: sticky;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(36, 36, 36);
    padding: 15px 20px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #38bdf8;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 30px;
    text-align: center;
    background: rgb(36, 36, 36);
    color: #38bdf8;
    font-weight: bold;
    font-size: 30px;
    width: 100%;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* 4. Interactive Button Styling */
#generatebtn {
    background-color: #2563eb; /* Modern royal blue */
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Interactive States */
#generatebtn:hover {
    background-color: #1d4ed8; /* Darker blue on hover */
}

#generatebtn:active {
    transform: scale(0.98); /* Subtle click depression effect */
}

#resetbtn {
    background-color: #2563eb; /* Modern royal blue */
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Interactive States */
#resetbtn:hover {
    background-color: #1d4ed8; /* Darker blue on hover */
}

#resetbtn:active {
    transform: scale(0.98); /* Subtle click depression effect */
}

#footerIMG:hover, #footerIMG2:hover {
    filter: invert(1) opacity(1);
}

#weblink {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}