@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    background: #f5e8ff;
    font-family: "Poppins", sans-serif;
    transition: background 0.5s ease;
}

/* HEADER */
.bt-header {
    background: #E6C7C7;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bt-header .logo {
    font-size: 26px;
    font-weight: 700;
    color: #B95CAD;
}

.bt-header nav a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    color: #555;
}

.bt-header nav .active {
    color: #bb71ff;
    font-weight: 600;
}

/* CONTAINER */
.container {
    text-align: center;
    margin-top: 60px;
    color: #bb71ff;
}

.title {
    font-size: 38px;
    margin-bottom: 25px;
}

/* TIMER CIRCLE */
.timer-circle {
    width: 260px;
    height: 260px;
    margin: auto;
    border-radius: 50%;
    border: 10px solid #ff7ecf;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: #ff4fa3;
    transition: box-shadow 0.5s ease;
}

.timer-glow {
    animation: glowPulse 1.6s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px #ff9bd6; }
    50% { box-shadow: 0 0 40px #ffb7e6; }
    100% { box-shadow: 0 0 20px #ff9bd6; }
}

/* Inputs */
.inputs input {
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid #ff9bd6;
}
.inputs button {
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 8px;
    background: #ff7ecf;
    color: white;
    border: none;
}

/* Controls */
.controls button {
    margin: 10px;
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    background: #ff7ecf;
    color: white;
    font-size: 16px;
}

.settings-btn {
    background: #d891ff !important;
}

/* TASK LIST */
.task-container {
    
    margin: 30px auto 0 auto;
    
    width: 100%;max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(218, 14, 14, 0.14);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.task-input-row {
    display: flex;
    gap: 10px;
}

.task-input-row input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.task-input-row button {
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    background: rgb(223, 99, 186);
    color: #ffffff;
    font-size: medium;
}

/* Task Item */
.task-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 1.2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.479);
    backdrop-filter: blur(4px);
}

.task-item.completed {
    text-decoration: line-through;
    opacity: 0.6;
}

.task-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #9c55da;
}


/* SETTINGS PANEL */
.settings-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 350px;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.settings-panel.open {
    transform: translate(-50%, -50%) scale(1);
}

.color-options {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.color-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
}

.c1 { background: #f5e8ff; }
.c2 { background: #ffe6f2; }
.c3 { background: #e9f7ff; }

.close-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff7ecf;
    color: white;
    border-radius: 10px;
}

.quote-popup {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 330px;
    text-align: center;
    display: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}
/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    color: #777;
    margin-top: 50px;
}
