:root {
    --dark : #374151;
    --darker : #1F2937;
    --darkest : #111827;
    --gray : #687280;
    --pink : #EC4899;
    --light: #EEE;
    --purple: #8B5Cf6;

}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: 'Fira sans' ,  sans-serif ;
}

/* biar awalnya disembunyikan LISTnya */
#list-title {
    display: none;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--dark);
    color: #fff;
}

header {

    padding: 2rem 1rem;
    max-width: 800px ;
    width: 100%;
    margin: 0 auto;
}


header h1 {

    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 1rem;
}

#new-task-form {
    display: flex;


}

input, button {
    appearance: none;
    border: none;
    outline: none;
    background: none;
}

#new-task-input {
    flex: 1 1 0%;
    background-color: var(--darker);
    padding: 1rem;
    border-radius: 1rem;
    margin-right: 1rem;
    color: var(--light);
    font-size: 1.25rem;
}

#new-task-input::placeholder {
    color: var(--gray);
}

#new-task-submit {
    color: var(--pink);
    font-size: 1.25rem;
    font-weight: 700;
    background-image: linear-gradient(to right, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

#new-task-submit:active {
    opacity: 0.6;
}

main {
    flex: 1 1 0%;
    padding: 2rem 1rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.task-list {
    padding: 1rem;
}

.task-list h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 1rem;
}


#tasks .task {
    display: flex;
    justify-content: space-between;
    background-color: var(--darkest);
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

#tasks .task .content .text {
    color: var(--light);
    font-size: 1.123rem;
    width: 100%;
    display: block;
    transition: 0.4s;
}

#tasks .task .content .text:not(:read-only) {
        color: var(--pink);

}

#tasks  .task .content {
    flex: 1 1 0%;
}

#tasks .task .action {
    display: flex;
    margin: 0 -0.5rem;
}

.task .actions button {
    cursor: pointer;
    margin: 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase ;
    transition: 0.4s;
}

.task .actions button:hover {
    opacity: 0.8;
}

.task .actions button:active {
    opacity: 0.6;
}

.task .actions .edit {
    background-image: linear-gradient(to right, var(--pink) , var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.task .actions .delete {
    color: crimson;
}


/* UNTUK MEMBUAT RESPONSIVE */
@media screen and (max-width: 768px) {
    header, main {
      padding: 1rem;
    }
  
    #new-task-form {
      flex-direction: column;
    }
  
    #new-task-input {
      margin-right: 0;
      margin-bottom: 1rem;
      font-size: 1rem;
    }
  
    #new-task-submit {
      font-size: 1rem;
      text-align: center;
    }
  
    #tasks .task {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    #tasks .task .action {
      justify-content: flex-end;
    }
  
    .task .actions button {
      font-size: 1rem;
    }
  }
  